/* ================================================
   RESET & BASE
   ================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors */
    --primary: #37474f;
    --primary-dark: #263238;
    --primary-darker: #1a2327;
    --secondary: #cfd8dc;
    --secondary-light: #eceff1;
    --accent: #ff6f00;
    --accent-light: #ff8f00;
    --accent-dark: #e65100;

    /* Industrial Palette */
    --gunmetal: #37474f;
    --steel: #78909c;
    --steel-light: #b0bec5;
    --rust: #ff6f00;
    --rust-dark: #bf360c;
    --rivet: #90a4ae;
    --blueprint: #1a3a5c;
    --blueprint-line: #2a5a8c;
    --blueprint-bg: #0d2137;
    --warning-yellow: #ffc107;
    --warning-black: #212121;
    --metal-dark: #1c2529;
    --metal-mid: #2c3e44;
    --metal-light: #455a64;
    --metal-shine: #546e7a;

    /* Text */
    --text-primary: #eceff1;
    --text-secondary: #b0bec5;
    --text-dark: #263238;
    --text-muted: #78909c;

    /* Functional */
    --success: #4caf50;
    --error: #f44336;
    --border-heavy: 4px;
    --border-medium: 3px;
    --border-light: 2px;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Rivet size */
    --rivet-size: 12px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-metal: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    --shadow-heavy: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(255,111,0,0.3);
}

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

body {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    background-color: var(--primary-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ================================================
   BLUEPRINT GRID BACKGROUND
   ================================================ */
.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(var(--blueprint-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-line) 1px, transparent 1px),
        linear-gradient(var(--blueprint-line) 0.5px, transparent 0.5px),
        linear-gradient(90deg, var(--blueprint-line) 0.5px, transparent 0.5px);
    background-size:
        100px 100px,
        100px 100px,
        20px 20px,
        20px 20px;
}

/* ================================================
   WARNING STRIPES
   ================================================ */
.warning-stripe-top,
.warning-stripe-bottom,
.header-warning-stripe,
.footer-warning-stripe,
.ticker-warning-stripe {
    height: 8px;
    background: repeating-linear-gradient(
        -45deg,
        var(--warning-yellow),
        var(--warning-yellow) 10px,
        var(--warning-black) 10px,
        var(--warning-black) 20px
    );
    width: 100%;
}

.header-warning-stripe,
.footer-warning-stripe {
    height: 6px;
}

.ticker-warning-stripe {
    height: 4px;
}

/* ================================================
   RIVETS (PSEUDO-ELEMENT BOLTS)
   ================================================ */
.rivet {
    position: absolute;
    width: var(--rivet-size);
    height: var(--rivet-size);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #b0bec5, #546e7a 40%, #37474f 70%);
    border: 1px solid #263238;
    box-shadow:
        inset 0 1px 2px rgba(255,255,255,0.3),
        0 1px 3px rgba(0,0,0,0.5);
    z-index: 5;
}

.rivet-tl { top: 8px; left: 8px; }
.rivet-tr { top: 8px; right: 8px; }
.rivet-bl { bottom: 8px; left: 8px; }
.rivet-br { bottom: 8px; right: 8px; }

/* ================================================
   METAL PLATES & FRAMES
   ================================================ */
.metal-plate {
    position: relative;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-metal);
    padding: var(--space-xl);
}

.metal-frame {
    position: relative;
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-metal);
    overflow: hidden;
    background: var(--primary-dark);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-industrial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 14px 32px;
    border: var(--border-medium) solid;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-industrial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-industrial:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(180deg, var(--accent-light), var(--accent), var(--accent-dark));
    border-color: var(--accent-light);
    border-top-color: #ffab40;
    border-left-color: #ffab40;
    border-right-color: var(--accent-dark);
    border-bottom-color: var(--accent-dark);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 4px 12px rgba(255,111,0,0.3);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ffab40, var(--accent-light), var(--accent));
    box-shadow: 0 6px 20px rgba(255,111,0,0.5);
    transform: translateY(-2px);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(0);
    border-top-color: var(--accent-dark);
    border-left-color: var(--accent-dark);
    border-right-color: #ffab40;
    border-bottom-color: #ffab40;
}

