        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

        body {
            font-family: 'Times New Roman', serif;
            background: #0a0a0a;
            color: #c5a47e;
            overflow-x: hidden;
            position: relative;
            font-size: 17px;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            z-index: -3;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                                        rgba(10, 10, 10, 0.85) 0%,
                                        rgba(26, 26, 26, 0.9) 50%,
                                        rgba(10, 10, 10, 0.95) 100%);
            z-index: -2;
        }

        /* Визуально скрытый заголовок для SEO (только для скринридеров) */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ==================== НАВИГАЦИЯ ==================== */
        .main-nav {
            position: sticky;
            top: 0;
            background: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid #8b7355;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .nav-logo {
            font-size: 1.25rem;
            font-weight: bold;
            color: #c5a47e;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(197, 164, 126, 0.5);
            flex-shrink: 0;
        }

        .nav-burger {
            display: none;
            background: transparent;
            border: 2px solid #8b7355;
            color: #c5a47e;
            font-size: 1.5rem;
            padding: 5px 12px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-burger:hover {
            border-color: #c5a47e;
            color: #f5e6d3;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 10px;
            align-items: center;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            color: #c5a47e;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            padding: 8px 14px;
            border-bottom: 2px solid transparent;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-menu > li > a .dropdown-arrow {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .nav-menu > li:hover > a {
            color: #f5e6d3;
            border-bottom-color: #c5a47e;
            text-shadow: 0 0 10px rgba(197, 164, 126, 0.7);
        }

        .nav-menu > li:hover > a .dropdown-arrow {
            transform: rotate(180deg);
        }

        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(10, 10, 10, 0.98);
            border: 2px solid #8b7355;
            border-radius: 5px;
            padding: 10px 0;
            min-width: 220px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(139, 115, 85, 0.2);
            z-index: 100;
            margin-top: 5px;
        }

        .nav-dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #8b7355;
        }

        .nav-dropdown::after {
            content: '';
            position: absolute;
            top: -6px;
            left: 21px;
            width: 0;
            height: 0;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-bottom: 7px solid rgba(10, 10, 10, 0.98);
        }

        .nav-menu > li:hover .nav-dropdown,
.nav-menu > li.dropdown-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #c5a47e;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.nav-dropdown a::before {
    content: '✦';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    color: #8b0000;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.nav-dropdown a:hover {
    background: rgba(197, 164, 126, 0.1);
    color: #f5e6d3;
    padding-left: 28px;
    border-left-color: #8b0000;
    text-shadow: 0 0 8px rgba(197, 164, 126, 0.6);
}

.nav-dropdown a:hover::before {
    transform: translateY(-50%) scale(1);
}

.nav-buy-btn {
    display: inline-block;
    padding: 10px 22px !important;
    background: linear-gradient(135deg, #8b0000 0%, #5a0000 100%) !important;
    color: #f5e6d3 !important;
    border: 2px solid #c5a47e !important;
    border-radius: 5px !important;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
    box-shadow: 0 3px 15px rgba(139, 0, 0, 0.5),
    0 0 15px rgba(139, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: buyBtnPulse 2.5s infinite;
    margin-left: 10px;
}

.nav-buy-btn::before {
    content: '🛒 ';
    margin-right: 3px;
}

.nav-buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
                                transparent,
                                rgba(245, 230, 211, 0.3),
                                transparent);
    transition: left 0.5s ease;
}

