:root {
    --bg: #120d07;
    --bg-soft: #1c1309;
    --surface: rgba(34, 24, 11, 0.72);
    --surface-strong: rgba(46, 31, 11, 0.94);
    --line: rgba(255, 214, 120, 0.18);
    --text: #fff7e1;
    --muted: #ceb98a;
    --accent: #ffbf2f;
    --accent-soft: #ffe9a5;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(255, 188, 40, 0.18), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(255, 229, 142, 0.16), transparent 22%),
        linear-gradient(180deg, #35200a 0%, #120d07 32%, #0b0907 100%);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 48px;
}

.topbar,
.hero-card,
.feature-card,
.bonus-card,
.story-card,
.payment-card,
.news-card,
.faq-item,
.site-footer {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 22px;
    border-radius: 24px;
    background: rgba(18, 13, 7, 0.72);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 14px;
    z-index: 20;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img,
.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: #1a1207;
    background: linear-gradient(135deg, #fff1b0, #ffbf2f 60%, #c98400);
}

.brand strong,
.section-head h2,
.bonus-card h3,
.story-card h3,
.payment-card h3,
.news-card h3,
.faq-item summary,
.site-footer strong {
    font-family: 'Sora', sans-serif;
}

.brand span {
    display: grid;
    gap: 4px;
}

.brand small,
.hero-text,
.feature-card p,
.bonus-card p,
.story-card p,
.payment-card p,
.news-card p,
.site-footer p,
.site-footer span {
    color: var(--muted);
}

.main-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-nav a,
.ghost-link,
.section-link,
.social-links a {
    transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.ghost-link:hover,
.section-link:hover,
.social-links a:hover {
    color: var(--accent-soft);
    transform: translateY(-1px);
}

.ghost-link {
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.topbar-button {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.hero-card {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 32px;
    margin-top: 22px;
    padding: 42px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255, 194, 58, 0.14), rgba(255, 255, 255, 0.02)),
        rgba(18, 13, 7, 0.82);
    overflow: hidden;
    position: relative;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: auto -12% -40% 20%;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 193, 47, 0.22), transparent 65%);
    pointer-events: none;
}

.eyebrow,
.section-kicker,
.panel-tag,
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #231607;
    background: linear-gradient(135deg, #fff1b0, #ffbf2f);
}

.hero-copy {
    display: grid;
    gap: 20px;
    align-content: center;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-actions,
.highlight-list,
.mini-stats,
.feature-grid,
.bonus-grid,
.story-grid,
.editorial-stack,
.payments-layout,
.news-grid,
.social-links {
    display: grid;
}

.hero-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 12px;
}

.button {
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 700;
}

.button-primary {
    color: #1c1206;
    background: linear-gradient(135deg, #fff1b0, #ffbf2f);
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.ticker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 214, 120, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.ticker span {
    color: var(--muted);
}

.highlight-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 214, 120, 0.08);
}

.hero-visual {
    position: relative;
    min-height: 420px;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
}

.orb-a {
    inset: 12% auto auto 8%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 239, 177, 0.84), rgba(255, 191, 47, 0.12));
}

.orb-b {
    inset: auto 0 14% auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 193, 47, 0.44), rgba(255, 193, 47, 0.04));
}

.glass-panel {
    position: absolute;
    inset: 12% 6% 8% auto;
    width: min(100%, 390px);
    padding: 28px;
    border-radius: 32px;
    border: 1px solid rgba(255, 214, 120, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 242, 182, 0.12), rgba(255, 191, 47, 0.04)),
        rgba(19, 12, 7, 0.76);
    backdrop-filter: blur(22px);
}

.glass-panel strong {
    display: block;
    margin: 18px 0 10px;
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
}

.mini-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.mini-stats div,
.feature-card,
.bonus-card,
.story-card,
.payment-card,
.news-card,
.faq-item,
.site-footer {
    background: var(--surface);
    backdrop-filter: blur(14px);
}

.mini-stats div {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 214, 120, 0.12);
}

.mini-stats strong {
    font-size: 1.15rem;
    margin: 0 0 6px;
}

.mini-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    padding-top: 84px;
}