.btn-secondary {
    background: linear-gradient(180deg, var(--metal-light), var(--primary), var(--primary-dark));
    border-color: var(--steel);
    border-top-color: var(--steel-light);
    border-left-color: var(--steel-light);
    border-right-color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
    background: linear-gradient(180deg, var(--steel), var(--metal-light), var(--primary));
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-large {
    padding: 18px 44px;
    font-size: 1.25rem;
    letter-spacing: 3px;
}

.btn-full {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
}

/* ================================================
   HEADER / NAVIGATION
   ================================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    border-bottom: var(--border-medium) solid var(--metal-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    background: rgba(26,35,39,0.97);
    backdrop-filter: blur(10px);
}

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

.nav-logo {
    flex-shrink: 0;
}

.logo-plate {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255,111,0,0.3);
}

.logo-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--steel-light);
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    padding: 8px 16px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    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: 70%;
}

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 20px;
    border: 2px solid var(--accent-light);
}

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

.nav-cta:hover {
    background: var(--accent-light);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 2px solid var(--steel);
    padding: 8px;
    cursor: pointer;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

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

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

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

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-xl) var(--space-3xl);
    background: linear-gradient(160deg, var(--blueprint-bg) 0%, var(--primary-darker) 40%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,111,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(42,90,140,0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    margin-bottom: var(--space-lg);
    animation: fadeInDown 0.8s ease-out;
}

.badge-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--accent);
    background: rgba(255,111,0,0.1);
    border: 2px solid var(--accent);
    padding: 6px 20px;
    display: inline-block;
}

.hero-title {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.95;
}

.title-line-1 {
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.title-line-2 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    color: var(--accent);
    text-shadow: 0 0 30px rgba(255,111,0,0.3);
}

.hero-description {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    flex-wrap: wrap;
}

.stat-plate {
    position: relative;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-medium) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    padding: var(--space-lg) var(--space-xl);
    min-width: 170px;
    text-align: center;
    box-shadow: var(--shadow-metal);
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
    flex-wrap: wrap;
}

.hero-game-icon {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.game-icon-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 24px;
    border: var(--border-heavy) solid var(--metal-light);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(255,111,0,0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    display: block;
    margin-bottom: var(--space-sm);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    margin: 0 auto;
}

/* ================================================
   SOCIAL PROOF TICKER
   ================================================ */
.social-proof-ticker {
    position: relative;
    background: var(--primary-dark);
    border-top: 2px solid var(--metal-light);
    border-bottom: 2px solid var(--metal-light);
    overflow: hidden;
    z-index: 10;
}

.ticker-content {
    overflow: hidden;
    padding: 12px 0;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    gap: var(--space-3xl);
}

.ticker-item {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ticker-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 6px rgba(76,175,80,0.5);
    animation: pulse 2s infinite;
}

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

.about-section {
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.screenshots-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--blueprint-bg) 50%, var(--primary-dark) 100%);
}

.features-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
}

.testimonials-section {
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
}

.faq-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
}

.signup-section {
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--blueprint-bg) 50%, var(--primary-darker) 100%);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-primary);
    letter-spacing: 4px;
    line-height: 1.1;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: var(--space-md) auto 0;
    box-shadow: 0 0 10px rgba(255,111,0,0.3);
}

