/* ============================================
   RETRO BOWL - GRUNGE STYLE
   borealbait.com
   ============================================ */

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

:root {
    /* Core Palette */
    --primary: #2d2d2d;
    --primary-dark: #1a1a1a;
    --primary-light: #3d3d3d;
    --secondary: #85c1e9;
    --secondary-dark: #b8a98a;
    --secondary-light: #e8dcc6;
    --accent: #1a5276;
    --accent-dark: #6b0000;
    --accent-light: #a52a2a;
    --olive: #4a4a2a;
    --olive-light: #6b6b3a;
    --dirty-white: #f0ebe0;
    --cream: #faf5eb;
    --charcoal: #1e1e1e;
    --text-primary: #e8e0d0;
    --text-secondary: #b0a890;
    --text-dark: #2d2d2d;
    --text-muted: #8a8070;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Typography */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Source Code Pro', 'Courier New', monospace;

    /* Borders */
    --border-rough: 2px solid var(--accent);
    --border-subtle: 1px solid rgba(139, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;

    /* Z-index layers */
    --z-base: 1;
    --z-above: 10;
    --z-nav: 100;
    --z-modal: 1000;
    --z-cookie: 1100;
}

/* --- Global Styles --- */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Noise texture overlay for body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

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

button {
    cursor: pointer;
    font-family: var(--font-heading);
    border: none;
    background: none;
}

button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

::selection {
    background: var(--accent);
    color: var(--cream);
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Section Grain Overlay --- */
.section-grain,
.hero-grain,
.footer-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 512px 512px;
}

/* --- Scratchy texture --- */
.hero-scratches {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 2px,
        rgba(212, 197, 169, 0.1) 2px,
        rgba(212, 197, 169, 0.1) 3px
    );
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    background: rgba(30, 30, 30, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--accent);
    transition: transform var(--transition-base), background var(--transition-base);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-accent {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1;
    transform: rotate(-2deg);
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: var(--space-sm) 0;
    position: relative;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: var(--cream) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 2;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: transform var(--transition-base), opacity var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(139, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(74, 74, 42, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: var(--z-base);
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.badge-stamp {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--cream);
    background: var(--accent);
    padding: 2px 10px;
    letter-spacing: 2px;
    transform: rotate(-3deg);
    display: inline-block;
    clip-path: polygon(3% 0%, 100% 2%, 97% 100%, 0% 98%);
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
    font-family: var(--font-display);
    line-height: 0.9;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(40px);
}

.title-line-1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-secondary);
    animation: revealUp 0.6s ease 0.2s forwards;
}

.title-line-2 {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--text-primary);
    animation: revealUp 0.6s ease 0.4s forwards;
    text-shadow: 4px 4px 0px rgba(139, 0, 0, 0.4);
}

.title-line-3 {
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--accent);
    animation: revealUp 0.6s ease 0.6s forwards;
    transform: rotate(-1deg);
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--accent);
    color: var(--cream);
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
    border: none;
}

.btn-primary:hover {
    background: var(--accent-light);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    opacity: 0;
    animation: fadeIn 0.8s ease 1.2s forwards;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: calc(var(--space-3xl) / -2);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(139, 0, 0, 0.4);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 1px;
    line-height: 1.1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

.hero-image-frame {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(3deg);
}

.hero-game-icon {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border: 3px solid var(--accent);
    filter: saturate(0.8) contrast(1.1);
    transition: filter var(--transition-base), transform var(--transition-base);
}

.hero-game-icon:hover {
    filter: saturate(1) contrast(1.15);
    transform: scale(1.03);
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--secondary-dark);
    border-style: solid;
}

.frame-tl { top: 0; left: 0; border-width: 3px 0 0 3px; }
.frame-tr { top: 0; right: 0; border-width: 3px 3px 0 0; }
.frame-bl { bottom: 0; left: 0; border-width: 0 0 3px 3px; }
.frame-br { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

.hero-floating-tag {
    position: absolute;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 4px 16px;
    background: var(--primary-dark);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.tag-1 {
    top: -10px;
    right: -20px;
    transform: rotate(8deg);
    animation: floatTag 3s ease-in-out infinite;
}

.tag-2 {
    bottom: 20px;
    left: -10px;
    transform: rotate(-5deg);
    animation: floatTag 3s ease-in-out 1.5s infinite;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: var(--z-base);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   TICKER SECTION
   ============================================ */
.ticker-section {
    background: var(--accent);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid var(--accent-dark);
    border-bottom: 2px solid var(--accent-dark);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}

.ticker-content {
    display: flex;
    gap: var(--space-xl);
    white-space: nowrap;
}

.ticker-item {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--cream);
    text-transform: uppercase;
    opacity: 0.9;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.about-section,
.screenshots-section,
.features-section,
.faq-section,
.contact-section,
.trust-section {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.about-section {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(74, 74, 42, 0.08) 0%, transparent 50%),
        var(--primary);
}

.screenshots-section {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        var(--primary-dark);
}

.features-section {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(74, 74, 42, 0.06) 0%, transparent 60%),
        var(--primary);
}

.faq-section {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(139, 0, 0, 0.06) 0%, transparent 50%),
        var(--primary-dark);
}

.contact-section {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--primary);
}

