:root {
    --bg-dark: #0a0603;
    --bg-darker: #050301;
    --accent-orange: #ff4d00;
    --accent-red: #e63900;
    --fire-glow: #ff8c00;
    --text-light: #f5e8d3;
    --text-muted: #d4a88a;
    --gold: #ffb300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === Фоновый огонь / Лава === */
.hero-bg {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #2a0f00 0%, #5c1a00 50%, #2a0f00 100%);
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 80, 0, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 140, 0, 0.35) 0%, transparent 60%);
    animation: firePulse 15s ease infinite;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px),
        url('https://i.imgur.com/8vL9k3P.jpg'); /* можно заменить на свой lava texture */
    background-size: 200px, cover;
    opacity: 0.15;
    mix-blend-mode: screen;
    animation: lavaFlow 25s linear infinite;
}

@keyframes firePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes lavaFlow {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

/* Заголовок MoonFalls */
.moonfalls-title {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #fff, var(--fire-glow), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px var(--accent-orange),
                 0 0 80px var(--accent-red);
    letter-spacing: -2px;
}

/* Кнопки */
.btn-fire {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 77, 0, 0.4);
}

.btn-fire:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 77, 0, 0.6);
    background: linear-gradient(135deg, #ff6b00, #e63900);
}

/* Навигация */
.navbar {
    background: rgba(10, 6, 3, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 77, 0, 0.3);
}

/* Карточки товаров */
.card {
    background: #1a1108;
    border: 1px solid #3f2200;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-12px);
    border-color: var(--fire-glow);
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.25);
}

/* Цены */
.price {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: bold;
}

/* Дополнительные акценты */
.glow-orange {
    text-shadow: 0 0 20px var(--accent-orange);
}

.fire-border {
    position: relative;
}

.fire-border::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #ff4d00, #ffb300, #ff4d00);
    border-radius: inherit;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
}