.section-subtitle {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-plate {
    padding: var(--space-2xl);
}

.about-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-text:last-of-type {
    margin-bottom: var(--space-xl);
}

.about-developer {
    padding-top: var(--space-lg);
    border-top: 2px solid var(--metal-light);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.dev-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.dev-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 1px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

/* ================================================
   GALLERY / SCREENSHOTS
   ================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.gallery-item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-item {
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 2px;
}

/* ================================================
   FEATURES
   ================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    position: relative;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-metal);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

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

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy), var(--shadow-glow);
    border-color: var(--accent);
}

.feature-number {
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: rgba(255,111,0,0.1);
    line-height: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    background: rgba(255,111,0,0.1);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.feature-desc {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    position: relative;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    padding: var(--space-xl);
    box-shadow: var(--shadow-metal);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-rating {
    margin-bottom: var(--space-md);
    display: flex;
    gap: 4px;
}

.star-filled {
    color: var(--warning-yellow);
    font-size: 1.2rem;
    font-weight: bold;
}

.star-empty {
    color: var(--metal-light);
    font-size: 1.2rem;
    font-weight: bold;
}

.testimonial-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 2px solid var(--metal-light);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1px;
    border: 2px solid var(--accent-light);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.author-location {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    position: relative;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-medium) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-metal);
    transition: all var(--transition-base);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--steel);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-metal), var(--shadow-glow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    padding-left: 36px;
    padding-right: 36px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

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

.faq-toggle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 36px var(--space-lg);
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

/* ================================================
   SIGNUP / LEAD FORM
   ================================================ */
.signup-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    align-items: start;
}

.signup-form-plate {
    position: relative;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-heavy);
    padding: 0;
    overflow: hidden;
}

.signup-form {
    padding: var(--space-2xl) var(--space-xl);
}

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

.form-label {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--primary-darker);
    border: var(--border-light) solid var(--metal-light);
    border-top-color: var(--primary);
    border-left-color: var(--primary);
    border-right-color: var(--steel);
    border-bottom-color: var(--steel);
    transition: all var(--transition-fast);
    outline: none;
    letter-spacing: 0.5px;
}

.form-input::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255,111,0,0.2);
}

.form-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 2px rgba(244,67,54,0.2);
}

.form-error {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--error);
    letter-spacing: 1px;
    margin-top: var(--space-xs);
    min-height: 16px;
}

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

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid var(--metal-light);
    background: var(--primary-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

.form-checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent-light);
}

.form-checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

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

.form-success {
    padding: var(--space-2xl);
    text-align: center;
}

.success-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--success);
    margin-bottom: var(--space-md);
}

.form-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--success);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}

.form-success p {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.form-error-msg {
    padding: var(--space-2xl);
    text-align: center;
}

.error-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--error);
    margin-bottom: var(--space-md);
}

.form-error-msg h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--error);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}

.form-error-msg p {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.signup-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-plate {
    position: relative;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    padding: var(--space-xl);
    box-shadow: var(--shadow-metal);
}

.info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--metal-light);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.info-bullet {
    color: var(--accent);
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    flex-shrink: 0;
}

/* ================================================
   RESPONSIBLE GAMING
   ================================================ */
.responsible-section {
    padding: var(--space-3xl) var(--space-xl);
    background: var(--primary-darker);
}

.responsible-plate {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    text-align: center;
}

.responsible-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--warning-yellow);
    letter-spacing: 3px;
    padding: var(--space-xl) var(--space-xl) var(--space-md);
}

.responsible-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 0 var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
}

.responsible-links {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    flex-wrap: wrap;
}

.responsible-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 2px;
    border: 1px solid var(--accent);
    padding: 6px 14px;
    transition: all var(--transition-fast);
}

.responsible-link:hover {
    background: var(--accent);
    color: #fff;
}

/* ================================================
   FOOTER
   ================================================ */
.main-footer {
    background: var(--primary-darker);
    border-top: var(--border-heavy) solid var(--metal-light);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 2px solid var(--metal-light);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-text {
    font-size: 1.4rem;
}

.footer-desc {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-dev {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--metal-light);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    letter-spacing: 0.5px;
}

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

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: var(--space-sm);
}

