@charset "UTF-8";

/* =========================================
   DARK THEME FOR EXCLUSIVE CASINO OFFERS
   Professional Dark Theme with Gold Accents
========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* =========================================
   COLOR PALETTE
========================================== */
:root {
    /* Background colors */
    --bg-primary: #0a0e18;
    --bg-secondary: #111827;
    --bg-tertiary: #1a1f2e;
    --bg-elevated: #252d3d;

    /* Text colors */
    --text-primary: #f0f4f8;
    --text-secondary: #b8c5d6;
    --text-tertiary: #8a96a8;

    /* Accent colors */
    --accent-primary: #ffd700;
    /* Gold */
    --accent-secondary: #c7ff4a;
    /* Lime - for highlights */
    --accent-tertiary: #6366f1;
    /* Indigo */

    /* Status colors */
    --status-success: #10b981;
    --status-warning: #f59e0b;
    --status-error: #ef4444;
    --status-info: #3b82f6;

    /* Borders */
    --border-color: rgba(255, 215, 0, 0.15);
    --border-color-light: rgba(255, 215, 0, 0.08);
}

body {
    min-height: 100%;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-primary);
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

th,
td {
    text-align: left;
    vertical-align: top;
}

details summary {
    cursor: pointer;
}

details summary::-webkit-details-marker {
    display: none;
}

:focus-visible {
    outline: 3px solid var(--accent-secondary);
    outline-offset: 4px;
}

::selection {
    color: var(--bg-primary);
    background: var(--accent-secondary);
}

/* =========================================
   LAYOUT
========================================== */
.container {
    width: min(100% - 32px, 1180px);
    margin-inline: auto;
}

.section-padding {
    padding: 96px 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
    border: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .section-padding {
        padding: 64px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   AGE WARNING BANNER
========================================== */
.anj-warning {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.anj-warning__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.anj-warning__label {
    flex: 0 0 auto;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.anj-warning__text {
    max-width: 980px;
    line-height: 1.45;
    color: var(--text-secondary);
}

.anj-warning__text a {
    color: var(--accent-primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

.anj-warning__text a:hover {
    color: var(--accent-secondary);
}

body {
    padding-top: 42px;
}

/* =========================================
   HEADER
========================================== */
.site-header {
    position: sticky;
    top: 42px;
    z-index: 900;
    background: rgba(17, 24, 39, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color-light);
}

.site-header__main {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    transition: opacity 0.25s ease;
}

.site-logo__mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.04em;
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-logo__text {
    color: var(--text-primary);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.site-logo:hover .site-logo__mark {
    transform: translateY(-1px);
    box-shadow: 0 14px 35px rgba(255, 215, 0, 0.2);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--text-tertiary);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.site-nav a:hover {
    color: var(--accent-primary);
    background: rgba(255, 215, 0, 0.06);
}

.site-nav a.is-active {
    color: var(--bg-primary);
    background: var(--accent-primary);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.25);
}

.header-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(255, 215, 0, 0.2);
    transition: all 0.25s ease;
}

.header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 215, 0, 0.3);
}

.burger-button {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 14px;
    background: transparent;
    border: 1px solid var(--border-color);
}

.burger-button span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-primary);
    transition: all 0.25s ease;
}

.burger-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* =========================================
   HERO SECTION
========================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 124px);
    padding: 96px 0 88px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 28px;
    pointer-events: none;
    border-radius: 34px;
    border: 1px solid var(--border-color);
}

.hero-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    filter: blur(40px);
}

.hero-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.58fr);
    align-items: center;
    gap: 56px;
}

.hero-section__content {
    max-width: 760px;
}

.hero-section h1 {
    max-width: 820px;
    margin-top: 16px;
    color: var(--text-primary);
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-kicker {
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-section__lead {
    margin-top: 20px;
    max-width: 580px;
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.hero-section__warning {
    margin-top: 40px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.hero-section__warning strong {
    color: var(--accent-primary);
}

/* =========================================
   BUTTONS
========================================== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.01em;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.button--primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 14px 30px rgba(255, 215, 0, 0.25);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 215, 0, 0.35);
}

.button--secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--border-color);
    padding: 0 30px;
}

.button--secondary:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--accent-primary);
}

.button--tertiary {
    background: transparent;
    color: var(--text-secondary);
    border: none;
}

.button--tertiary:hover {
    color: var(--accent-primary);
}

/* =========================================
   CARDS
========================================== */
.card {
    padding: 32px;
    border-radius: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color-light);
    transition: all 0.25s ease;
}

.card:hover {
    background: var(--bg-elevated);
    border-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.hero-card {
    padding: 32px;
    border-radius: 20px;
    background: rgba(25, 31, 46, 0.8);
    border: 1px solid var(--border-color-light);
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.hero-card:hover {
    background: rgba(37, 45, 61, 0.9);
    border-color: var(--border-color);
}

.platform-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color-light);
    transition: all 0.25s ease;
}

.platform-card:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(255, 215, 0, 0.15);
}

.review-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color-light);
    transition: all 0.25s ease;
}

