:root {
    --bg-color: #1a1a1d;
    --surface-color: #232328;
    --card-color: #2a2a30;
    --card-border: #3d3d45;
    --primary-color: #ff6b00;
    --primary-hover: #ff8533;
    --accent-color: #ffd700;
    --accent-hover: #ffea60;
    --danger-color: #b71c1c;
    --danger-light: #d32f2f;
    --text-color: #ffffff;
    --muted-color: #b8b8c0;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    --glow: 0 0 20px rgba(255, 107, 0, 0.25);
    --radius: 20px;
    --radius-sm: 12px;
    --max-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    color: #fff;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #ff8533, #ff9f5c);
    box-shadow: 0 6px 24px rgba(255, 107, 0, 0.5);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-hero {
    background: linear-gradient(90deg, #ff6b00, #ff8533);
    color: #fff;
    padding: 18px 56px;
    font-size: 1.15rem;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
    margin-top: 24px;
}

.btn-banner {
    background: linear-gradient(180deg, #d32f2f, #b71c1c);
    color: #fff;
    padding: 18px 60px;
    font-size: 1.5rem;
    font-weight: 900;
    border: 3px solid var(--accent-color);
    border-radius: 60px;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.3), 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.btn-banner:hover {
    background: linear-gradient(180deg, #e03e3e, #c62828);
}

.section-title {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 36px;
    color: var(--text-color);
}

/* Top bar */
.top-bar {
    background: #000;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.78rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-promo {
    color: var(--muted-color);
    text-align: center;
    flex: 1;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-label {
    color: var(--muted-color);
}

.countdown {
    background: #1a1a1a;
    color: var(--primary-color);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    border: 1px solid #333;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #2a2a2a;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.logo i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.logo strong {
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 22px;
}

.main-nav a {
    color: var(--muted-color);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.7rem;
}

/* Hero */
.hero {
    padding: 50px 0 70px;
    background: linear-gradient(180deg, #2a1a3e 0%, #1a1a1d 100%);
    text-align: center;
}

.hero-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #4a1a6b, #2a1a3e, #1a1a3e);
    border: 2px solid rgba(255, 107, 0, 0.3);
    box-shadow: var(--shadow), 0 0 40px rgba(255, 107, 0, 0.15);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.25), transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2), transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(211, 47, 47, 0.2), transparent 30%);
}

.hero-card-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 30px;
}

.eyebrow {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.lead {
    color: var(--muted-color);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.firework {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8), transparent 60%);
    filter: blur(8px);
}

.fw-1 { top: 10%; left: 8%; animation: pulse 3s ease-in-out infinite; }
.fw-2 { top: 15%; right: 10%; animation: pulse 3.5s ease-in-out infinite reverse; }
.fw-3 { bottom: 20%; left: 15%; animation: pulse 4s ease-in-out infinite; }

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.lion-character {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff6b00, #d32f2f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lion-character::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 215, 0, 0.4);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Info sections */
.info-section {
    padding: 50px 0;
    background: var(--bg-color);
}

.info-panel {
    background: linear-gradient(180deg, #3d1a1a, #2a1515);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 36px 40px;
    box-shadow: var(--shadow);
}

.info-panel-single {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.info-connected {
    padding: 0;
    background: var(--bg-color);
}

.info-connected .container {
    padding-top: 0;
    padding-bottom: 0;
}

.info-panel-first {
    border-radius: var(--radius) var(--radius) 0 0;
    margin-bottom: 0;
    border-bottom: none;
}

.info-panel-middle {
    border-radius: 0;
    margin: 0 auto;
    border-top: none;
    border-bottom: none;
}

.info-panel-last {
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: 0;
    border-top: none;
}

.info-title {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.info-panel p {
    color: var(--muted-color);
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.info-panel p:last-child {
    margin-bottom: 0;
}

.info-block {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.info-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-block:first-child {
    padding-top: 0;
}

.compat-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.compat-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Features */
.features-section {
    padding: 70px 0;
    background: var(--surface-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.feature-card {
    background: var(--card-color);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 22px 14px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: var(--glow);
}

.feature-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05));
    border: 1px solid rgba(255, 107, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--muted-color);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* Steps */
.steps-section {
    padding: 70px 0;
    background: var(--bg-color);
}

.section-lead {
    text-align: center;
    color: var(--muted-color);
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: 0.95rem;
}

.section-lead a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.step-card {
    background: var(--card-color);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: #fff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.step-header > i {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.step-card h3 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.step-card p {
    color: var(--muted-color);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* FAQ */
.faq-section {
    padding: 70px 0;
    background: var(--surface-color);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: transparent;
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.faq-item summary:hover {
    background: rgba(255, 107, 0, 0.08);
}

.faq-answer {
    padding: 0 20px 16px 52px;
    color: var(--muted-color);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Game showcase */
.game-showcase {
    padding: 70px 0;
    background: var(--bg-color);
}

.game-showcase-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.game-image {
    display: flex;
    justify-content: center;
}

.game-image-bg {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #4a1a6b, #2a1a3e, #1a1a3e);
    border: 2px solid rgba(255, 107, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--accent-color);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.game-image-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.2), transparent 50%);
}

.game-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.game-content p {
    color: var(--muted-color);
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.game-content p:last-of-type {
    margin-bottom: 24px;
}

/* CTA Banner */
.cta-banner {
    padding: 45px 0;
    background: linear-gradient(180deg, #2a1515, #1a0d0d);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 80px;
}

.banner-ornament {
    position: absolute;
    top: 50%;
    width: 120px;
    height: 100%;
    transform: translateY(-50%);
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.3), transparent 70%);
}

.banner-ornament.left {
    left: 0;
}

.banner-ornament.right {
    right: 0;
}

.banner-ornament::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.banner-ornament::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid var(--accent-color);
}

/* Conclusion */
.conclusion-section {
    padding: 55px 0;
    background: var(--surface-color);
    text-align: center;
}

.conclusion-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Footer */
.site-footer {
    padding: 50px 0 20px;
    background: #000;
    border-top: 1px solid #2a2a2a;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1.2fr;
    gap: 28px;
    margin-bottom: 36px;
}

.footer-col h3 {
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 14px;
}

.footer-col h3 span {
    color: var(--primary-color);
}

.footer-col h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
    color: var(--muted-color);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-col li {
    margin-bottom: 7px;
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--card-color);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
}

.trust-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.trust-item span {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 18px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.78rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .top-promo {
        flex-basis: 100%;
        order: 3;
        font-size: 0.7rem;
    }

    .main-nav {
        display: none;
    }

    .hero-card {
        min-height: 300px;
    }

    .lion-character {
        width: 140px;
        height: 140px;
        font-size: 3.5rem;
        right: -10px;
        bottom: -20px;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .info-panel {
        padding: 26px 22px;
    }

    .game-showcase-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-content .section-title {
        text-align: center;
    }

    .game-image-bg {
        max-width: 260px;
    }

    .btn-banner {
        padding: 14px 36px;
        font-size: 1.1rem;
    }

    .banner-ornament {
        width: 60px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-item {
        justify-content: center;
    }
}
