/* ============================================================
   Сasinoslista AR — styles.css
   Unique class namespace: ar-* / rc-*
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --rc-primary:      #1A56A0;
    --rc-primary-dk:   #134180;
    --rc-primary-lt:   #E8F0FD;
    --rc-text:         #1F2937;
    --rc-muted:        #6B7280;
    --rc-border:       #E5E7EB;
    --rc-surface:      #FFFFFF;
    --rc-bg:           #F9FAFB;
    --rc-bg-alt:       #F3F6FB;
    --rc-warn:         #D97706;
    --rc-ok:           #059669;
    --rc-shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
    --rc-shadow:       0 4px 18px rgba(0,0,0,0.09);
    --rc-shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
    --rc-radius:       10px;
    --rc-radius-lg:    16px;
    --rc-header-h:     4.5rem;
    --rc-px:           1.5rem;
    --rc-section-py:   5rem;
    --rc-font-body:    'Inter', sans-serif;
    --rc-font-heading: 'Playfair Display', serif;
    --rc-transition:   0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--rc-font-body);
    color: var(--rc-text);
    background: var(--rc-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
ul { list-style: none; }
a { text-decoration: none; color: var(--rc-primary); transition: color var(--rc-transition); }
a:hover { color: var(--rc-primary-dk); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 {
    font-family: var(--rc-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--rc-text);
}

/* ── Layout: Wrapper ─────────────────────────────────────────── */
.ar-wrapper {
    max-width: 1160px;
    margin: 0 auto;
    padding-left: var(--rc-px);
    padding-right: var(--rc-px);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.ar-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--rc-radius);
    font-family: var(--rc-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all var(--rc-transition);
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1.4;
}
.ar-btn--main {
    background: var(--rc-primary);
    color: #fff;
    border-color: var(--rc-primary);
}
.ar-btn--main:hover {
    background: var(--rc-primary-dk);
    border-color: var(--rc-primary-dk);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,86,160,0.25);
}
.ar-btn--outline {
    background: transparent;
    color: var(--rc-text);
    border-color: var(--rc-border);
}
.ar-btn--outline:hover {
    background: var(--rc-text);
    color: #fff;
    border-color: var(--rc-text);
}
.ar-btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.ar-btn--outline-white:hover {
    background: #fff;
    color: var(--rc-text);
    border-color: #fff;
}
.ar-btn--muted {
    background: var(--rc-bg-alt);
    color: var(--rc-muted);
    border-color: var(--rc-border);
}
.ar-btn--muted:hover {
    background: var(--rc-border);
    color: var(--rc-text);
}
.ar-btn--sm { padding: 0.5rem 1.2rem; font-size: 0.875rem; }

/* ── Block heading ───────────────────────────────────────────── */
.ar-block-heading {
    text-align: center;
    margin-bottom: 3rem;
}
.ar-block-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: var(--rc-text);
}
.ar-block-subtitle {
    font-family: var(--rc-font-body);
    font-size: 1.05rem;
    color: var(--rc-muted);
    max-width: 580px;
    margin: 0 auto;
    font-weight: 400;
}

/* ── Content Block (section wrapper) ────────────────────────── */
.ar-content-block {
    padding: var(--rc-section-py) 0;
}
.ar-bg-subtle { background: var(--rc-bg-alt); }
.ar-bg-white  { background: var(--rc-surface); }

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════════ */
.ar-site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--rc-surface);
    box-shadow: 0 1px 0 var(--rc-border), var(--rc-shadow-sm);
    z-index: 200;
    height: var(--rc-header-h);
}
.ar-nav-bar {
    height: var(--rc-header-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ar-nav-brand {
    font-family: var(--rc-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rc-primary);
    letter-spacing: -0.02em;
}
.ar-nav-brand:hover { color: var(--rc-primary-dk); }

.ar-nav-panel { display: flex; align-items: center; }
.ar-nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.ar-nav-link {
    font-family: var(--rc-font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rc-text);
    position: relative;
    padding-bottom: 0.3rem;
}
.ar-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--rc-primary);
    transition: width var(--rc-transition);
}
.ar-nav-link:hover { color: var(--rc-primary); }
.ar-nav-link:hover::after,
.ar-nav-link.is-active::after { width: 100%; }

