/* ═══════════════════════════════════════════════
   JugarTop10 — Style Sheet
   Fonts: Space Grotesk + Inter
   Palette: Purple, Blue, Teal on Dark Navy
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
    --purple: #9b59b6;
    --purple-light: #b97fd4;
    --purple-dark: #7b3f9e;
    --blue: #3b5bdb;
    --blue-light: #5c7cfa;
    --teal: #00bcd4;
    --teal-light: #26c6da;
    --teal-dark: #0097a7;

    --bg-primary: #0b0e1a;
    --bg-secondary: #101428;
    --bg-tertiary: #161b33;
    --bg-card: #1a1f3a;
    --bg-card-hover: #1f2545;

    --text-primary: #e8e9f0;
    --text-secondary: #a0a3b5;
    --text-muted: #6b6f85;

    --border-color: rgba(155, 89, 182, 0.15);
    --border-color-strong: rgba(155, 89, 182, 0.3);

    --gradient-main: linear-gradient(135deg, var(--purple), var(--blue), var(--teal));
    --gradient-accent: linear-gradient(135deg, var(--purple), var(--teal));
    --gradient-card: linear-gradient(145deg, var(--bg-card), var(--bg-tertiary));
    --gradient-score: linear-gradient(135deg, var(--teal-dark), var(--teal));

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(155, 89, 182, 0.15);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-max: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.25s ease;
}
a:hover {
    color: var(--teal-light);
}

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

ul, ol {
    padding-left: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--text-primary);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(11, 14, 26, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
}

.header-logo svg {
    width: 36px;
    height: 36px;
}

.header-logo span.logo-accent {
    color: var(--teal);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding: 0;
}

.header-nav a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.25s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: var(--text-primary);
}
.header-nav a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile nav */
@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        border-left: 1px solid var(--border-color);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 30px rgba(0,0,0,0.4);
    }
    .header-nav.open {
        right: 0;
    }
    .header-nav a {
        font-size: 1.1rem;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Body offset for fixed header */
body {
    padding-top: var(--header-height);
}

/* ═══════════════════════════════════════════════
   HERO / INTRO (index)
   ═══════════════════════════════════════════════ */
.hero-intro {
    position: relative;
    padding: 80px 0 100px;
    text-align: center;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-intro::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155,89,182,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(155,89,182,0.1);
    border: 1px solid rgba(155,89,182,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--purple-light);
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-intro h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    max-width: 780px;
    margin: 0 auto 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-divider svg {
    width: 100%;
    height: 60px;
}

/* ═══════════════════════════════════════════════
   RATING SECTION
   ═══════════════════════════════════════════════ */
.rating-section {
    position: relative;
    padding: 60px 0 100px;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 0.95rem;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Offer Card — Hexagonal score, asymmetric layout */
.offer-card {
    display: grid;
    grid-template-columns: 50px 120px 1fr auto auto;
    align-items: center;
    gap: 20px;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-color-strong);
}
.offer-card:hover::before {
    opacity: 1;
}

.offer-rank {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--purple-light);
    text-align: center;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(155,89,182,0.1);
    border: 2px solid rgba(155,89,182,0.2);
    flex-shrink: 0;
}

.offer-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    padding: 6px;
    flex-shrink: 0;
}

.offer-info {
    min-width: 0;
}

.offer-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.offer-bonus {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.offer-score-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.offer-score {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-score);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
}

.offer-score-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.offer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.btn-see-more {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border-color-strong);
    color: var(--text-primary);
    background: transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.btn-see-more:hover {
    background: rgba(155,89,182,0.1);
    border-color: var(--purple);
    color: var(--purple-light);
}

.btn-view-operator {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    background: rgba(0,188,212,0.1);
    border: 1px solid rgba(0,188,212,0.25);
    color: var(--teal-light);
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.btn-view-operator:hover {
    background: rgba(0,188,212,0.18);
    border-color: var(--teal);
}

.offer-card-disclaimer {
    grid-column: 1 / -1;
    font-size: 0.72rem;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    line-height: 1.5;
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.section-divider svg {
    width: 100%;
    height: 50px;
}

/* ═══════════════════════════════════════════════
   PRE-FOOTER SECTION
   ═══════════════════════════════════════════════ */
.prefooter-section {
    padding: 60px 0 40px;
    background: var(--bg-secondary);
}

.prefooter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.prefooter-block {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
}

.prefooter-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.prefooter-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.prefooter-block p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.prefooter-block a {
    color: var(--teal);
}

/* ═══════════════════════════════════════════════
   REGULATORS ROW
   ═══════════════════════════════════════════════ */
.regulators-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 0 0;
}

.regulator-link {
    display: inline-block;
    transition: opacity 0.25s ease;
    opacity: 0.7;
}
.regulator-link:hover {
    opacity: 1;
}

.regulator-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.85);
    transition: filter 0.25s ease;
}
.regulator-link:hover .regulator-img {
    filter: brightness(1);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.footer-brand .footer-logo svg {
    width: 32px;
    height: 32px;
}
.footer-brand .footer-logo span.logo-accent {
    color: var(--teal);
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-nav-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
}
.footer-nav-list li {
    margin-bottom: 10px;
}
.footer-nav-list a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-nav-list a:hover {
    color: var(--teal);
    padding-left: 4px;
}

.footer-regulators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-badge-18 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #e74c3c;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #e74c3c;
    flex-shrink: 0;
}

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