.nav-buy-btn:hover {
    background: linear-gradient(135deg, #c5a47e 0%, #8b7355 100%) !important;
    color: #0a0a0a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 164, 126, 0.6),
    0 0 25px rgba(139, 0, 0, 0.5) !important;
}

.nav-buy-btn:hover::after {
    left: 100%;
}

@keyframes buyBtnPulse {
    0%, 100% {
        box-shadow: 0 3px 15px rgba(139, 0, 0, 0.5),
        0 0 15px rgba(139, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 3px 20px rgba(139, 0, 0, 0.8),
        0 0 25px rgba(139, 0, 0, 0.5);
    }
}

/* ==================== КОНТЕЙНЕР ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ==================== HERO ==================== */
.hero {
    text-align: center;
    padding: 50px 20px 30px;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 4px;
    text-shadow: 0 0 15px rgba(197, 164, 126, 0.5),
    0 0 30px rgba(197, 164, 126, 0.3);
    margin-bottom: 15px;
    animation: pulse 3s infinite;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a8967a;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-style: italic;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-tagline {
    font-size: 1.434em;
    color: #e8d8c5;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* ==================== ВИДЕО ==================== */
.hero-video {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(197, 164, 126, 0.2);
    border: 3px solid #5d4037;
    background: #000;
}

.hero-video::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== СЕКЦИИ ==================== */
.section {
    margin: 80px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #c5a47e;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(197, 164, 126, 0.5);
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c5a47e, transparent);
    margin: 15px auto 0;
}

.section-intro {
    font-size: 1.434em;
    color: #d4c4ae;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* ==================== О ЧЁМ ИГРА ==================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #8b7355;
    border-radius: 10px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 164, 126, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: #c5a47e;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(197, 164, 126, 0.3);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    display: block;
}

.about-card-title {
    font-size: 1.35rem;
    color: #c5a47e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
}

.about-card:hover .about-card-title {
    color: #f5e6d3;
    text-shadow: 0 0 10px rgba(197, 164, 126, 0.6);
}

.about-card-text {
    font-size: 1.1rem;
    color: #d4c4ae;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* ==================== ПРЕИМУЩЕСТВА ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(26, 26, 26, 0.7);
    border-left: 4px solid #c5a47e;
    padding: 22px 28px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.feature-item:hover {
    background: rgba(42, 42, 42, 0.9);
    border-left-color: #d4b68c;
    transform: translateX(5px);
}

.feature-title {
    font-size: 1.3rem;
    color: #c5a47e;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.feature-text {
    font-size: 1.08rem;
    color: #d4c4ae;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* ==================== ОРУЖИЕ ==================== */
.weapons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.weapon-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #8b7355;
    border-radius: 8px;
    padding: 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.weapon-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(139, 115, 85, 0.3);
    border-color: #c5a47e;
}

.weapon-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
    border: 2px solid #5d4037;
}

.weapon-card:hover .weapon-image {
    transform: scale(1.08) rotate(1deg);
    border-color: #c5a47e;
}

.weapon-name {
    font-size: 1.35rem;
    color: #c5a47e;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.weapon-desc {
    font-size: 1.05rem;
    color: #c5a47e;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.weapon-card:hover .weapon-name {
    color: #f5e6d3;
}

.weapon-card:hover .weapon-desc {
    color: #f5e6d3;
}

.weapons-cta {
    text-align: center;
    margin-top: 45px;
}

.more-link {
    display: inline-block;
    padding: 14px 38px;
    background: transparent;
    border: 2px solid #c5a47e;
    color: #c5a47e;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.05rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.more-link:hover {
    background: #c5a47e;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(197, 164, 126, 0.5);
}

/* ==================== КУПИТЬ ИГРУ ==================== */
.buy-section {
    background: linear-gradient(135deg, rgba(101, 67, 33, 0.2) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 3px solid #c5a47e;
    border-radius: 15px;
    padding: 45px 35px;
    margin: 80px auto;
    max-width: 900px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(197, 164, 126, 0.2);
    text-align: center;
}

.buy-title {
    font-size: 2.3rem;
    color: #c5a47e;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(197, 164, 126, 0.5);
}

.buy-subtitle {
    font-size: 1.5rem;
    color: #d4c4ae;
    margin-bottom: 40px;
    font-style: italic;
    line-height: 1.7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.buy-card {
    background: rgba(10, 10, 10, 0.8);
    border: 3px solid #d4b68c;
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}

.buy-card:hover {
    border-color: #c5a47e;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(197, 164, 126, 0.4);
}

.buy-card::before {
    content: 'РЕКОМЕНДУЕМ';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c5a47e;
    color: #0a0a0a;
    padding: 6px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1px;
}

.buy-store {
    font-size: 1.8rem;
    color: #c5a47e;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.buy-price {
    font-size: 2.2rem;
    color: #ff4444;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.6);
}

.buy-note {
    font-size: 1.2rem;
    color: #c5a47e;
    margin-bottom: 25px;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.buy-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #c5a47e 0%, #8b7355 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.buy-button:hover {
    background: linear-gradient(135deg, #d4b68c 0%, #a0896a 100%);
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.6);
    transform: translateY(-3px);
}

.affiliate-note {
    font-size: 1.1rem;
    color: #a8967a;
    font-style: italic;
    margin-top: 25px;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* ==================== ДОНАТ ==================== */
.donate-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #8b7355;
    border-radius: 15px;
    padding: 45px 35px;
    margin: 80px auto;
    max-width: 1100px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.donate-title {
    font-size: 2.2rem;
    color: #c5a47e;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(197, 164, 126, 0.5);
}

.donate-intro {
    font-size: 1.4rem;
    color: #d4c4ae;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.amount-selector {
    margin-bottom: 35px;
}

.amount-label {
    font-size: 1.3rem;
    color: #c5a47e;
    margin-bottom: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

.amount-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.amount-btn {
    padding: 14px 28px;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid #8b7355;
    color: #c5a47e;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    font-family: 'Times New Roman', serif;
}

.amount-btn:hover {
    border-color: #c5a47e;
    background: rgba(197, 164, 126, 0.1);
    transform: translateY(-2px);
}

.amount-btn.active {
    background: linear-gradient(135deg, #c5a47e 0%, #8b7355 100%);
    color: #0a0a0a;
    border-color: #d4b68c;
}

.custom-amount {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    margin: 0 auto;
}

.custom-amount input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid #8b7355;
    color: #c5a47e;
    font-size: 1.1rem;
    border-radius: 8px;
    text-align: center;
    font-family: 'Times New Roman', serif;
}

.custom-amount input:focus {
    outline: none;
    border-color: #c5a47e;
}

.custom-amount label {
    color: #c5a47e;
    font-size: 1.2rem;
    font-weight: bold;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.payment-method {
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid #8b7355;
    padding: 25px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-method:hover {
    border-color: #c5a47e;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.payment-method.selected {
    border-color: #d4b68c;
    background: rgba(197, 164, 126, 0.1);
}

.payment-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}

.payment-name {
    font-size: 1.4rem;
    color: #c5a47e;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-desc {
    font-size: 1.1rem;
    color: #d4c4ae;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.donate-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #c5a47e 0%, #8b7355 100%);
    color: #0a0a0a;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    margin-bottom: 30px;
    border: none;
    cursor: pointer;
    font-family: 'Times New Roman', serif;
}

.donate-button:hover {
    background: linear-gradient(135deg, #d4b68c 0%, #a0896a 100%);
    box-shadow: 0 10px 30px rgba(197, 164, 126, 0.6);
    transform: translateY(-3px);
}

.donate-purpose {
    margin-top: 35px;
    padding: 28px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border-left: 4px solid #c5a47e;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.donate-purpose-title {
    color: #c5a47e;
    font-weight: bold;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.donate-purpose ul {
    list-style: none;
    padding: 0;
}

.donate-purpose li {
    color: #d4c4ae;
    padding: 8px 0;
    font-size: 1.15rem;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.donate-purpose li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c5a47e;
    font-size: 1.3rem;
}

/* ==================== ФУТЕР ==================== */
footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid #8b7355;
    padding: 60px 20px 30px;
    margin-top: 80px;
    position: relative;
}

footer::before {
    content: '✦ ⚜ ✦';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: #8b0000;
    font-size: 1.3rem;
    background: rgba(10, 10, 10, 0.95);
    padding: 0 25px;
    letter-spacing: 8px;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.6);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #c5a47e;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #5d4037;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #8b0000;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #a8967a;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 0;
}

.footer-column a::before {
    content: '▸ ';
    color: #8b7355;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #f5e6d3;
    padding-left: 8px;
    text-shadow: 0 0 8px rgba(197, 164, 126, 0.5);
}

.footer-column a:hover::before {
    color: #8b0000;
}

.footer-buy-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8b0000 0%, #5a0000 100%);
    color: #f5e6d3 !important;
    border: 1px solid #c5a47e;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    width: 100%;
    text-align: center;
}

.footer-buy-btn::before {
    content: '🛒 ' !important;
    color: inherit !important;
}

.footer-buy-btn:hover {
    background: linear-gradient(135deg, #c5a47e 0%, #8b7355 100%);
    color: #0a0a0a !important;
    padding-left: 20px !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.5);
    text-shadow: none;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid #5d4037;
    border-radius: 50%;
    color: #c5a47e;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a::before {
    content: none !important;
}

.footer-social a:hover {
    background: #8b0000;
    border-color: #c5a47e;
    color: #f5e6d3;
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-about {
    color: #a8967a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #5d4037, transparent);
    margin: 30px 0 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom p {
    margin-bottom: 8px;
    color: #8b7355;
}

.footer-bottom p.disclaimer {
    font-size: 0.85rem;
    color: #6d5a44;
    max-width: 950px;
    margin: 15px auto;
    line-height: 1.6;
}

.footer-bottom a {
    color: #c5a47e;
    text-decoration: none;
    border-bottom: 1px dashed #8b7355;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #f5e6d3;
    border-bottom-color: #c5a47e;
}

/* ==================== ДЕКОР ==================== */
.decoration {
    position: fixed;
    opacity: 0.08;
    z-index: -1;
    font-size: 15rem;
    color: #8b7355;
    pointer-events: none;
}

.decoration-1 {
    top: 10%;
    right: -5%;
    transform: rotate(15deg);
}

.decoration-2 {
    bottom: 10%;
    left: -5%;
    transform: rotate(-10deg);
}

/* ==================== АДАПТИВ ==================== */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1.05rem;
    }

    .nav-burger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
        border-bottom: 2px solid #8b7355;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 12px 20px;
        border-bottom: none;
        justify-content: space-between;
        border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    }

    .nav-menu > li > a:hover {
        border-bottom-color: rgba(139, 115, 85, 0.2);
    }

    .nav-dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin: 0;
        border: none;
        border-radius: 0;
        background: rgba(20, 20, 20, 0.95);
        padding: 0;
        box-shadow: none;
        border-left: 3px solid #8b0000;
        margin-left: 15px;
        transition: all 0.3s ease;
    }

    .nav-dropdown::before,
    .nav-dropdown::after {
        display: none;
    }

    .nav-menu > li.dropdown-open .nav-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 5px 0;
    }

    .nav-dropdown a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-buy-btn {
        margin: 10px 20px !important;
        display: block !important;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .buy-subtitle {
        font-size: 1.3rem;
    }

    .donate-intro {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .buy-title, .donate-title {
        font-size: 1.6rem;
    }

    .decoration {
        display: none;
    }

    .feature-item {
        padding: 18px 22px;
    }

    .about-card {
        padding: 28px 22px;
    }

    .buy-subtitle {
        font-size: 1.15rem;
    }

    .donate-intro {
        font-size: 1.1rem;
    }

    .buy-store {
        font-size: 1.5rem;
    }

    .buy-price {
        font-size: 1.8rem;
    }

    .buy-note {
        font-size: 1.05rem;
    }

    .amount-label {
        font-size: 1.15rem;
    }

    .amount-btn {
        font-size: 1.05rem;
        padding: 12px 22px;
    }

    .payment-name {
        font-size: 1.2rem;
    }

    .payment-desc {
        font-size: 1rem;
    }

    .donate-button {
        font-size: 1.1rem;
        padding: 15px 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .about-card {
        padding: 22px 18px;
    }

    .buy-card {
        padding: 25px 20px;
    }

    .buy-section {
        padding: 35px 20px;
    }

    .donate-section {
        padding: 35px 20px;
    }

    .section {
        margin: 55px auto;
    }

    .buy-subtitle {
        font-size: 1.05rem;
    }

    .donate-intro {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    footer {
        padding: 50px 15px 25px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .about-card:hover,
    .weapon-card:hover,
    .buy-card:hover,
    .feature-item:hover {
        transform: none;
    }
}
