/*
 * IRIS CASINO - Design System
 * Dark velvet opulent minimalism
 * Mobile-first, no theme switcher
 */

/* ============================================
   DESIGN TOKENS - Dark velvet palette
   RGB 10-30 backgrounds, champagne gold accents
   ============================================ */

:root {
    --background: #101012;
    --foreground: #F5EDE0;
    --card: #1A1A1E;
    --card-foreground: #F5EDE0;
    --popover: #1A1A1E;
    --popover-foreground: #F5EDE0;
    --primary: #F0C84B;
    --primary-foreground: #050505;
    --secondary: #222226;
    --secondary-foreground: #F5EDE0;
    --muted: #2D2D33;
    --muted-foreground: #B8B8C0;
    --accent: #C5A572;
    --accent-foreground: #101012;
    --destructive: #EF4444;
    --destructive-foreground: #000000;
    --border: #2D2D33;
    --input: #2D2D33;
    --ring: #C5A572;

    /* Velvet-specific tokens */
    --velvet-bg: #121214;
    --velvet-card: #1C1C20;
    --velvet-elevated: #232328;
    --champagne: #D4AF37;
    --champagne-soft: #C5A572;
    --warm-cream: #F5EDE0;
    --muted-slate: #3A3A40;
    --deep-slate: #2D2D33;
    --rose-gold: #B08570;

    /* Typography */
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing - base 8px unit */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    --space-15: 120px;

    /* Container */
    --container-max: 1200px;
    --container-wide: 1400px;
    --container-pad: 24px;

    /* Transitions */
    --ease-out: 200ms ease-out;
    --ease-lift: 300ms ease-out;
    --ease-expand: 400ms ease-out;

    /* Shadows */
    --shadow-rest: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-cta-hover: 0 0 32px rgba(0,0,0,0.4);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, iframe, embed, object, svg {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--champagne);
    text-decoration: none;
    transition: color var(--ease-out);
}

a:hover {
    color: var(--warm-cream);
}

p a,
li a,
td a,
.card-body a,
.faq-answer a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

p, li, td, th {
    overflow-wrap: break-word;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   Cormorant Garamond display, Manrope body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--warm-cream);
}

h1 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--space-3);
}

h2 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-3);
}

h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: var(--space-2);
}

h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: var(--space-2);
}

p {
    margin-bottom: var(--space-2);
    max-width: 65ch;
}

/* ============================================
   LAYOUT - Container & Section
   ============================================ */

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

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

.section {
    padding: var(--space-8) 0;
    position: relative;
}

.section-pad-lg {
    padding: var(--space-15) 0;
}

.text-center {
    text-align: center;
}

/* ============================================
   HEADER - Fixed translucent with blur
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    background: rgba(16, 16, 18, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--muted-slate);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-brand .logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--warm-cream);
    letter-spacing: -0.01em;
}

.primary-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    flex-direction: column;
    padding: var(--space-3);
    overflow-y: auto;
}

.primary-nav.is-open {
    display: flex;
    visibility: visible;
    opacity: 1;
    top: 60px;
    height: calc(100vh - 60px);
    min-height: 240px;
    transform: translateX(0);
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: var(--space-4);
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 var(--space-2);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--warm-cream);
    border-bottom: 1px solid var(--muted-slate);
}

.nav-link:hover {
    color: var(--champagne);
}

.nav-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: auto;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 var(--space-3);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--warm-cream);
    border: 1px solid var(--muted-slate);
    border-radius: 6px;
    transition: border-color var(--ease-out), color var(--ease-out);
}

.btn-login:hover {
    border-color: var(--champagne);
    color: var(--champagne);
}

.btn-register {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 var(--space-3);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-foreground);
    background: var(--primary);
    border-radius: 6px;
    transition: background var(--ease-out), box-shadow var(--ease-out);
}

.btn-register:hover {
    background: var(--champagne-soft);
    color: var(--primary-foreground);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Mobile menu toggle (hamburger) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--warm-cream);
    border-radius: 2px;
    transition: transform var(--ease-out), opacity var(--ease-out);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MAIN CONTENT - Offset for fixed header
   ============================================ */

