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

:root {
    --bg-primary: #080911;
    --bg-secondary: #10111d;
    --bg-card: rgba(22, 23, 38, 0.86);
    --bg-card-hover: rgba(31, 32, 54, 0.95);

    --gold: #d6b756;
    --gold-light: #ffe08a;
    --gold-dark: #a98525;

    --silver: #d7d7d7;
    --bronze: #c47a38;

    --text-primary: #f7f4ea;
    --text-secondary: #b5b6c9;
    --text-muted: #73758d;

    --success: #34d399;
    --warning: #f59e0b;
    --error: #ef4444;

    --border: rgba(214, 183, 86, 0.16);
    --border-hover: rgba(214, 183, 86, 0.45);

    --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    --shadow-gold: 0 0 34px rgba(214, 183, 86, 0.14);

    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.28s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: Inter, "Segoe UI", system-ui, sans-serif;
    background:
        radial-gradient(circle at top, rgba(214, 183, 86, 0.12), transparent 34rem),
        linear-gradient(180deg, var(--bg-primary), #0d0e19);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

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

img {
    max-width: 100%;
    display: block;
}

/* BUTTONS */

.btn-primary,
.btn-accept,
.cta-button,
.platform-cta,
.help-card a {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #090a10;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    box-shadow: 0 10px 28px rgba(214, 183, 86, 0.22);
}

.btn-primary:hover,
.btn-accept:hover,
.cta-button:hover,
.platform-cta:hover,
.help-card a:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 16px 40px rgba(214, 183, 86, 0.34);
}

.btn-secondary,
.btn-refuse {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover,
.btn-refuse:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(214, 183, 86, 0.08);
}

/* AGE GATE */

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 4, 8, 0.92);
    backdrop-filter: blur(18px);
}

.age-gate-content {
    width: min(420px, 90%);
    padding: 36px 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(29, 30, 48, 0.96), rgba(16, 17, 29, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow), var(--shadow-gold);
    animation: fadeInScale 0.35s ease;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.94) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate-icon {
    color: var(--gold);
    margin-bottom: 16px;
}

.age-gate-icon svg {
    width: 58px;
    height: 58px;
}

.age-gate-content h2 {
    font-size: 1.65rem;
    margin-bottom: 10px;
}

.age-gate-content > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.age-gate-buttons {
    display: grid;
    gap: 10px;
}

.btn-primary,
.btn-secondary {
    padding: 13px 24px;
}

/* COOKIE */

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9000;
    max-width: 1080px;
    margin: 0 auto;
    padding: 16px;
    background: rgba(18, 19, 32, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    animation: slideUp 0.35s ease;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cookie-content p {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.cookie-content strong {
    color: var(--text-primary);
}

.cookie-content a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-refuse {
    padding: 9px 18px;
}

/* NAVBAR */

.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 11px 0;
    background: rgba(8, 9, 17, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo svg,
.footer-logo svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.accent {
    color: var(--gold-light);
}

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

.nav-links a {
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-light);
    background: rgba(214, 183, 86, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 10px;
    background: var(--text-primary);
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(214, 183, 86, 0.18), transparent 28rem),
        radial-gradient(circle at 82% 50%, rgba(80, 120, 255, 0.08), transparent 24rem),
        linear-gradient(180deg, transparent, var(--bg-secondary));
}

.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    padding: 7px 15px;
    margin-bottom: 18px;
    border: 1px solid var(--border-hover);
    border-radius: 999px;
    background: rgba(214, 183, 86, 0.1);
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    font-size: clamp(2.1rem, 6vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 950;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #fff, var(--gold-light) 48%, var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    max-width: 580px;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.stat-number {
    display: block;
    color: var(--gold-light);
    font-size: 1.65rem;
    font-weight: 950;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: var(--border);
}

.cta-button,
.platform-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 28px;
}

.cta-button svg,
.platform-cta svg {
    width: 17px;
    height: 17px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: scrollBounce 1.6s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: .35; }
    50% { transform: translateY(9px); opacity: 1; }
}

/* TITLES */

.section-title {
    text-align: center;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    max-width: 560px;
    margin: 0 auto 46px;
    text-align: center;
    color: var(--text-secondary);
}

/* SECTIONS */

.platforms,
.faq {
    padding: 82px 0;
    background: linear-gradient(180deg, var(--bg-secondary), #0d0e18);
    position: relative;
}

.why-us {
    padding: 82px 0;
}

.platforms::before,
.faq::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* CARDS */

.platforms-grid,
.features-grid {
    display: grid;
    gap: 22px;
}

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

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

.platform-card,
.feature-card,
.faq-item,
.help-card,
.responsible-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.platform-card:hover,
.feature-card:hover,
.help-card:hover {
    transform: translateY(-7px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow), var(--shadow-gold);
}

.platform-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.platform-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(214,183,86,.28), transparent 35%, transparent);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-image {
    height: 132px;
    display: grid;
    place-items: center;
    padding: 18px;
    background: radial-gradient(circle, rgba(214,183,86,.08), transparent 65%);
    border-bottom: 1px solid var(--border);
}

