/* Base styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #ffbc35;
    --primary-soft: #ffe2a3;
    --primary-deep: #f39b00;
    --bg: #020617;
    --bg-alt: #0b1220;
    --bg-card: #0f172a;
    --bg-card-soft: #020617;
    --border-subtle: rgba(148, 163, 184, 0.35);
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --accent-green: #4ade80;
    --accent-red: #f97373;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    --transition-fast: 160ms ease-out;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Roboto", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 188, 53, 0.16), transparent 60%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.12), transparent 55%),
        linear-gradient(145deg, #020617 0%, #020617 35%, #020617 100%);
    color: var(--text-main);
    line-height: 1.6;
}
.background {
    background: url("../img/background.jpg");
    background-size: cover;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}
/* Layout */
.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.75));
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-mark {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 24%;
    color: #0b1120;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.85),
        0 16px 30px rgba(0, 0, 0, 0.7);
}
.logo-mark img {
    width: 100%;
}
.logo-block {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.logo-block a {
    height: 50px;
    display: block;
    border: 1px solid #fff2;
    background: #0002;
    border-radius: 5px;
    padding: 7px
}
.logo-block a img {
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-top {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 1.25rem;
}

.main-nav a {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid transparent;
    transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.main-nav a:hover {
    color: #fefce8;
    border-color: rgba(255, 188, 53, 0.7);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    padding: 3.5rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    gap: 2.75rem;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 188, 53, 0.55);
    background: radial-gradient(circle at 0% 0%, rgba(255, 251, 235, 0.09), rgba(15, 23, 42, 0.9));
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fef9c3;
    margin-bottom: 0.85rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 2.7vw, 2.6rem);
    line-height: 1.1;
    margin: 0 0 0.8rem;
    letter-spacing: 0.02em;
}

.hero p {
    margin: 0 0 0.9rem;
    color: var(--text-muted);
    max-width: 36rem;
    font-size: 0.98rem;
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.4rem;
    display: grid;
    gap: 0.35rem;
}

.hero-list li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: radial-gradient(circle at 0 0, #fef9c3, #f59e0b);
    box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.15);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero side card */
.hero-card {
    background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.04), transparent 55%),
                linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.45);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background:
        conic-gradient(from 210deg, rgba(255, 188, 53, 0.14), transparent 18%, transparent 48%, rgba(52, 211, 153, 0.1), transparent 72%, rgba(56, 189, 248, 0.09), transparent 100%);
    opacity: 0.7;
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.hero-stats-title {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
    margin-bottom: 0.9rem;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.hero-stat {
    padding: 0.7rem 0.8rem;
    border-radius: 0.9rem;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.55);
    backdrop-filter: blur(10px);
}

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

.hero-stat-value {
    display: block;
    font-size: 0.96rem;
    font-weight: 600;
    margin-top: 0.22rem;
}

.hero-card-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
    background: radial-gradient(circle at 0 0, #fefce8, #fde68a, #f97316);
    color: #0b1120;
    box-shadow:
        0 10px 25px rgba(251, 191, 36, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.85);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 40px rgba(251, 191, 36, 0.7),
        0 0 0 1px rgba(15, 23, 42, 0.9);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 188, 53, 0.7);
    color: #facc15;
}

.btn-outline:hover {
    background: rgba(250, 204, 21, 0.08);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.35);
    color: var(--text-muted);
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.6);
}

/* Sections */
.section {
    padding: 2.75rem 0 2.6rem;
    position: relative;
}

.section-alt {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
}

.section-header {
    max-width: 46rem;
    margin: 0 auto 1.9rem;
    text-align: center;
}

.section-header h2 {
    font-size: 1.6rem;
    margin: 0 0 0.75rem;
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Offer card */
.offer-card {
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.04), transparent 50%),
                linear-gradient(135deg, #020617, #020617);
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 1.6rem 1.5rem 1.7rem;
    box-shadow: var(--shadow-soft);
}

.offer-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 1.3rem;
}

.offer-header h3 {
    margin: 0 0 0.4rem;
    font-size: 1.3rem;
}

.offer-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    max-width: 30rem;
}

.offer-rating {
    text-align: right;
}

.stars {
    font-size: 1.1rem;
    color: #facc15;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.star-muted {
    color: rgba(148, 163, 184, 0.7);
}

.rating-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.offer-body {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    gap: 1.9rem;
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.6);
}

.offer-col h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.feature-list {
    margin: 0 0 0.75rem;
    padding-left: 1.1rem;
    color: var(--text-main);
    font-size: 0.9rem;
}

.feature-list li + li {
    margin-top: 0.25rem;
}

.offer-note {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.35rem 0 1.1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 188, 53, 0.6);
    color: #fef9c3;
}

.offer-cta .btn {
    margin-bottom: 0.35rem;
}

.offer-link-note {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Info banner */
.info-banner {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    padding: 0.85rem 1rem;
    background: rgba(15, 23, 42, 0.96);
    border: 1px dashed rgba(148, 163, 184, 0.65);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Grid / cards */
.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 1.7rem;
}

.card {
    background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.04), transparent 50%),
                linear-gradient(135deg, #020617, #020617);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 1.25rem 1.2rem 1.3rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.7);
}

.card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
}

.card p {
    margin: 0 0 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.card-note {
    font-size: 0.83rem;
    color: var(--text-muted);
}

/* Bullet list */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
}