#main-content {
    padding-top: 60px;
    min-height: 60vh;
}

/* ============================================
   HERO - Dark velvet with spotlight
   ============================================ */

.hero {
    position: relative;
    padding: var(--space-8) 0 var(--space-10);
    background: var(--velvet-bg);
    overflow: clip;
}

.hero-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    max-width: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: spotlight-pulse 4s ease-in-out infinite;
}

@keyframes spotlight-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.hero-text {
    max-width: 65ch;
}

.hero-image {
    position: relative;
    width: 100%;
    min-width: 0;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.hero-bonus {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.hero-bonus-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--champagne);
    line-height: 1;
}

.hero-bonus-label {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
}

/* ============================================
   STAT BLOCK - Large champagne-gold numbers
   ============================================ */

.stat-block {
    background: var(--velvet-card);
    border: 1px solid var(--muted-slate);
    border-radius: 8px;
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 500;
    color: var(--champagne);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--muted-foreground);
    text-align: center;
}

/* ============================================
   INFO CARD GRID - Warm charcoal cards
   ============================================ */

.info-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.info-card {
    background: var(--velvet-card);
    border: 1px solid var(--muted-slate);
    border-radius: 8px;
    padding: var(--space-3);
    min-width: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms ease-out, box-shadow var(--ease-lift), border-color var(--ease-lift);
}

.info-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.info-card:hover {
    border-color: var(--champagne-soft);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: var(--space-2);
    color: var(--champagne);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
}

.card-heading {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--warm-cream);
    margin-bottom: var(--space-2);
}

.card-body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.card-body p {
    margin-bottom: var(--space-2);
}

.card-details {
    margin-top: var(--space-2);
    padding-top: var(--space-2);
    border-top: 1px solid var(--muted-slate);
}

.card-details li {
    padding: 6px 0;
    font-size: 15px;
    color: var(--muted-foreground);
    position: relative;
    padding-left: var(--space-2);
}

.card-details li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--champagne);
    font-size: 12px;
}

/* ============================================
   FAQ ACCORDION - Expandable bordered rows
   ============================================ */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-row {
    background: var(--velvet-card);
    border: 1px solid var(--muted-slate);
    border-bottom: none;
    transition: border-color var(--ease-out);
}

.faq-row:last-child {
    border-bottom: 1px solid var(--muted-slate);
}

.faq-row[open] {
    border-left: 2px solid var(--champagne);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    padding: var(--space-3);
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--warm-cream);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question-text {
    flex: 1;
    min-width: 0;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--champagne);
    transition: transform var(--ease-expand);
    display: flex;
    align-items: center;
}

.faq-row[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-3) var(--space-3);
    overflow: hidden;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: var(--space-2);
}

/* ============================================
   CTA BANNER - Full-bleed conversion section
   ============================================ */

.cta-banner {
    position: relative;
    padding: var(--space-8) var(--container-pad);
    background: var(--velvet-bg);
    text-align: center;
    overflow: clip;
    margin: 0;
}

.cta-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    max-width: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.cta-heading {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--warm-cream);
    max-width: 20ch;
}

.cta-subtext {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 50ch;
    margin-bottom: var(--space-2);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 var(--space-5);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: #050505;
    background: var(--primary);
    border-radius: 6px;
    transition: background var(--ease-out), box-shadow var(--ease-out), color var(--ease-out);
}

.btn-cta:hover {
    background: #E4BE45;
    color: #050505;
    box-shadow: var(--shadow-cta-hover);
}

.cta-micro {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--muted-foreground);
    margin-top: var(--space-1);
}

/* ============================================
   SUMMARY BOX - Key takeaways container
   ============================================ */

