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

:root {
    --bg-deep: #0a0e1a;
    --bg-card: #111827;
    --bg-glass: rgba(17, 24, 39, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --neon-orange: #ff8c42;
    --neon-gold: #e8b86d;
    --neon-gold-dim: #c9a055;
    --neon-purple: #a78bfa;
    --neon-blue: #60a5fa;
    --text-primary: #f3f4f6;
    --text-muted: #9ca3af;
    --glow-orange: 0 0 20px rgba(255, 140, 66, 0.4), 0 0 40px rgba(255, 140, 66, 0.2);
    --glow-gold: 0 0 25px rgba(232, 184, 109, 0.35);
    --glow-purple: 0 0 20px rgba(167, 139, 250, 0.3);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(167, 139, 250, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.01) 40px,
            rgba(255, 255, 255, 0.01) 41px
    );
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: var(--glow-orange);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--neon-gold);
    text-shadow: var(--glow-gold);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    margin: 1.25rem 0 0.75rem;
    color: var(--neon-blue);
    line-height: 1.4;
}

.header {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo img {
    height: 48px;
    width: auto;
    border-radius: 12px;
    filter: drop-shadow(0 0 8px rgba(232, 184, 109, 0.3));
}

.header-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@keyframes btn-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(232, 184, 109, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 32px rgba(232, 184, 109, 0.7), 0 0 50px rgba(232, 184, 109, 0.25), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.btn {
    background: linear-gradient(135deg, var(--neon-gold) 0%, var(--neon-gold-dim) 100%);
    color: #0a0e1a;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow-gold);
    transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
    animation: btn-pulse 2s ease-in-out infinite;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(232, 184, 109, 0.5);
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--neon-gold);
    border: 1px solid rgba(232, 184, 109, 0.5);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(232, 184, 109, 0.12);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: none;
    width: 100%;
    margin-top: 1rem;
}

.nav-menu.active {
    display: block;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--neon-gold);
    background: rgba(255, 255, 255, 0.05);
}

.section {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    animation: fadeUp 0.5s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
    backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 1000px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 280px;
    text-align: left;
}

.hero-image-wrap {
    flex-shrink: 0;
    max-width: 380px;
}

.hero-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(232, 184, 109, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
}

.hero h1 {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image-wrap {
        max-width: 100%;
    }
}

.hero-sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 140, 66, 0.4));
}

.bonus-amount .fill {
    -webkit-text-fill-color: initial;
    color: var(--neon-gold);
}

.grid {
    display: grid;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 3px solid var(--neon-orange);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
    border-left-color: var(--neon-gold);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.card h3 {
    color: var(--neon-gold);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(17, 24, 39, 0.5);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

table th {
    background: rgba(167, 139, 250, 0.15);
    color: var(--text-primary);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid var(--glass-border);
}

table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

table tr:last-child td {
    border-bottom: none;
}

table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

table td:first-child {
    color: var(--text-primary);
    font-weight: 600;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
}

.payment-icons img {
    height: 36px;
    max-width: 70px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.payment-icons img:hover {
    opacity: 1;
}

.feature-with-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.feature-with-image .feature-content {
    flex: 1;
    min-width: 260px;
}

.feature-with-image .feature-img-wrap {
    flex-shrink: 0;
    max-width: 320px;
}

.feature-with-image .feature-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .feature-with-image {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-with-image .feature-img-wrap {
        max-width: 100%;
    }
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.slot-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(30, 41, 59, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.slot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(232, 184, 109, 0.15);
}

.slot-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.slot-card span {
    display: block;
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.section-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.faq-item {
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.25rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: var(--neon-blue);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--neon-gold);
}

.faq-question::after {
    content: '+';
    font-size: 1.35rem;
    color: var(--neon-orange);
    font-weight: 900;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.75;
    display: none;
    font-size: 0.95rem;
}

.faq-answer.active {
    display: block;
}

.footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 20px;
    margin-top: 3rem;
    text-align: center;
}

.footer-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-note strong {
    color: var(--neon-gold);
}

.intro-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section-buttons .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 1.5rem;
        margin: 1.25rem auto;
    }

    .hero {
        padding: 1.5rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-btns {
        flex-direction: column;
        width: 100%;
    }

    .header-btns .btn {
        width: 100%;
        text-align: center;
    }

    table {
        font-size: 0.8rem;
    }

    table th, table td {
        padding: 0.65rem 0.5rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .section-buttons {
        flex-direction: column;
    }

    .section-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1.25rem;
    }

    .hero {
        padding: 1.25rem;
    }

    h1 {
        font-size: 1.35rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1.05rem;
    }
}

.anchors-block {
    margin-bottom: 20px;
    list-style: none;
}

.anchors-block a {
    color: currentColor;
}

.seo-content ul {
    margin-bottom: 20px;
    list-style: none;
}

.logo {
    letter-spacing: -0.05em;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-yellow {
    color: rgb(234 179 8);
}