.bullet-list li {
    position: relative;
    padding-left: 1.3rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.bullet-list li + li {
    margin-top: 0.25rem;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0.25rem;
    top: -0.05rem;
    color: #facc15;
}

/* Chart */
.chart-intro {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.chart-wrapper {
    margin: 0.7rem 0 0.6rem;
    padding: 0.6rem;
    border-radius: 1rem;
    background: radial-gradient(circle at top, rgba(30, 64, 175, 0.36), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(129, 140, 248, 0.5);
}

.chart-legend {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.legend-dot {
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    margin-right: 0.4rem;
    border: 1px solid rgba(15, 23, 42, 0.9);
}

.legend-1 { background: #facc15; }
.legend-2 { background: #4ade80; }
.legend-3 { background: #38bdf8; }
.legend-4 { background: #fb7185; }
.legend-5 { background: #a855f7; }

/* FAQ */
.faq-list {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.2rem;
}

.faq-item {
    padding: 1.05rem 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.65);
}

.faq-item h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.section-banner {
    margin-top: 1.4rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(30, 64, 175, 0.9);
    border: 1px solid rgba(129, 140, 248, 0.8);
    font-size: 0.85rem;
}

/* Legal summaries */
.section-legal {
    background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
}

.legal-bottom {
    margin-top: 1.5rem;
}

/* Footer */
.site-footer {
    position: relative;
    padding: 2.2rem 0 1.6rem;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 1));
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.footer-main {
    max-width: 44rem;
}

.footer-text {
    margin: 0 0 0.6rem;
    font-size: 0.86rem;
    color: var(--text-muted);
}

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

.warning-age {
    height: 50px;
    width: 50px;
    border: 2px solid #f00;
    background: #0002;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.footer-links-group h4 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.footer-links-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    align-items: center;
}


.footer-links-group a {
    font-size: 0.85rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    justify-content: space-between;
    padding-top: 0.7rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.55);
}

.footer-badge {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    border: 2px solid rgba(239, 68, 68, 0.8);
    color: #fecaca;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.75);
    background: #0002;
}

.footer-copy {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Age overlay */
.age-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 1.25rem;
}

.age-overlay.hidden {
    display: none;
}

.age-modal {
    max-width: 30rem;
    width: 100%;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
    border-radius: 1.6rem;
    padding: 1.7rem 1.5rem 1.5rem;
    border: 1px solid rgba(248, 113, 113, 0.8);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
    position: relative;
    overflow: hidden;
}

.age-modal::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        conic-gradient(from 180deg, rgba(248, 113, 113, 0.2), transparent 20%, transparent 40%, rgba(248, 250, 252, 0.08), transparent 70%, rgba(248, 113, 113, 0.2), transparent 100%);
    opacity: 0.65;
    mix-blend-mode: screen;
}

.age-modal > * {
    position: relative;
    z-index: 1;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0, #fee2e2, #b91c1c);
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.85),
        0 14px 32px rgba(248, 113, 113, 0.7);
    font-weight: 800;
    color: #fef2f2;
    margin-bottom: 0.7rem;
}

.age-modal h2 {
    margin: 0 0 0.7rem;
    font-size: 1.25rem;
}

.age-modal p {
    margin: 0 0 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.age-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
}

.age-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.legal-container {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    padding: 35px 40px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 188, 53, 0.25);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: #e5e7eb;
    line-height: 1.7;
}

/* Headings */
.legal-container h1 {
    font-size: 2rem;
    margin-bottom: 18px;
    color: #ffbc35;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.legal-container h2 {
    font-size: 1.35rem;
    margin-top: 35px;
    color: #fef9c3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-left: 4px solid #ffbc35;
    padding-left: 12px;
}

.legal-container h3 {
    font-size: 1.15rem;
    margin-top: 28px;
    color: #ffe8a3;
}

/* Paragraphs */
.legal-container p {
    margin: 14px 0;
    font-size: 1rem;
    color: #e5e7eb;
}

/* Lists */
.legal-container ul {
    margin: 12px 0 12px 18px;
    padding: 0;
}

.legal-container ul li {
    margin: 6px 0;
    color: #d1d5db;
}

/* Highlighted boxes */
.legal-box {
    border-left: 4px solid #ffbc35;
    padding: 12px 16px;
    margin: 20px 0;
    background: rgba(255, 188, 53, 0.08);
    border-radius: 6px;
    font-size: 0.95rem;
}

/* Date */
.legal-date {
    margin-top: 30px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 188, 53, 0.12);
    border: 1px solid rgba(255, 188, 53, 0.25);
    color: #ffdd99;
    font-size: 0.95rem;
}

/* Links */
.legal-container a {
    color: #ffbc35;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #ffd67b;
}

/* Mobile */
@media (max-width: 600px) {
    .legal-container {
        padding: 25px;
        margin: 30px auto;
    }
}

/* Responsive */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        margin-bottom: 1.5rem;
    }

    .offer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .offer-rating {
        text-align: left;
    }

    .offer-body {
        grid-template-columns: minmax(0, 1fr);
    }

    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.65rem 1.3rem;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .offer-card {
        padding: 1.3rem 1.1rem 1.3rem;
    }

    .card {
        padding: 1.1rem 1rem 1.1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.4rem;
    }

    .age-modal {
        padding: 1.5rem 1.3rem 1.35rem;
    }
}
