:root {
    --bg-dark: #0a2725;
    --bg-dark-2: #0f3733;
    --surface: #134440;
    --surface-2: #16514c;
    --text-main: #fff8ea;
    --text-soft: #f9e8c8;
    --muted: #cfe6dd;
    --orange: #f97316;
    --yellow: #facc15;
    --magenta: #e11d48;
    --success: #10b981;
    --danger: #ef4444;
    --card-border: rgba(250, 204, 21, 0.3);
    --shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Lexend', sans-serif;
    color: var(--text-main);
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-dark-2));
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}

.container {
    width: min(1160px, calc(100% - 2.4rem));
    margin-inline: auto;
}

.section {
    padding: 4.5rem 0;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin: 0 0 0.8rem;
    color: #fff4d6;
}

.section-intro {
    color: var(--muted);
    max-width: 72ch;
    margin: 0 0 2rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 39, 37, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(250, 204, 21, 0.25);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    background: rgba(8, 30, 28, 0.98);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: #23160a;
    background: radial-gradient(circle at 30% 30%, #fde68a, var(--yellow));
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.24);
}

.brand-text {
    font-size: 1.06rem;
    color: var(--text-main);
}

.brand-text span {
    color: var(--orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a {
    color: #ffedd5;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    background: rgba(249, 115, 22, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(250, 204, 21, 0.5);
    background: transparent;
    color: #fff;
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    font-size: 1rem;
}

.hero {
    padding: 5.4rem 0 3.4rem;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(36px);
    opacity: 0.36;
    z-index: -1;
}

.hero::before {
    width: 320px;
    height: 320px;
    background: var(--orange);
    top: -80px;
    right: -70px;
}

.hero::after {
    width: 280px;
    height: 280px;
    background: var(--magenta);
    left: -90px;
    bottom: -110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: end;
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.8vw, 3.5rem);
    line-height: 1.08;
}

.hero h1 .accent {
    color: var(--yellow);
}

.hero p {
    margin: 0;
    color: var(--text-soft);
    max-width: 60ch;
}

.trust-row {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.trust-pill {
    padding: 0.52rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(250, 204, 21, 0.35);
    font-size: 0.9rem;
}

.hero-stats {
    background: linear-gradient(180deg, rgba(250, 204, 21, 0.15), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(250, 204, 21, 0.4);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.hero-stats h3 {
    margin: 0 0 0.8rem;
    font-size: 1.05rem;
}

.hero-stats ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
    color: var(--muted);
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.casino-card {
    background: linear-gradient(160deg, rgba(20, 74, 69, 0.95), rgba(15, 58, 54, 0.96));
    border: 1px solid var(--card-border);
    border-left: 5px solid var(--orange);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
}

.card-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.casino-logo-container {
    width: 120px;
    height: 80px;
    min-width: 120px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    flex-shrink: 0;
}

.casino-logo-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.casino-name {
    margin: 0;
    font-size: 1.35rem;
}

.rating {
    color: #fde68a;
    font-weight: 600;
    font-size: 0.95rem;
}

.badge {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.2);
    border: 1px solid rgba(225, 29, 72, 0.6);
    padding: 0.36rem 0.68rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.bonus-box {
    margin-top: 0.9rem;
    font-size: 1.14rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.24), rgba(225, 29, 72, 0.25));
    border: 1px solid rgba(250, 204, 21, 0.38);
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
}

.features {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.pill {
    background: rgba(250, 204, 21, 0.15);
    border: 1px solid rgba(250, 204, 21, 0.36);
    color: #fff8e6;
    border-radius: 999px;
    padding: 0.25rem 0.56rem;
    font-size: 0.78rem;
}

.card-bottom {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
}

.key-info {
    color: #ddf4e5;
    font-size: 0.9rem;
}

.reviewed {
    color: #b9e5d5;
    font-size: 0.86rem;
    margin-top: 0.45rem;
}

.note {
    color: #ffd9b0;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    padding: 0.78rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: var(--orange);
    color: #fff6eb;
    min-width: 172px;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--magenta);
    transform: translateY(-2px);
    filter: saturate(1.15);
}

.text-block {
    background: rgba(12, 47, 44, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1.2rem 1.25rem;
    margin-bottom: 1rem;
}

.text-block h3 {
    margin-top: 0;
    color: #fff2c8;
}

.text-block p:last-child {
    margin-bottom: 0;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid rgba(250, 204, 21, 0.32);
    border-radius: 14px;
    background: rgba(20, 74, 69, 0.56);
    overflow: hidden;
}

.faq-question {
    margin: 0;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 0.95rem 1rem;
    background: transparent;
    border: none;
    color: #fff9ec;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

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

.faq-answer p {
    margin: 0;
    padding: 0 1rem 1rem;
    color: #def3ea;
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.resource-links a {
    border: 1px solid rgba(250, 204, 21, 0.4);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.08);
}

.resource-links a:hover,
.resource-links a:focus-visible {
    background: rgba(249, 115, 22, 0.2);
}

.big-18 {
    display: inline-block;
    margin-top: 1rem;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
    color: #22160e;
    padding: 0.35rem 0.72rem;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.site-footer {
    border-top: 1px solid rgba(250, 204, 21, 0.33);
    background: rgba(7, 28, 26, 0.92);
    padding: 2.6rem 0;
}

.footer-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.footer-links a {
    color: #ffe8ca;
}

.footer-links a:hover {
    color: #fff;
}

.footer-note {
    color: #c5e2d7;
    font-size: 0.9rem;
}

.page-hero {
    padding: 3.4rem 0 1.8rem;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.page-hero p {
    color: var(--text-soft);
    max-width: 72ch;
}

.legal-content {
    padding-bottom: 4rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    color: #fff0be;
    font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
    color: #e6f4ed;
}

.legal-content ul {
    margin: 0.5rem 0 1rem;
    padding-left: 1.1rem;
}

.contact-box {
    background: rgba(20, 74, 69, 0.62);
    border: 1px solid rgba(250, 204, 21, 0.36);
    border-radius: var(--radius);
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.contact-box h2 {
    margin-top: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 10, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.overlay.active {
    display: flex;
}

.modal {
    width: min(520px, 100%);
    background: linear-gradient(165deg, #11413d, #0d3430);
    border: 1px solid rgba(250, 204, 21, 0.44);
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.modal h2 {
    margin-top: 0;
}

.modal p {
    color: #e7f5ef;
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.btn-secondary {
    background: transparent;
    color: #fff6e4;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    width: min(820px, calc(100% - 1.2rem));
    background: rgba(8, 35, 32, 0.95);
    border: 1px solid rgba(250, 204, 21, 0.45);
    border-radius: 14px;
    padding: 0.9rem;
    display: none;
    z-index: 1800;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner.show {
    display: flex;
}

.cookie-text {
    font-size: 0.92rem;
    color: #fef4dc;
}

.cookie-actions {
    display: flex;
    gap: 0.55rem;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    background: #fff;
    color: #111;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
}

.skip-link:focus {
    top: 10px;
}

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

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

    .nav-menu {
        position: absolute;
        right: 1.2rem;
        top: 68px;
        flex-direction: column;
        align-items: stretch;
        min-width: 220px;
        background: rgba(8, 30, 28, 0.98);
        border: 1px solid rgba(250, 204, 21, 0.4);
        border-radius: 12px;
        padding: 0.4rem;
        display: none;
    }

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

    .menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 720px) {
    .card-top {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .badge {
        justify-self: start;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}