.review-card:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

/* =========================================
   FOOTER
========================================== */
.site-footer {
    padding: 64px 0 32px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    gap: 56px;
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-color-light);
}

.site-footer__brand h3 {
    margin-top: 20px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 900;
}

.site-footer__brand p {
    margin-top: 12px;
    color: var(--text-tertiary);
    font-size: 14px;
    line-height: 1.6;
}

.site-footer__warning {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color-light);
    color: var(--status-warning);
    font-weight: 600;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
}

.site-footer__column h3 {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.site-footer__column a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-tertiary);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.site-footer__column a:hover {
    color: var(--accent-primary);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color-light);
    color: var(--text-tertiary);
    font-size: 13px;
}

/* =========================================
   MOBILE RESPONSIVE
========================================== */
@media (max-width: 1024px) {
    .site-header__main {
        min-height: 72px;
        gap: 16px;
    }

    .hero-section__inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .burger-button {
        display: flex;
    }

    .site-header__main {
        min-height: 60px;
    }

    .hero-section__inner {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: clamp(28px, 5vw, 48px);
    }

    .section-kicker {
        font-size: 12px;
    }

    .hero-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 16px, 100%);
    }

    .hero-section__warning {
        padding: 16px;
        font-size: 13px;
    }

    .site-footer__column {
        grid-column: span 1 !important;
    }
}

/* =========================================
   UTILITIES
========================================== */
.text-center {
    text-align: center;
}

.mt-32 {
    margin-top: 32px;
}

.mb-32 {
    margin-bottom: 32px;
}

.text-accent {
    color: var(--accent-primary);
}

.text-muted {
    color: var(--text-tertiary);
}

/* =========================================
   FORM ELEMENTS
========================================== */
input,
textarea,
select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.25s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-tertiary);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-elevated);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* =========================================
   SCROLLBAR STYLING
========================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* =========================================
   VISUAL UPGRADE LAYER
========================================== */
@keyframes ecoFloat {
    0%,
    100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes ecoGlow {
    0%,
    100% { opacity: 0.42; }
    50% { opacity: 0.82; }
}

body {
    background:
        radial-gradient(circle at 16% 14%, rgba(255, 215, 0, 0.1), transparent 22%),
        radial-gradient(circle at 88% 18%, rgba(99, 102, 241, 0.14), transparent 25%),
        radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.08), transparent 26%),
        linear-gradient(180deg, #090d16 0%, #0b1220 40%, #101826 100%);
}

body::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.8;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.14) 74%, rgba(0, 0, 0, 0.42) 100%);
}