.ar-nav-toggle,
.ar-nav-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--rc-text);
    padding: 0.25rem;
    line-height: 1;
}

@media (max-width: 820px) {
    .ar-nav-panel {
        position: fixed;
        top: 0; right: -100%;
        width: min(75vw, 300px);
        height: 100%;
        background: var(--rc-surface);
        box-shadow: -4px 0 20px rgba(0,0,0,0.12);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        z-index: 300;
    }
    .ar-nav-panel.is-open { right: 0; }
    .ar-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }
    .ar-nav-link { font-size: 1.1rem; }
    .ar-nav-toggle { display: block; }
    .ar-nav-close {
        display: block;
        position: absolute;
        top: 1.25rem; right: 1.5rem;
        font-size: 1.5rem;
    }
}

/* Mobile menu overlay */
.ar-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 250;
}
.ar-nav-backdrop.is-open { display: block; }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.ar-hero-panel {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('/assets/images/hero-argentina-premium.webp') no-repeat center center / cover;
    background-color: #0d1b35; /* fallback */
}
.ar-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,20,40,0.65) 0%, rgba(10,20,40,0.75) 100%);
}
.ar-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}
.ar-hero-content h1 {
    font-family: var(--rc-font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.ar-hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.88;
    margin-bottom: 2.25rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
.ar-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════════ */
.ar-about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}
.ar-about-text p { margin-bottom: 1.1rem; color: var(--rc-text); }
.ar-about-text p:last-child { margin-bottom: 0; }
.ar-about-checklist {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ar-about-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}
.ar-about-checklist li .fas {
    color: var(--rc-primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.ar-about-visual img {
    border-radius: var(--rc-radius-lg);
    box-shadow: var(--rc-shadow-lg);
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

@media (max-width: 860px) {
    .ar-about-layout { grid-template-columns: 1fr; }
    .ar-about-visual { order: -1; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════════════════ */
.ar-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}
.ar-insight-card {
    background: var(--rc-surface);
    padding: 2rem 1.75rem;
    border-radius: var(--rc-radius);
    box-shadow: var(--rc-shadow-sm);
    border: 1px solid var(--rc-border);
    transition: transform var(--rc-transition), box-shadow var(--rc-transition);
}
.ar-insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rc-shadow);
}
.ar-insight-card__icon {
    font-size: 2rem;
    color: var(--rc-primary);
    margin-bottom: 1rem;
}
.ar-insight-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--rc-primary-lt);
    color: var(--rc-primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.ar-insight-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}
.ar-insight-card p {
    font-size: 0.95rem;
    color: var(--rc-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.ar-process-steps {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}
.ar-step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.ar-step-item:nth-child(even) .ar-step-visual { order: -1; }
.ar-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--rc-primary);
    color: #fff;
    font-family: var(--rc-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
    flex-shrink: 0;
}
.ar-step-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.ar-step-head h3 { font-size: 1.35rem; }
.ar-step-content p { color: var(--rc-muted); line-height: 1.75; }
.ar-step-visual img {
    width: 100%;
    border-radius: var(--rc-radius-lg);
    box-shadow: var(--rc-shadow);
    object-fit: cover;
    max-height: 320px;
}

@media (max-width: 860px) {
    .ar-step-item,
    .ar-step-item:nth-child(even) { grid-template-columns: 1fr; }
    .ar-step-item:nth-child(even) .ar-step-visual { order: 0; }
    .ar-step-visual { order: -1; }
}

/* ═══════════════════════════════════════════════════════════════
   PLATFORM CARDS
═══════════════════════════════════════════════════════════════ */
.ar-platform-grid {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.ar-platform-row {
    background: var(--rc-surface);
    border-radius: var(--rc-radius-lg);
    box-shadow: var(--rc-shadow);
    border: 1px solid var(--rc-border);
    padding: 2rem;
    transition: box-shadow var(--rc-transition);
}
.ar-platform-row:hover { box-shadow: var(--rc-shadow-lg); }
.ar-platform-cols {
    display: grid;
    grid-template-columns: 1.3fr 1.6fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--rc-border);
}
.ar-platform-logo {
    max-width: 150px;
    max-height: 55px;
    object-fit: contain;
    margin-bottom: 1rem;
}
.ar-star-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: var(--rc-warn);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.ar-star-rating span {
    color: var(--rc-muted);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 0.4rem;
}
.ar-platform-brief {
    font-size: 0.875rem;
    color: var(--rc-muted);
    line-height: 1.55;
}
.ar-platform-col h4 {
    font-family: var(--rc-font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--rc-muted);
    margin-bottom: 0.5rem;
}
.ar-platform-col p {
    font-size: 0.9rem;
    color: var(--rc-text);
    line-height: 1.6;
}
.ar-platform-col ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--rc-text);
}
.ar-platform-col ul li {
    padding: 0.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.ar-platform-col ul li::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--rc-primary);
    border-radius: 50%;
    flex-shrink: 0;
}
.ar-platform-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}
.ar-platform-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--rc-muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1060px) {
    .ar-platform-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .ar-platform-cols { grid-template-columns: 1fr; text-align: center; }
    .ar-platform-logo { margin: 0 auto 1rem; }
    .ar-star-rating { justify-content: center; }
    .ar-platform-action { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   METHODOLOGY SECTION
═══════════════════════════════════════════════════════════════ */
.ar-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.ar-method-item {
    background: var(--rc-surface);
    border-left: 4px solid var(--rc-primary);
    padding: 1.5rem;
    border-radius: 0 var(--rc-radius) var(--rc-radius) 0;
    box-shadow: var(--rc-shadow-sm);
}
.ar-method-item h4 {
    font-size: 1rem;
    font-family: var(--rc-font-body);
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--rc-primary);
}
.ar-method-item p { font-size: 0.9rem; color: var(--rc-muted); }

.ar-method-note {
    background: var(--rc-primary-lt);
    border-radius: var(--rc-radius);
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    border-left: 4px solid var(--rc-primary);
}
.ar-method-note p {
    font-size: 0.925rem;
    color: var(--rc-primary-dk);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════
   LOCAL CONTEXT
═══════════════════════════════════════════════════════════════ */
.ar-local-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}
.ar-local-visual img {
    border-radius: var(--rc-radius-lg);
    box-shadow: var(--rc-shadow);
    width: 100%;
    object-fit: cover;
    max-height: 380px;
}
.ar-local-text h2 { margin-bottom: 1rem; }
.ar-local-text p { color: var(--rc-muted); margin-bottom: 0.9rem; }

@media (max-width: 860px) {
    .ar-local-layout { grid-template-columns: 1fr; }
    .ar-local-visual { order: -1; }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════════ */
.ar-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
}
.ar-review-card {
    background: var(--rc-surface);
    border-radius: var(--rc-radius);
    padding: 2rem;
    box-shadow: var(--rc-shadow-sm);
    border: 1px solid var(--rc-border);
    text-align: center;
    transition: box-shadow var(--rc-transition);
}
.ar-review-card:hover { box-shadow: var(--rc-shadow); }
.ar-review-quote {
    font-size: 2.5rem;
    color: var(--rc-primary-lt);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--rc-primary);
    opacity: 0.25;
}
.ar-review-card p {
    font-style: italic;
    color: var(--rc-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.ar-review-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rc-text);
}
.ar-review-meta {
    font-size: 0.82rem;
    color: var(--rc-muted);
    margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.ar-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ar-faq-item {
    background: var(--rc-surface);
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    overflow: hidden;
}
.ar-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--rc-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--rc-text);
    text-align: left;
    gap: 1rem;
    transition: background var(--rc-transition);
}
.ar-faq-question:hover { background: var(--rc-bg); }
.ar-faq-question .ar-faq-icon {
    font-size: 1.2rem;
    color: var(--rc-primary);
    flex-shrink: 0;
    transition: transform var(--rc-transition);
}
.ar-faq-item.is-open .ar-faq-question { background: var(--rc-primary-lt); }
.ar-faq-item.is-open .ar-faq-icon { transform: rotate(45deg); }
.ar-faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--rc-muted);
    line-height: 1.75;
}
.ar-faq-item.is-open .ar-faq-answer { display: block; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.ar-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
}
.ar-contact-info h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.ar-contact-info p { color: var(--rc-muted); margin-bottom: 1rem; font-size: 0.95rem; }