.trust-section {
    background: var(--primary-dark);
    border-top: 2px solid rgba(139, 0, 0, 0.3);
}

.section-header {
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: var(--z-base);
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.section-title .accent {
    color: var(--accent);
    display: inline-block;
    transform: rotate(-1deg);
}

.title-scratch {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin-top: var(--space-lg);
    position: relative;
    clip-path: polygon(0% 0%, 95% 10%, 100% 100%, 5% 90%);
}

.title-scratch::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    width: 50px;
    height: 2px;
    background: rgba(139, 0, 0, 0.4);
    clip-path: polygon(0% 0%, 100% 20%, 95% 100%, 5% 80%);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: var(--z-base);
}

.about-text {
    position: relative;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.about-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 14px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: rgba(139, 0, 0, 0.08);
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--accent);
    color: var(--cream);
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent);
    transform: rotate(2deg);
    transition: transform var(--transition-base);
}

.about-image-wrapper:hover {
    transform: rotate(0deg);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    filter: saturate(0.7) contrast(1.1);
    transition: filter var(--transition-base);
}

.about-image-wrapper:hover img {
    filter: saturate(0.9) contrast(1.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.image-stamp {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--cream);
    background: rgba(139, 0, 0, 0.8);
    padding: 4px 12px;
    transform: rotate(-3deg);
}

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: var(--z-base);
}

.screenshot-card {
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base);
}

.screenshot-card:hover {
    transform: translateY(-4px);
}

.screenshot-large {
    grid-column: span 2;
}

.screenshot-frame {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 0, 0, 0.5);
    background: var(--primary);
}

.screenshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.05);
    transition: filter var(--transition-base), transform var(--transition-slow);
}

.screenshot-card:hover .screenshot-frame img {
    filter: saturate(0.9) contrast(1.15);
    transform: scale(1.03);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(30, 30, 30, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.screenshot-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1;
}

.screenshot-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: var(--z-base);
}

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(139, 0, 0, 0.2);
    transition: all var(--transition-base);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: rgba(45, 45, 45, 0.8);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(139, 0, 0, 0.15);
    position: absolute;
    top: 10px;
    right: 16px;
    line-height: 1;
    letter-spacing: 2px;
}

.feature-icon {
    margin-bottom: var(--space-lg);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--charcoal);
    border-top: 2px solid rgba(139, 0, 0, 0.3);
    border-bottom: 2px solid rgba(139, 0, 0, 0.3);
    overflow: hidden;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: var(--z-base);
}

.proof-card {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.proof-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(139, 0, 0, 0.3);
}

.proof-card:last-child::after {
    display: none;
}

.proof-icon {
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
    display: inline-block;
    animation: livePulse 1.5s ease-in-out infinite;
}

.proof-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: var(--space-sm);
}

/* ============================================
   ACTIVITY FEED
   ============================================ */
.activity-section {
    padding: var(--space-xl) 0;
    background: var(--primary-dark);
    overflow: hidden;
}

.activity-feed {
    display: flex;
    gap: var(--space-lg);
    overflow: hidden;
    position: relative;
    height: 44px;
    align-items: center;
}

.activity-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    padding: 6px 16px;
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(139, 0, 0, 0.15);
    animation: activitySlide 0.5s ease forwards;
    opacity: 0;
}

.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.activity-time {
    color: var(--accent);
    font-size: 0.65rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 800px;
    position: relative;
    z-index: var(--z-base);
}

.faq-item {
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    text-align: left;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-q-number {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--accent);
    letter-spacing: 2px;
    min-width: 40px;
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-toggle {
    color: var(--accent);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-xl);
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: calc(40px + var(--space-lg));
}