.section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.section-head.inline {
    grid-template-columns: 1fr auto;
    align-items: end;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.feature-grid,
.bonus-grid,
.story-grid,
.news-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.bonus-card,
.news-card {
    padding: 24px;
    border-radius: 28px;
}

.feature-card {
    grid-column: span 3;
}

.feature-card span,
.news-card time {
    color: var(--accent-soft);
}

.bonus-card {
    grid-column: span 3;
}

.story-card {
    grid-column: span 4;
    padding: 28px;
    border-radius: 28px;
}

.story-card ul,
.payment-card ul {
    padding-left: 18px;
    color: var(--muted);
    margin: 18px 0 0;
}

.payments-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.payment-card {
    padding: 28px;
    border-radius: 30px;
}

.payment-card.accent {
    background:
        linear-gradient(180deg, rgba(255, 191, 47, 0.14), rgba(255, 255, 255, 0.02)),
        var(--surface-strong);
}

.news-card {
    grid-column: span 4;
}

.news-card a,
.bonus-card a,
.section-link {
    color: var(--accent-soft);
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.editorial-stack {
    gap: 18px;
}

.editorial-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(255, 191, 47, 0.08), rgba(255, 255, 255, 0.02)), var(--surface);
    backdrop-filter: blur(14px);
}

.editorial-card h3 {
    margin: 0 0 18px;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.editorial-copy {
    display: grid;
    gap: 14px;
}

.editorial-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.editorial-card ul {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--accent-soft);
    line-height: 1.8;
}

.faq-item {
    padding: 20px 22px;
    border-radius: 24px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 14px 0 0;
    color: var(--muted);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(6, 5, 4, 0.72);
    backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
    display: none;
}

.site-modal {
    width: min(100%, 520px);
    display: none;
    gap: 18px;
    position: relative;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background:
        linear-gradient(180deg, rgba(255, 191, 47, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(19, 12, 7, 0.96);
}

.site-modal.is-active {
    display: grid;
}

.site-modal h2 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.site-modal p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.modal-form {
    display: grid;
    gap: 14px;
}

.modal-form label {
    display: grid;
    gap: 8px;
}

.modal-form span {
    color: var(--accent-soft);
    font-weight: 700;
}

.modal-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 214, 120, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font: inherit;
}

.modal-form input::placeholder {
    color: rgba(255, 247, 225, 0.46);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    font-size: 1.4rem;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr auto;
    gap: 18px;
    margin-top: 72px;
    padding: 28px;
    border-radius: 30px 30px 0 0;
}

.social-links {
    grid-template-columns: repeat(3, max-content);
    gap: 14px;
    justify-content: end;
    align-content: start;
}

.hero-card,
.feature-card,
.bonus-card,
.story-card,
.payment-card,
.news-card,
.faq-item,
.site-footer {
    animation: rise 720ms ease both;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .hero-card,
    .site-footer,
    .payments-layout {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .bonus-card,
    .story-card,
    .news-card {
        grid-column: span 6;
    }

    .main-nav {
        display: none;
    }

    .topbar-actions {
        margin-left: auto;
    }

    .hero-visual {
        min-height: 320px;
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(100% - 18px, 100%);
        padding-top: 14px;
    }

    .topbar,
    .hero-card,
    .feature-card,
    .bonus-card,
    .story-card,
    .payment-card,
    .news-card,
    .faq-item,
    .site-footer {
        border-radius: 22px;
    }

    .topbar {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 14px;
    }

    .brand {
        width: 100%;
    }

    .topbar-actions {
        width: 100%;
        justify-content: stretch;
    }

    .topbar-actions .topbar-button {
        flex: 1;
        justify-content: center;
    }

    .hero-card {
        padding: 22px;
    }

    .hero-actions,
    .highlight-list,
    .mini-stats,
    .feature-grid,
    .bonus-grid,
    .story-grid,
    .news-grid,
    .social-links {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .bonus-card,
    .story-card,
    .news-card {
        grid-column: span 12;
    }

    .glass-panel {
        inset: auto 0 0 0;
        width: 100%;
        position: relative;
        margin-top: 30px;
    }

    .hero-visual {
        min-height: unset;
    }

    .section {
        padding-top: 58px;
    }

    .section-head.inline {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: start;
    }

    .modal-backdrop {
        padding: 14px;
    }

    .site-modal {
        padding: 22px;
        border-radius: 22px;
    }
}