.summary-box {
    background: var(--velvet-card);
    border: 1px solid var(--champagne-soft);
    border-radius: 8px;
    padding: var(--space-4);
    margin: var(--space-4) 0;
}

.summary-heading {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--champagne);
    margin-bottom: var(--space-2);
}

.summary-list li {
    padding: 8px 0 8px var(--space-3);
    position: relative;
    font-size: 16px;
    color: var(--foreground);
}

.summary-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--champagne);
}

/* ============================================
   CALLOUT BOX - Inline highlight block
   ============================================ */

.callout-box {
    border-left: 3px solid var(--champagne);
    background: var(--velvet-elevated);
    padding: var(--space-3);
    margin: var(--space-3) 0;
    border-radius: 0 6px 6px 0;
}

.callout-box.callout-warning {
    border-left-color: var(--rose-gold);
}

.callout-heading {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--warm-cream);
    margin-bottom: var(--space-1);
}

.callout-body {
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   PULL QUOTE - Oversized quote with attribution
   ============================================ */

.pull-quote {
    margin: var(--space-4) 0;
    padding: var(--space-4);
    border-top: 1px solid var(--muted-slate);
    border-bottom: 1px solid var(--muted-slate);
    text-align: center;
}

.pull-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    color: var(--warm-cream);
    max-width: 40ch;
    margin: 0 auto var(--space-2);
    line-height: 1.4;
}

.pull-quote cite {
    font-family: var(--font-body);
    font-size: 15px;
    font-style: normal;
    color: var(--muted-foreground);
}

/* ============================================
   TRUST BADGES - Grayscale horizontal row
   ============================================ */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    align-items: center;
    justify-content: center;
    padding: var(--space-3) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-2);
    background: var(--velvet-card);
    border: 1px solid var(--muted-slate);
    border-radius: 6px;
    min-width: 0;
}

.trust-badge-icon {
    font-size: 18px;
    color: var(--champagne-soft);
    flex-shrink: 0;
}

.trust-badge-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   PROS & CONS - Two-column comparison
   ============================================ */

.pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin: var(--space-4) 0;
}

.pros-col, .cons-col {
    background: var(--velvet-card);
    border: 1px solid var(--muted-slate);
    border-radius: 8px;
    padding: var(--space-3);
    min-width: 0;
}

.pros-heading {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--champagne);
    margin-bottom: var(--space-2);
}

.cons-heading {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--rose-gold);
    margin-bottom: var(--space-2);
}

.pros-list li, .cons-list li {
    padding: 8px 0 8px var(--space-3);
    position: relative;
    font-size: 16px;
    color: var(--foreground);
}

.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--champagne);
    font-weight: 700;
}

.cons-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-weight: 700;
}

/* ============================================
   IMAGE BLOCK - Figure with caption
   ============================================ */

.image-block {
    margin: var(--space-3) 0;
}

.image-block img {
    border-radius: 8px;
    display: block;
}

.image-block figcaption {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: var(--space-1);
    font-style: italic;
}

/* ============================================
   TABLES - Structured comparison data
   ============================================ */

.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    margin: var(--space-3) 0;
    border-radius: 8px;
    border: 1px solid var(--muted-slate);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 0;
}

thead {
    background: var(--velvet-elevated);
}

th {
    text-align: left;
    padding: var(--space-2) var(--space-3);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--champagne);
    border-bottom: 1px solid var(--muted-slate);
    white-space: nowrap;
}

td {
    padding: var(--space-2) var(--space-3);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--foreground);
    border-bottom: 1px solid var(--muted-slate);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: var(--velvet-card);
}

/* ============================================
   SCROLL ANIMATION - Fade-in reveal
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
}

/* ============================================
   SITEMAP - Structured page list
   ============================================ */

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--muted-slate);
}

.sitemap-entry {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--muted-slate);
}

.sitemap-entry h3 {
    margin-bottom: var(--space-1);
}

.sitemap-entry h3 a {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--warm-cream);
    text-decoration: none;
}

.sitemap-entry h3 a:hover {
    color: var(--champagne);
}