.contact-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-address {
    margin-top: var(--space-md);
}

.footer-address address {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: normal;
    line-height: 1.6;
}

.footer-bottom {
    padding: var(--space-lg) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-age {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--warning-yellow);
    letter-spacing: 1px;
}

/* ================================================
   COOKIE CONSENT BANNER
   ================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: linear-gradient(180deg, var(--primary-dark), var(--primary-darker));
    border-top: var(--border-heavy) solid var(--accent);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

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

.cookie-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    border: 2px solid var(--accent);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text p {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.btn-cookie {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 2px solid;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
}

.btn-accept {
    background: var(--accent);
    border-color: var(--accent-light);
    color: #fff;
}

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

.btn-reject {
    background: transparent;
    border-color: var(--steel);
    color: var(--text-secondary);
}

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

.btn-settings {
    background: transparent;
    border-color: var(--steel);
    color: var(--text-secondary);
}

.btn-settings:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    border-top: 1px solid var(--metal-light);
    padding-top: var(--space-md);
}

.cookie-setting-item {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

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

/* ================================================
   AGE VERIFICATION MODAL
   ================================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.age-modal-content {
    width: 100%;
    max-width: 500px;
}

.age-modal-plate {
    position: relative;
    background: linear-gradient(145deg, var(--metal-mid), var(--primary-dark));
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    text-align: center;
}

.age-icon {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--warning-yellow);
    margin: var(--space-xl) 0 var(--space-md);
}

.age-modal-plate h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}

.age-modal-plate > p {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 0 var(--space-xl);
    margin-bottom: var(--space-xl);
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: 0 var(--space-xl);
    margin-bottom: var(--space-lg);
}

.age-note {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    padding: 0 var(--space-xl) var(--space-xl);
}

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

/* ================================================
   LEGAL PAGES CONTENT
   ================================================ */
.legal-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary-light);
    border: var(--border-heavy) solid var(--metal-light);
    border-top-color: var(--steel);
    border-left-color: var(--steel);
    border-right-color: var(--primary);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-heavy);
    padding: var(--space-3xl);
    color: var(--text-dark);
}

.legal-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 4px solid var(--accent);
}

.legal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--steel-light);
}

.legal-content h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    letter-spacing: 1px;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #37474f;
    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-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #37474f;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

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

.legal-content .legal-date {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--steel);
    letter-spacing: 1px;
    margin-bottom: var(--space-xl);
}

.legal-page-section {
    position: relative;
    padding: 120px var(--space-xl) var(--space-4xl);
    min-height: 100vh;
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--blueprint-bg) 50%, var(--primary-darker) 100%);
    overflow: hidden;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

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

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

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .nav-links {
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        background: var(--primary-darker);
        border-bottom: var(--border-heavy) solid var(--metal-light);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-sm);
        transform: translateY(-120%);
        visibility: hidden;
        transition: transform 0.4s ease, visibility 0.4s;
        box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }

    .nav-links.open {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

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

    .stat-plate {
        width: 100%;
        max-width: 280px;
    }

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

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

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

    .testimonials-grid .testimonial-card:last-child {
        max-width: none;
    }

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

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

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

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

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

    .cookie-settings-panel {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .legal-content {
        padding: var(--space-xl);
    }

    .legal-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --rivet-size: 8px;
    }

    .rivet-tl { top: 5px; left: 5px; }
    .rivet-tr { top: 5px; right: 5px; }
    .rivet-bl { bottom: 5px; left: 5px; }
    .rivet-br { bottom: 5px; right: 5px; }

    .title-line-1 {
        font-size: 2.5rem;
    }

    .title-line-2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .faq-question {
        padding-left: 24px;
        padding-right: 24px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */
@media print {
    .main-header,
    .cookie-banner,
    .age-modal,
    .social-proof-ticker,
    .hero-scroll-indicator {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .blueprint-grid {
        display: none;
    }
}