.platform-img {
    max-height: 86px;
    object-fit: contain;
    transition: transform var(--transition);
}

.platform-card:hover .platform-img {
    transform: scale(1.06);
}

.platform-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.rating-score {
    color: var(--gold-light);
    font-size: 1.9rem;
    font-weight: 950;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star {
    width: 15px;
    height: 15px;
    color: var(--gold);
}

.bonus-info {
    padding: 13px 14px;
    border: 1px solid rgba(214, 183, 86, 0.2);
    border-radius: 12px;
    background: rgba(214, 183, 86, 0.075);
}

.bonus-description {
    color: var(--gold-light);
    font-weight: 800;
    font-size: 0.9rem;
}

.payment-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.payment-icons {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 24px;
    max-width: 54px;
    object-fit: contain;
    border-radius: 5px;
    filter: grayscale(0.2) brightness(0.95);
    transition: var(--transition);
}

.payment-icon:hover {
    filter: none;
    transform: translateY(-1px);
}

.platform-cta {
    margin-top: auto;
    width: 100%;
}

/* RIBBONS */

.ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ribbon-1 {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #080911;
}

.ribbon-2 {
    background: linear-gradient(135deg, var(--silver), #8f8f8f);
    color: #080911;
}

.ribbon-3 {
    background: linear-gradient(135deg, var(--bronze), #8b4b1f);
    color: #fff;
}

/* FEATURES */

.feature-card {
    padding: 30px 22px;
    text-align: center;
}

.feature-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--gold-light);
    background: rgba(214, 183, 86, 0.08);
    border: 1px solid rgba(214, 183, 86, 0.2);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* RESPONSIBLE */

.responsible-gaming {
    padding: 52px 0;
    background: linear-gradient(135deg, rgba(239,68,68,.08), rgba(245,158,11,.05));
    border-block: 1px solid rgba(239, 68, 68, 0.16);
}

.responsible-content {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-color: rgba(245, 158, 11, 0.22);
}

.responsible-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    color: var(--warning);
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.12);
}

.responsible-icon svg {
    width: 34px;
    height: 34px;
}

.responsible-text h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.responsible-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.responsible-link {
    color: var(--gold-light);
    font-weight: 800;
}

/* FAQ */

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

.faq-item {
    overflow: hidden;
}

.faq-item.open {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 800;
}

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

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer.open {
    max-height: 320px;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* FOOTER */

.footer {
    background: #070810;
    border-top: 1px solid var(--border);
    padding-top: 58px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 42px;
    padding-bottom: 42px;
}

.footer-about,
.footer-links a,
.footer-bottom p,
.footer-disclaimer p {
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.footer-about {
    margin: 16px 0;
}

.footer-disclaimer {
    padding: 13px 15px;
    border-radius: 14px;
    border: 1px solid rgba(239, 68, 68, 0.18);
    background: rgba(239, 68, 68, 0.06);
}

.footer-disclaimer strong {
    color: var(--error);
}

.footer-column h4 {
    color: var(--gold-light);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

/* LEGAL */

.page-hero {
    position: relative;
    padding: 125px 0 52px;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(214,183,86,.14), transparent 32rem);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 950;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p,
.content-section p,
.content-section li {
    color: var(--text-secondary);
}

.page-content {
    padding: 64px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 38px;
}

.content-section h2 {
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.content-section h3 {
    margin: 20px 0 8px;
    font-size: 1rem;
}

.content-section ul,
.content-section ol {
    padding-left: 22px;
}

.content-section a {
    color: var(--gold-light);
    text-decoration: underline;
}

.info-box,
.warning-box {
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.info-box {
    background: rgba(214,183,86,.07);
    border: 1px solid rgba(214,183,86,.22);
    border-left: 4px solid var(--gold);
}

.warning-box {
    background: rgba(239,68,68,.07);
    border: 1px solid rgba(239,68,68,.22);
    border-left: 4px solid var(--error);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.help-card {
    padding: 22px;
    text-align: center;
}

.help-card h4 {
    margin-bottom: 8px;
}

.help-card p {
    margin-bottom: 14px;
}

/* ANIMATIONS */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(8, 9, 17, 0.96);
        backdrop-filter: blur(18px);
        flex-direction: column;
        justify-content: center;
        gap: 18px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.15rem;
    }

    .hero {
        min-height: 100svh;
        padding: 100px 0 64px;
    }

    .hero h1 {
        letter-spacing: -0.04em;
    }

    .platforms,
    .why-us,
    .faq {
        padding: 64px 0;
    }

    .platforms-grid {
        max-width: 420px;
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    .responsible-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-accept,
    .btn-refuse {
        flex: 1;
    }

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

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, 1140px);
    }

    .hero h1 {
        font-size: 2.15rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

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

    .age-gate-content {
        padding: 28px 20px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}