.faq-answer a {
    color: var(--accent-light);
    text-decoration: underline;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
    position: relative;
    z-index: var(--z-base);
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-detail-item svg {
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form */
.contact-form-wrapper {
    position: relative;
    background: rgba(45, 45, 45, 0.6);
    border: 2px solid rgba(139, 0, 0, 0.3);
    padding: var(--space-2xl);
    overflow: hidden;
}

.form-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-header {
    margin-bottom: var(--space-xl);
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(139, 0, 0, 0.2);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.15);
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input.error {
    border-color: #cc3333;
}

.form-error {
    display: block;
    font-size: 0.75rem;
    color: #cc3333;
    margin-top: 4px;
    min-height: 18px;
}

/* Checkbox styling */
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--accent);
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox a {
    color: var(--accent-light);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    margin-top: var(--space-md);
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.spinner {
    animation: spin 1s linear infinite;
}

.form-message {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    font-size: 0.85rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #81c784;
}

.form-message.error {
    display: block;
    background: rgba(204, 51, 51, 0.15);
    border: 1px solid rgba(204, 51, 51, 0.4);
    color: #e57373;
}

.form-disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: var(--space-lg);
    line-height: 1.6;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: var(--z-base);
}

.trust-card {
    padding: var(--space-2xl);
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid rgba(139, 0, 0, 0.2);
    text-align: center;
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: var(--accent);
    background: rgba(45, 45, 45, 0.6);
}

.trust-card-icon {
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.trust-card a {
    color: var(--accent-light);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background: var(--charcoal);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 3px solid var(--accent);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: var(--z-base);
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
    margin-bottom: var(--space-lg);
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-address {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-links span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    position: relative;
    z-index: var(--z-base);
}

.footer-bottom-left p {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.responsible-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-cookie);
    background: rgba(30, 30, 30, 0.97);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--accent);
    padding: var(--space-xl);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.cookie-text h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.cookie-text p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn-cookie {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.btn-accept {
    background: var(--accent);
    color: var(--cream);
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.btn-accept:hover {
    background: var(--accent-light);
}

.btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--text-muted);
}

.btn-reject:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.btn-settings {
    background: transparent;
    color: var(--text-muted);
    text-decoration: underline;
}

.btn-settings:hover {
    color: var(--text-primary);
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(139, 0, 0, 0.2);
}

.cookie-setting-item {
    margin-bottom: var(--space-sm);
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.cookie-setting-item input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

#cookie-save-settings {
    margin-top: var(--space-md);
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--z-cookie) + 10);
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.age-modal.visible {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    position: relative;
    background: var(--primary);
    border: 3px solid var(--accent);
    padding: var(--space-3xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    overflow: hidden;
}

.age-modal-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

.age-icon {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.age-modal-content > p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.age-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.btn-age {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-age-yes {
    background: var(--accent);
    color: var(--cream);
    border: 2px solid var(--accent);
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.btn-age-yes:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.btn-age-no {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--text-muted);
}

.btn-age-no:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.age-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.age-note a {
    color: var(--accent-light);
    text-decoration: underline;
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */
.legal-hero {
    padding: calc(70px + var(--space-4xl)) 0 var(--space-3xl);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 60%),
        var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.legal-hero .section-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.legal-hero .container {
    position: relative;
    z-index: 1;
}

.legal-content {
    background: var(--cream);
    color: var(--text-dark);
    padding: var(--space-4xl);
    position: relative;
    max-width: 900px;
    margin: calc(-1 * var(--space-xl)) auto var(--space-4xl);
    border: 2px solid rgba(139, 0, 0, 0.2);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(139, 0, 0, 0.2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content li {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--primary);
    font-weight: 600;
}

.legal-content .last-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
}

.tag-2 {
    animation-name: floatTag2;
}

@keyframes floatTag2 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-6px) rotate(-3deg); }
}

@keyframes scrollPulse {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
    100% { opacity: 1; transform: scaleY(1); }
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes activitySlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Reveal animation for scroll */
[data-reveal] {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(30, 30, 30, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        transition: right var(--transition-base);
        border-left: 2px solid var(--accent);
        z-index: 1;
    }

    .nav-links.open {
        right: 0;
    }

    .hero-section {
        min-height: auto;
        padding: calc(70px + var(--space-3xl)) 0 var(--space-3xl);
    }

    .hero-image-frame {
        width: 250px;
        height: 250px;
    }

    .hero-game-icon {
        width: 200px;
        height: 200px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .stat-item::after {
        display: none;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-large {
        grid-column: span 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .proof-card::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .legal-content {
        padding: var(--space-2xl) var(--space-lg);
        margin-left: var(--space-md);
        margin-right: var(--space-md);
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .age-buttons {
        flex-direction: column;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .about-tags {
        justify-content: center;
    }
}

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

    .ticker-track {
        animation: none;
    }

    .title-line {
        opacity: 1;
        transform: none;
    }

    .hero-badge,
    .hero-desc,
    .hero-actions,
    .hero-stats,
    .hero-image,
    .hero-scroll-indicator {
        opacity: 1;
    }

    .feature-card,
    .faq-item {
        opacity: 1;
        transform: none;
    }
}

/* Screen reader only */
.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;
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #e0e0e0;
        --text-muted: #c0c0c0;
    }

    .feature-card,
    .trust-card,
    .contact-form-wrapper {
        border-width: 2px;
    }
}