.sitemap-entry p {
    font-size: 16px;
    color: var(--foreground);
    margin-bottom: 0;
    max-width: 75ch;
}

/* ============================================
   FOOTER - Four columns, stacked mobile
   ============================================ */

.site-footer {
    background: var(--velvet-bg);
    border-top: 1px solid var(--muted-slate);
    padding: var(--space-6) 0 var(--space-4);
}

.footer-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

.footer-brand {
    max-width: 40ch;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-2);
}

.footer-logo .logo {
    width: 32px;
    height: 32px;
}

.footer-license,
.footer-age {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-2);
    line-height: 1.5;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--warm-cream);
    margin-bottom: var(--space-2);
}

.footer-links ul li {
    padding: 6px 0;
}

.footer-links ul li a {
    font-size: 15px;
    color: var(--muted-foreground);
}

.footer-links ul li a:hover {
    color: var(--champagne);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
}

.pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--velvet-card);
    border: 1px solid var(--muted-slate);
    border-radius: 4px;
    font-size: 13px;
    color: var(--muted-foreground);
    filter: grayscale(1);
}

.footer-responsible p {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-2);
}

.footer-copyright {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: var(--space-3);
}

/* ============================================
   RESPONSIVE - Tablet (768px)
   ============================================ */

@media (max-width: 767px) {
    .site-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .primary-nav {
        width: 100vw;
        max-width: 100vw;
        border-top: 1px solid var(--muted-slate);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    }

    .primary-nav.is-open {
        z-index: 1002;
    }

    .nav-list,
    .nav-actions {
        width: 100%;
    }
}

@media (min-width: 768px) {
    :root {
        --container-pad: 48px;
    }

    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }

    .section {
        padding: var(--space-10) 0;
    }

    .section-pad-lg {
        padding: var(--space-15) 0;
    }

    .site-header {
        height: 72px;
    }

    .primary-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        background: transparent;
        padding: 0;
        overflow: visible;
        flex: 1;
        justify-content: center;
    }

    .nav-list {
        flex-direction: row;
        gap: var(--space-4);
        margin-bottom: 0;
    }

    .nav-link {
        border-bottom: none;
        min-height: auto;
        padding: 0;
    }

    .nav-actions {
        flex-direction: row;
        gap: var(--space-2);
        margin-top: 0;
        margin-left: auto;
    }

    .btn-login, .btn-register {
        min-height: 44px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    #main-content {
        padding-top: 72px;
    }

    .hero {
        padding: var(--space-10) 0;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
        gap: var(--space-5);
    }

    .hero-text {
        flex: 4;
    }

    .hero-image {
        flex: 2;
    }

    .hero-bonus-value {
        font-size: 56px;
    }

    .stat-block {
        flex-direction: row;
        justify-content: space-around;
        padding: var(--space-5);
        gap: var(--space-6);
    }

    .stat-item {
        border-right: 1px solid var(--muted-slate);
        padding: 0 var(--space-3);
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-number {
        font-size: 56px;
    }

    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    .info-card {
        padding: var(--space-5);
    }

    .faq-question {
        font-size: 20px;
        padding: var(--space-3);
    }

    .faq-answer p {
        font-size: 17px;
    }

    .cta-banner {
        padding: var(--space-15) var(--container-pad);
    }

    .cta-heading {
        font-size: 36px;
    }

    .pros-cons {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: var(--space-4);
    }
}

/* ============================================
   RESPONSIVE - Desktop (1024px)
   ============================================ */

@media (min-width: 1024px) {
    .info-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-card-grid.cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
}

/* ============================================
   RESPONSIVE - Wide (1280px)
   ============================================ */

@media (min-width: 1280px) {
    .container, .container-wide {
        padding: 0 var(--container-pad);
    }
}

/* ============================================
   ACCESSIBILITY - Reduced motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll,
    .stat-item,
    .info-card {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   SR-ONLY - Visually hidden for screen readers
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}