.footer-disclaimer {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px 30px;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

/* ═══════════════════════════════════════════════
   PAGE HERO (subpages)
   ═══════════════════════════════════════════════ */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero .hero-subtitle {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   CONTENT SECTION
   ═══════════════════════════════════════════════ */
.content-section {
    padding: 50px 0;
    background: var(--bg-primary);
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.content-grid-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: border-color 0.3s ease;
}
.about-card:hover {
    border-color: var(--border-color-strong);
}

.about-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.about-card p,
.about-card li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.values-list, .criteria-list {
    list-style: none;
    padding: 0;
}
.values-list li, .criteria-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
.values-list li::before, .criteria-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.contact-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-note {
    background: rgba(155,89,182,0.06);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-top: 8px;
}
.contact-note p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 7px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(155,89,182,0.1);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0a3b5' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--purple);
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}
.form-checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    flex: 1;
}

.form-error {
    display: none;
    font-size: 0.78rem;
    color: #e74c3c;
    margin-top: 5px;
}
.form-group.has-error .form-error {
    display: block;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--gradient-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
    min-width: 180px;
}
.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    margin-top: 18px;
    padding: 16px 20px;
    background: rgba(0,188,212,0.1);
    border: 1px solid rgba(0,188,212,0.25);
    border-radius: var(--radius-sm);
    color: var(--teal-light);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════ */
.legal-section {
    padding-bottom: 60px;
}

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

.legal-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   RESPONSIBLE — Resources Grid
   ═══════════════════════════════════════════════ */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.resource-card:hover {
    border-color: var(--border-color-strong);
}

.resource-card img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.resource-card-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.resource-card a {
    font-size: 0.82rem;
    color: var(--teal);
}

/* ═══════════════════════════════════════════════
   OFFER DETAIL PAGES
   ═══════════════════════════════════════════════ */
.offer-hero {
    padding: 40px 0 30px;
    background: var(--bg-primary);
}

.back-link {
    display: inline-block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    transition: color 0.25s ease;
}
.back-link:hover {
    color: var(--teal);
}

.offer-hero-card {
    text-align: center;
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    max-width: 600px;
    margin: 0 auto;
}

.offer-hero-card img {
    margin: 0 auto 24px;
}

.offer-hero-card h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-tagline {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.offer-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.offer-description h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-description p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.offer-details-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
}

.offer-details-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(155,89,182,0.08);
}
.detail-row:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.detail-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

.detail-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
}

.btn-official {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: rgba(0,188,212,0.1);
    border: 1px solid rgba(0,188,212,0.25);
    border-radius: 50px;
    color: var(--teal-light);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.25s ease;
    margin-bottom: 16px;
}
.btn-official:hover {
    background: rgba(0,188,212,0.18);
    border-color: var(--teal);
    color: var(--teal-light);
}

.offer-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   AGE VERIFICATION POPUP
   ═══════════════════════════════════════════════ */
.age-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(5, 7, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.age-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
}

.age-modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
}
.age-modal-logo svg {
    width: 32px;
    height: 32px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 4px solid #e74c3c;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: #e74c3c;
    margin: 20px 0;
}

.age-modal h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.age-modal p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.age-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.age-btn-confirm {
    padding: 14px 32px;
    background: var(--gradient-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.25s ease;
}
.age-btn-confirm:hover {
    opacity: 0.9;
}

.age-btn-exit {
    padding: 14px 32px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid var(--border-color-strong);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.age-btn-exit:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* ═══════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    max-width: 420px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.5s ease forwards;
}

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

.cookie-banner h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-banner p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-banner a {
    color: var(--teal);
}

.cookie-btn-accept {
    padding: 10px 28px;
    background: var(--gradient-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: opacity 0.25s ease;
}
.cookie-btn-accept:hover {
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ── 1024px ── */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-top > *:first-child {
        grid-column: 1 / -1;
    }
    .offer-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ── 768px ── */
@media (max-width: 768px) {
    .offer-card {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 20px;
    }
    .offer-logo {
        grid-column: 1 / -1;
        width: 100px;
        height: 50px;
        margin: 0 auto;
    }
    .offer-info {
        grid-column: 1 / -1;
        text-align: center;
    }
    .offer-score-wrapper {
        grid-column: 1 / -1;
        justify-self: center;
    }
    .offer-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
    }
    .offer-rank {
        grid-column: 1 / -1;
        justify-self: center;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .prefooter-grid {
        grid-template-columns: 1fr;
    }
    .content-grid-about {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .hero-stats {
        gap: 28px;
    }
    .hero-intro {
        padding: 50px 0 80px;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {
    .hero-intro h1 {
        font-size: 1.6rem;
    }
    .age-modal {
        padding: 32px 24px;
    }
    .age-buttons {
        flex-direction: column;
    }
    .cookie-banner {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 12px;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .offer-hero-card {
        padding: 32px 20px;
    }
}

/* ── 320px ── */
@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    .container {
        padding: 0 12px;
    }
    .hero-intro h1 {
        font-size: 1.4rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
}