.ar-form-field { margin-bottom: 1.25rem; }
.ar-form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--rc-text);
}
.ar-form-field input,
.ar-form-field select,
.ar-form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--rc-border);
    border-radius: var(--rc-radius);
    font-family: var(--rc-font-body);
    font-size: 0.95rem;
    color: var(--rc-text);
    background: var(--rc-surface);
    transition: border-color var(--rc-transition), box-shadow var(--rc-transition);
    outline: none;
}
.ar-form-field input:focus,
.ar-form-field select:focus,
.ar-form-field textarea:focus {
    border-color: var(--rc-primary);
    box-shadow: 0 0 0 3px rgba(26,86,160,0.1);
}
.ar-form-field textarea { resize: vertical; min-height: 130px; }
.ar-form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.ar-form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; cursor: pointer; }
.ar-form-check label {
    font-size: 0.875rem;
    color: var(--rc-muted);
    cursor: pointer;
    line-height: 1.5;
}
.ar-form-check a { color: var(--rc-primary); }

@media (max-width: 820px) {
    .ar-contact-layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.ar-footer-area {
    background: #111827;
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 0;
    margin-top: 0;
}
.ar-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ar-footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: color var(--rc-transition);
}
.ar-footer-nav a:hover { color: #fff; }

.ar-footer-disclaimer {
    font-size: 0.875rem;
    line-height: 1.7;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ar-footer-disclaimer p { margin-bottom: 0.75rem; }
.ar-footer-disclaimer strong { color: rgba(255,255,255,0.9); }

.ar-footer-bottom {
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.ar-trust-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.ar-trust-logos img {
    height: 28px;
    width: auto;
    opacity: 0.75;
    filter: brightness(0) invert(1);
    transition: opacity var(--rc-transition);
}
.ar-trust-logos a:hover img { opacity: 1; }
.ar-footer-copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════════════════
   18+ AGE GATE
═══════════════════════════════════════════════════════════════ */
.rc-age-gate {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.rc-age-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 25, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.rc-age-gate__card {
    position: relative;
    background: var(--rc-surface);
    border-radius: var(--rc-radius-lg);
    padding: 2.5rem 2rem;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    z-index: 1;
}
.rc-age-gate__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem; height: 3.5rem;
    background: var(--rc-primary);
    color: #fff;
    font-family: var(--rc-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.25rem;
}
.rc-age-gate__title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}
.rc-age-gate__text {
    font-size: 0.95rem;
    color: var(--rc-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
}
.rc-age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.rc-age-gate__actions .ar-btn { width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════════ */
.rc-cookie-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #1F2937;
    color: rgba(255,255,255,0.85);
    z-index: 8000;
    padding: 1.25rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.rc-cookie-bar__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--rc-px);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.rc-cookie-bar__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 200px;
}
.rc-cookie-bar__text strong { color: #fff; font-size: 0.95rem; }
.rc-cookie-bar__text small { font-size: 0.82rem; opacity: 0.75; }
.rc-cookie-bar__text a { color: #93c5fd; }
.rc-cookie-bar__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Cookie prefs modal */
.rc-prefs-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}
.rc-prefs-modal__card {
    background: var(--rc-surface);
    border-radius: var(--rc-radius-lg);
    padding: 2.5rem 2rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 16px 60px rgba(0,0,0,0.35);
}
.rc-prefs-modal__card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.rc-prefs-modal__card > p { font-size: 0.9rem; color: var(--rc-muted); margin-bottom: 1.5rem; }
.rc-pref-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.rc-pref-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
}
.rc-pref-item h4 { font-size: 0.95rem; margin-bottom: 0.2rem; font-family: var(--rc-font-body); }
.rc-pref-item p { font-size: 0.82rem; color: var(--rc-muted); }

/* Toggle switch */
.rc-toggle { position: relative; display: inline-block; width: 2.5rem; height: 1.4rem; flex-shrink: 0; }
.rc-toggle input { opacity: 0; width: 0; height: 0; }
.rc-toggle__slider {
    position: absolute;
    inset: 0;
    background: var(--rc-border);
    border-radius: 50px;
    cursor: pointer;
    transition: background var(--rc-transition);
}
.rc-toggle__slider::before {
    content: '';
    position: absolute;
    height: 1rem; width: 1rem;
    left: 3px; bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--rc-transition);
}
.rc-toggle input:checked + .rc-toggle__slider { background: var(--rc-primary); }
.rc-toggle input:checked + .rc-toggle__slider::before { transform: translateX(1.1rem); }
.rc-toggle input:disabled + .rc-toggle__slider { opacity: 0.5; cursor: not-allowed; }

.rc-prefs-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.rc-prefs-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--rc-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hidden helper */
.rc-hidden { display: none !important; }

/* Body lock when popup open */
html.rc-scroll-lock body { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES
═══════════════════════════════════════════════════════════════ */
.ar-page-banner {
    background: linear-gradient(135deg, var(--rc-primary) 0%, #1e3a6e 100%);
    color: #fff;
    padding: 3.5rem 0;
    text-align: center;
}
.ar-page-banner h1 {
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 0.5rem;
}
.ar-page-banner p {
    opacity: 0.8;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.ar-prose {
    max-width: 800px;
    margin: 0 auto;
}
.ar-prose h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 0.75rem;
}
.ar-prose h3 {
    font-size: 1.2rem;
    margin: 2rem 0 0.5rem;
    font-family: var(--rc-font-body);
    font-weight: 700;
}
.ar-prose p {
    color: var(--rc-muted);
    margin-bottom: 1rem;
    font-size: 0.975rem;
    line-height: 1.8;
}
.ar-prose ul, .ar-prose ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--rc-muted);
    font-size: 0.975rem;
    line-height: 1.8;
}
.ar-prose ul { list-style: disc; }
.ar-prose ol { list-style: decimal; }
.ar-prose li { margin-bottom: 0.5rem; }
.ar-prose strong { color: var(--rc-text); }
.ar-prose a { color: var(--rc-primary); }
.ar-prose a:hover { color: var(--rc-primary-dk); }

/* Score / criteria table */
.ar-criteria-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}
.ar-criteria-table th,
.ar-criteria-table td {
    padding: 0.85rem 1rem;
    border: 1px solid var(--rc-border);
    text-align: left;
}
.ar-criteria-table th {
    background: var(--rc-primary-lt);
    color: var(--rc-primary-dk);
    font-weight: 700;
}
.ar-criteria-table tr:nth-child(even) td { background: var(--rc-bg); }

/* Thank You page */
.ar-thankyou {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
}
.ar-thankyou__icon {
    width: 4.5rem; height: 4.5rem;
    background: var(--rc-primary-lt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--rc-primary);
}
.ar-thankyou h1 { margin-bottom: 1rem; }
.ar-thankyou p { color: var(--rc-muted); max-width: 440px; margin: 0 auto 2rem; }

/* Responsible Use page */
.ar-signal-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}
.ar-signal-item {
    background: var(--rc-surface);
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    padding: 1.25rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.ar-signal-item .fas {
    color: var(--rc-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.ar-help-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.ar-help-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--rc-border);
    border-radius: var(--rc-radius);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rc-primary);
    background: var(--rc-surface);
    transition: all var(--rc-transition);
}
.ar-help-link:hover {
    background: var(--rc-primary-lt);
    border-color: var(--rc-primary);
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════ */
.ar-text-center { text-align: center; }
.ar-mb-1 { margin-bottom: 1rem; }
.ar-mb-2 { margin-bottom: 2rem; }
.ar-mt-2 { margin-top: 2rem; }

/* ── Print / A11y ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition-duration: 0.01ms !important; }
}