.site-header {
    background: linear-gradient(180deg, rgba(8, 13, 22, 0.94), rgba(16, 24, 39, 0.9));
    border-bottom-color: rgba(255, 215, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.site-logo__mark {
    background: linear-gradient(135deg, #ffe27a 0%, #ffd700 52%, #e3b907 100%);
    box-shadow: 0 16px 38px rgba(255, 215, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.site-nav a {
    border: 1px solid transparent;
}

.site-nav a:hover {
    border-color: rgba(255, 215, 0, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.04);
}

.site-nav a.is-active {
    background: linear-gradient(135deg, #ffe27a 0%, #ffd700 60%, #e3b907 100%);
}

.header-button,
.button--primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe27a 0%, #ffd700 54%, #e5b900 100%);
    box-shadow: 0 18px 40px rgba(255, 215, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.header-button::after,
.button--primary::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.32), transparent 44%);
    pointer-events: none;
}

.button--secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 215, 0, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.burger-button {
    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu {
    position: fixed;
    inset: 78px 16px auto;
    z-index: 950;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

.mobile-menu a {
    display: block;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    color: var(--text-secondary);
    font-weight: 700;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    border-radius: 24px;
    background: rgba(13, 19, 32, 0.96);
    border: 1px solid rgba(255, 215, 0, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
}

.hero-section {
    background: radial-gradient(circle at 18% 18%, rgba(255, 215, 0, 0.08), transparent 26%), radial-gradient(circle at 88% 22%, rgba(99, 102, 241, 0.14), transparent 24%), linear-gradient(135deg, #070c15 0%, #0d1422 46%, #121d30 100%);
}

.hero-section::before {
    border-color: rgba(255, 215, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero-section::after {
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    animation: ecoGlow 8s ease-in-out infinite;
}

.section-kicker {
    position: relative;
    padding-left: 16px;
    letter-spacing: 0.16em;
}

.section-kicker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    transform: translateY(-50%);
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.08);
}

.card,
.hero-card,
.platform-card,
.review-card,
details,
table {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 215, 0, 0.12);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card::before,
.hero-card::before,
.platform-card::before,
.review-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 32%);
}

.card:hover,
.platform-card:hover,
.review-card:hover,
.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 215, 0, 0.1);
}

.hero-section__warning,
.site-footer__warning {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
    border-color: rgba(255, 215, 0, 0.18);
}

.faq-list details {
    margin-bottom: 14px;
    background: linear-gradient(180deg, rgba(26, 31, 46, 0.94), rgba(20, 27, 41, 0.94));
}

.faq-list details:last-child {
    margin-bottom: 0;
}

.faq-list summary {
    position: relative;
    padding: 20px 60px 20px 22px;
    color: var(--text-primary);
    font-weight: 900;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.08);
    color: var(--accent-primary);
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

table {
    overflow: hidden;
    border-radius: 18px;
}

thead th {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.04));
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* =========================================
   COOKIE BANNER
========================================== */
.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    width: min(430px, calc(100% - 24px));
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(18, 25, 40, 0.98), rgba(11, 17, 29, 0.98));
    border: 1px solid rgba(255, 215, 0, 0.14);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
}

.cookie-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03));
}

.cookie-banner[hidden],
.cookie-banner.is-hidden {
    display: none !important;
}

.cookie-banner__content,
.cookie-banner__actions {
    position: relative;
    z-index: 1;
}

.cookie-banner__content {
    display: grid;
    gap: 10px;
}

.cookie-banner__content h2 {
    margin: 0;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.cookie-banner__content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.cookie-banner__content a {
    color: var(--accent-primary);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-banner__actions .button {
    flex: 1 1 180px;
    min-height: 50px;
}

.cookie-banner__actions .button--secondary {
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
        padding: 20px;
        border-radius: 22px;
    }

    .cookie-banner__content h2 {
        font-size: 21px;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__actions .button {
        width: 100%;
        flex-basis: auto;
    }
}

.reviews-warning__inner {
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 30px 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 215, 0, 0.14);
    background:
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.14), transparent 24%),
        radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(21, 29, 45, 0.96), rgba(13, 19, 31, 0.96));
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.reviews-warning__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03));
}

.reviews-warning__inner > * {
    position: relative;
    z-index: 1;
}

.reviews-warning__inner h2 {
    max-width: 760px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.reviews-warning__inner p:not(.section-kicker) {
    max-width: 720px;
    font-size: 15px;
    line-height: 1.7;
}

.reviews-warning__inner .button {
    min-width: 220px;
    box-shadow: 0 18px 38px rgba(255, 215, 0, 0.24);
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-list details {
    margin-bottom: 0;
    border-radius: 22px;
    border: 1px solid rgba(255, 215, 0, 0.12);
    background:
        linear-gradient(180deg, rgba(24, 31, 46, 0.96), rgba(16, 22, 35, 0.96));
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.faq-list details[open] {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow:
        0 26px 56px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 215, 0, 0.06);
}

.faq-list summary {
    padding: 24px 72px 24px 24px;
    font-size: 18px;
    line-height: 1.45;
}

.faq-list summary::after {
    right: 22px;
    width: 34px;
    height: 34px;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.14), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.faq-list details[open] summary::after {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.22), rgba(229, 185, 0, 0.1));
    color: #ffe27a;
}

.faq-list details p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .reviews-warning__inner {
        padding: 24px;
        border-radius: 22px;
    }

    .reviews-warning__inner .button {
        width: 100%;
    }

    .faq-list summary {
        padding: 20px 62px 20px 20px;
        font-size: 16px;
    }

    .faq-list details p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}
