/* ============================
   CSS CUSTOM PROPERTIES
   ============================ */
:root {
    --clr-primary: #0a0a0a;
    --clr-secondary: #1a1a1a;
    --clr-accent: #c41e3a;
    --clr-accent-dark: #9a1830;
    --clr-accent-light: #e8334f;
    --clr-white: #f5f5f5;
    --clr-white-pure: #ffffff;
    --clr-gray-100: #e0e0e0;
    --clr-gray-200: #c0c0c0;
    --clr-gray-300: #a0a0a0;
    --clr-gray-400: #808080;
    --clr-gray-500: #606060;
    --clr-gray-600: #404040;
    --clr-gray-700: #2a2a2a;
    --clr-gray-800: #1e1e1e;

    --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-body: 'Crimson Text', Georgia, serif;
    --ff-mono: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.5rem;
    --fs-5xl: 4.5rem;
    --fs-6xl: 6rem;

    --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;

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.6);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.7);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.8);
    --shadow-accent: 0 0 30px rgba(196,30,58,0.3);

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 800ms ease;

    --venetian-gradient: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 18px,
        rgba(0,0,0,0.15) 18px,
        rgba(0,0,0,0.15) 20px
    );

    --venetian-diagonal: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(0,0,0,0.08) 30px,
        rgba(0,0,0,0.08) 32px
    );

    --light-beam: linear-gradient(
        115deg,
        transparent 0%,
        transparent 30%,
        rgba(245,245,245,0.02) 30%,
        rgba(245,245,245,0.05) 45%,
        rgba(245,245,245,0.02) 60%,
        transparent 60%,
        transparent 100%
    );

    --noise-url: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");

    --header-height: 72px;
}

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

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

body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--clr-gray-200);
    background-color: var(--clr-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

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

ul {
    list-style: none;
}

::selection {
    background: var(--clr-accent);
    color: var(--clr-white-pure);
}

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

/* ============================
   UTILITY CLASSES
   ============================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.text-accent {
    color: var(--clr-accent);
}

.section-venetian {
    position: absolute;
    inset: 0;
    background: var(--venetian-gradient);
    pointer-events: none;
    z-index: 0;
}

/* ============================
   SECTION HEADERS
   ============================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.section-tag {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
    display: block;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--clr-accent);
    margin: 0 auto;
    position: relative;
}

.section-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
}

/* ============================
   COOKIE CONSENT
   ============================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-secondary);
    border-top: 1px solid var(--clr-gray-700);
    padding: var(--space-lg) var(--space-xl);
    z-index: 10000;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
}

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

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
    min-width: 300px;
}

.cookie-icon {
    font-family: var(--ff-mono);
    font-weight: 700;
    color: var(--clr-accent);
    font-size: var(--fs-lg);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
}

.cookie-text p {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-300);
    line-height: 1.5;
}

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

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

.btn-cookie-accept {
    background: var(--clr-accent);
    color: var(--clr-white-pure);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    font-weight: 600;
    border: 1px solid var(--clr-accent);
    transition: all var(--transition-fast);
}

.btn-cookie-accept:hover {
    background: var(--clr-accent-light);
    border-color: var(--clr-accent-light);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--clr-gray-300);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    font-weight: 600;
    border: 1px solid var(--clr-gray-600);
    transition: all var(--transition-fast);
}

.btn-cookie-reject:hover {
    border-color: var(--clr-gray-400);
    color: var(--clr-white);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--clr-gray-400);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    font-weight: 600;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
    text-decoration: underline;
}

.btn-cookie-settings:hover {
    color: var(--clr-white);
}

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

.cookie-setting-item {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-300);
}

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

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

/* ============================
   AGE VERIFICATION MODAL
   ============================ */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
}

.age-modal-content {
    position: relative;
    background: var(--clr-secondary);
    border: 1px solid var(--clr-gray-700);
    max-width: 480px;
    width: 90%;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-accent);
}

.age-modal-light-beam {
    position: absolute;
    inset: 0;
    background: var(--light-beam);
    pointer-events: none;
}

.age-modal-inner {
    position: relative;
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    z-index: 1;
}

.age-modal-inner h2 {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    color: var(--clr-white);
    margin-bottom: var(--space-md);
}

.age-modal-divider {
    width: 40px;
    height: 2px;
    background: var(--clr-accent);
    margin: 0 auto var(--space-lg);
}

.age-modal-inner p {
    font-family: var(--ff-body);
    color: var(--clr-gray-300);
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

.age-modal-sub {
    font-size: var(--fs-sm);
    color: var(--clr-gray-400) !important;
    margin-bottom: var(--space-2xl) !important;
}

.age-modal-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-age-yes {
    background: var(--clr-accent);
    color: var(--clr-white-pure);
    padding: var(--space-md) var(--space-2xl);
    font-family: var(--ff-mono);
    font-weight: 600;
    font-size: var(--fs-base);
    border: 1px solid var(--clr-accent);
    transition: all var(--transition-fast);
    letter-spacing: 1px;
}

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

.btn-age-no {
    background: transparent;
    color: var(--clr-gray-400);
    padding: var(--space-md) var(--space-2xl);
    font-family: var(--ff-mono);
    font-weight: 600;
    font-size: var(--fs-base);
    border: 1px solid var(--clr-gray-600);
    transition: all var(--transition-fast);
}

.btn-age-no:hover {
    border-color: var(--clr-gray-400);
    color: var(--clr-white);
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    transition: all var(--transition-base);
}

.main-header.scrolled {
    background: rgba(10,10,10,0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-venetian-overlay {
    position: absolute;
    inset: 0;
    background: var(--venetian-gradient);
    opacity: 0.3;
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.logo-link {
    text-decoration: none;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-gray-700);
    object-fit: cover;
}

.logo-text {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--clr-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--clr-gray-300);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

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

.nav-cta {
    color: var(--clr-accent) !important;
    border: 1px solid var(--clr-accent);
    padding: var(--space-xs) var(--space-lg);
}

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

.nav-cta:hover {
    background: var(--clr-accent);
    color: var(--clr-white-pure) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--clr-white);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
    background: var(--clr-primary);
    max-width: 100vw;
}

.hero-venetian-blinds {
    position: absolute;
    inset: 0;
    background: var(--venetian-gradient);
    pointer-events: none;
    z-index: 1;
}

.hero-light-beam {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-light-beam-1 {
    background: linear-gradient(
        125deg,
        transparent 0%,
        transparent 20%,
        rgba(245,245,245,0.015) 20%,
        rgba(245,245,245,0.04) 35%,
        rgba(245,245,245,0.015) 50%,
        transparent 50%,
        transparent 100%
    );
}

.hero-light-beam-2 {
    background: linear-gradient(
        155deg,
        transparent 0%,
        transparent 55%,
        rgba(196,30,58,0.02) 55%,
        rgba(196,30,58,0.04) 65%,
        rgba(196,30,58,0.02) 75%,
        transparent 75%,
        transparent 100%
    );
}

.hero-noise-overlay {
    position: absolute;
    inset: 0;
    background-image: var(--noise-url);
    background-repeat: repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 3;
}

.hero-fog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--clr-primary), transparent);
    pointer-events: none;
    z-index: 4;
}

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

.hero-badge {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(196,30,58,0.1);
    border: 1px solid rgba(196,30,58,0.3);
    padding: var(--space-xs) var(--space-lg);
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--clr-accent-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    width: fit-content;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    grid-column: 1 / 2;
    font-family: var(--ff-heading);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line-1 {
    font-size: var(--fs-3xl);
    color: var(--clr-gray-300);
    font-weight: 400;
    font-style: italic;
    animation: slideInLeft 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.title-line-2 {
    font-size: var(--fs-5xl);
    color: var(--clr-white);
    animation: slideInLeft 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.title-line-3 {
    font-size: var(--fs-4xl);
    color: var(--clr-white);
    animation: slideInLeft 0.8s ease 0.6s forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.hero-description {
    grid-column: 1 / 2;
    font-family: var(--ff-body);
    font-size: var(--fs-lg);
    color: var(--clr-gray-300);
    line-height: 1.8;
    max-width: 500px;
    animation: fadeIn 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-cta-group {
    grid-column: 1 / 2;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: fadeIn 0.8s ease 1s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--clr-accent);
    color: var(--clr-white-pure);
    padding: var(--space-md) var(--space-2xl);
    font-family: var(--ff-mono);
    font-weight: 600;
    font-size: var(--fs-base);
    letter-spacing: 1px;
    border: 1px solid var(--clr-accent);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary::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 var(--transition-slow);
}

.btn-primary:hover {
    background: var(--clr-accent-light);
    border-color: var(--clr-accent-light);
    box-shadow: var(--shadow-accent);
    color: var(--clr-white-pure);
    transform: translateY(-2px);
}

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

.btn-glow {
    box-shadow: 0 0 20px rgba(196,30,58,0.2);
}

.btn-arrow {
    font-family: var(--ff-mono);
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--clr-gray-300);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--ff-mono);
    font-weight: 500;
    font-size: var(--fs-sm);
    letter-spacing: 0.5px;
    border: 1px solid var(--clr-gray-600);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-secondary:hover {
    color: var(--clr-white);
    border-color: var(--clr-gray-400);
}

.btn-play-icon {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-accent);
}

.hero-stats {
    grid-column: 1 / 2;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--clr-gray-700);
    animation: fadeIn 0.8s ease 1.2s forwards;
    opacity: 0;
}

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

.stat-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--clr-white);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-gray-400);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--clr-gray-700);
}

/* Hero Image */
.hero-image-container {
    grid-column: 2 / 3;
    grid-row: 2 / 6;
    position: relative;
    z-index: 5;
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.hero-image-frame {
    position: relative;
    border: 1px solid var(--clr-gray-700);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-accent);
    z-index: 2;
}

.hero-image-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.05), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    filter: contrast(1.05) brightness(0.95);
}

.hero-image-grain {
    position: absolute;
    inset: 0;
    background-image: var(--noise-url);
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

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

.scroll-text {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-gray-500);
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
}

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

@keyframes scroll-pulse {
    0% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
    100% { opacity: 1; height: 40px; }
}

/* ============================
   SOCIAL PROOF TICKER
   ============================ */
.social-proof-ticker {
    background: var(--clr-secondary);
    border-top: 1px solid var(--clr-gray-700);
    border-bottom: 1px solid var(--clr-gray-700);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}

.ticker-item {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-gray-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.ticker-dot-live {
    background: var(--clr-accent);
    animation: pulse-dot 1.5s ease infinite;
}

.ticker-separator {
    color: var(--clr-gray-600);
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
}

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

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--clr-secondary);
    overflow: hidden;
}

.about-light-beam {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(196,30,58,0.02) 40%,
        rgba(196,30,58,0.04) 50%,
        rgba(196,30,58,0.02) 60%,
        transparent 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-lead {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 500;
    color: var(--clr-white);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.about-body {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-gray-300);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-highlights {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.highlight-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-lg);
    background: rgba(255,255,255,0.02);
    border-left: 2px solid var(--clr-accent);
    transition: all var(--transition-base);
}

.highlight-item:hover {
    background: rgba(196,30,58,0.05);
    transform: translateX(4px);
}

.highlight-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.highlight-text strong {
    font-family: var(--ff-mono);
    font-size: var(--fs-base);
    color: var(--clr-white);
    display: block;
    margin-bottom: var(--space-xs);
}

.highlight-text p {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    line-height: 1.6;
}

/* About Image Stack */
.about-image-stack {
    position: relative;
    height: 500px;
}

.about-image-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--clr-gray-700);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.9);
}

.card-grain {
    position: absolute;
    inset: 0;
    background-image: var(--noise-url);
    background-repeat: repeat;
    opacity: 0.25;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.about-image-card-1 {
    top: 0;
    left: 0;
    width: 85%;
    height: 65%;
    z-index: 2;
}

.about-image-card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-accent);
    z-index: 3;
}

.about-image-card-2 {
    bottom: 0;
    right: 0;
    width: 70%;
    height: 55%;
    z-index: 1;
}

.about-image-stack:hover .about-image-card-1 {
    transform: translate(-5px, -5px);
}

.about-image-stack:hover .about-image-card-2 {
    transform: translate(5px, 5px);
}

/* ============================
   SCREENSHOTS GALLERY
   ============================ */
.screenshots-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--clr-primary);
    overflow: hidden;
}

.gallery-showcase {
    position: relative;
    z-index: 1;
}

.gallery-main {
    margin-bottom: var(--space-xl);
}

.gallery-main-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--clr-gray-700);
    box-shadow: var(--shadow-xl);
    max-height: 550px;
}

.gallery-main-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-accent);
    z-index: 3;
}

.gallery-main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-base);
    filter: contrast(1.05) brightness(0.95);
}

.gallery-main-grain {
    position: absolute;
    inset: 0;
    background-image: var(--noise-url);
    background-repeat: repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

.gallery-main-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.4) 100%);
    pointer-events: none;
    z-index: 2;
}

.gallery-main-caption {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--clr-gray-700);
}

.caption-number {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-accent);
    letter-spacing: 2px;
    font-weight: 600;
}

.caption-text {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    font-style: italic;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--clr-gray-700);
    cursor: pointer;
    transition: all var(--transition-base);
    aspect-ratio: 16/10;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
    transition: all var(--transition-base);
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.5);
    transition: all var(--transition-base);
}

.thumb-number {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-gray-500);
    font-weight: 600;
    z-index: 1;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--clr-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.gallery-thumb:hover img,
.gallery-thumb.active img {
    filter: brightness(0.8) contrast(1.1);
}

.gallery-thumb:hover .thumb-overlay,
.gallery-thumb.active .thumb-overlay {
    background: rgba(196,30,58,0.15);
}

.gallery-thumb.active .thumb-number {
    color: var(--clr-accent);
}

/* ============================
   FEATURES SECTION
   ============================ */
.features-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--clr-secondary);
    overflow: hidden;
}

.features-light-beam {
    position: absolute;
    inset: 0;
    background: var(--light-beam);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.feature-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.feature-card-inner {
    padding: var(--space-2xl);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-gray-700);
    height: 100%;
    position: relative;
    transition: all var(--transition-base);
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: width var(--transition-slow);
}

.feature-card:hover .feature-card-inner {
    background: rgba(196,30,58,0.03);
    border-color: rgba(196,30,58,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover .feature-card-inner::before {
    width: 100%;
}

.feature-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: rgba(196,30,58,0.15);
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    line-height: 1;
}

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

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

.feature-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--space-md);
}

.feature-desc {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    line-height: 1.7;
}

.feature-line {
    width: 30px;
    height: 1px;
    background: var(--clr-gray-600);
    margin-top: var(--space-lg);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-line {
    width: 60px;
    background: var(--clr-accent);
}

.feature-card-large .feature-card-inner {
    padding: var(--space-3xl);
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--clr-primary);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-3xl);
}

.testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-gray-700);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(196,30,58,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card-featured {
    border-color: rgba(196,30,58,0.3);
    background: rgba(196,30,58,0.03);
}

.testimonial-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--clr-accent);
}

.testimonial-quote-mark {
    font-family: var(--ff-heading);
    font-size: 4rem;
    color: var(--clr-accent);
    line-height: 1;
    opacity: 0.3;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-gray-200);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--clr-accent);
    color: var(--clr-white-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: var(--fs-lg);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-white);
    display: block;
}

.author-location {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-gray-500);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star-filled {
    color: var(--clr-accent);
    font-size: var(--fs-lg);
}

.star-empty {
    color: var(--clr-gray-600);
    font-size: var(--fs-lg);
}

/* Live Activity Bar */
.live-activity-bar {
    position: relative;
    z-index: 1;
    background: rgba(196,30,58,0.05);
    border: 1px solid rgba(196,30,58,0.2);
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.activity-pulse {
    width: 10px;
    height: 10px;
    background: var(--clr-accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.5s ease infinite;
    box-shadow: 0 0 10px var(--clr-accent);
}

.activity-items {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    flex: 1;
    flex-wrap: wrap;
}

.activity-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.activity-label {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-value {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-white);
}

.activity-divider {
    width: 1px;
    height: 36px;
    background: rgba(196,30,58,0.2);
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--clr-secondary);
    overflow: hidden;
}

.faq-light-beam {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        -45deg,
        transparent 0%,
        transparent 60%,
        rgba(245,245,245,0.01) 60%,
        rgba(245,245,245,0.03) 70%,
        rgba(245,245,245,0.01) 80%,
        transparent 80%,
        transparent 100%
    );
    pointer-events: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    border-bottom: 1px solid var(--clr-gray-700);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--clr-gray-700);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-md);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
    background: transparent;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-q-number {
    font-family: var(--ff-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--clr-accent);
    flex-shrink: 0;
    min-width: 28px;
}

.faq-q-text {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--clr-white);
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-family: var(--ff-mono);
    font-size: var(--fs-xl);
    color: var(--clr-accent);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

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

.faq-item.active .faq-question {
    background: rgba(196,30,58,0.03);
}

.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 {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-gray-300);
    line-height: 1.8;
    padding: 0 var(--space-md) var(--space-xl);
    padding-left: calc(28px + var(--space-lg) + var(--space-md));
}

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

/* ============================
   SIGNUP SECTION
   ============================ */
.signup-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--clr-primary);
    overflow: hidden;
}

.signup-light-beam {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 15%,
        rgba(196,30,58,0.03) 15%,
        rgba(196,30,58,0.06) 30%,
        rgba(196,30,58,0.03) 45%,
        transparent 45%,
        transparent 100%
    );
    pointer-events: none;
}

.signup-noise {
    position: absolute;
    inset: 0;
    background-image: var(--noise-url);
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.signup-info {
    padding-top: var(--space-xl);
}

.signup-desc {
    font-family: var(--ff-body);
    font-size: var(--fs-lg);
    color: var(--clr-gray-300);
    line-height: 1.7;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-200);
}

.benefit-check {
    color: var(--clr-accent);
    font-weight: 700;
    font-size: var(--fs-xs);
    flex-shrink: 0;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-gray-500);
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--clr-gray-500);
    flex-shrink: 0;
}

/* Form Card */
.form-card {
    background: var(--clr-secondary);
    border: 1px solid var(--clr-gray-700);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-accent);
}

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

.form-card-header h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--space-sm);
}

.form-card-header p {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
}

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

.form-label {
    display: block;
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--clr-gray-200);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--clr-gray-600);
    color: var(--clr-white);
    font-family: var(--ff-mono);
    font-size: var(--fs-base);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--clr-gray-500);
}

.form-input:focus {
    border-color: var(--clr-accent);
    background: rgba(196,30,58,0.03);
    box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}

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

.form-error {
    display: block;
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: #e74c3c;
    margin-top: var(--space-xs);
    min-height: 16px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-300);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid var(--clr-gray-600);
    background: transparent;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
    margin-top: 2px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid var(--clr-white-pure);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    outline: 2px solid var(--clr-accent);
    outline-offset: 2px;
}

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

.btn-submit {
    width: 100%;
    padding: var(--space-md) var(--space-2xl);
    background: var(--clr-accent);
    color: var(--clr-white-pure);
    font-family: var(--ff-mono);
    font-weight: 700;
    font-size: var(--fs-base);
    letter-spacing: 1px;
    border: 1px solid var(--clr-accent);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-top: var(--space-md);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left var(--transition-slow);
}

.btn-submit:hover {
    background: var(--clr-accent-light);
    border-color: var(--clr-accent-light);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

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

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

.success-icon svg {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
}

.form-success h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--space-md);
}

.form-success p {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: var(--clr-gray-300);
    line-height: 1.7;
}

.form-error-message {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.3);
    padding: var(--space-md);
    margin-top: var(--space-md);
}

.form-error-message p {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: #e74c3c;
}

/* ============================
   TRUST SECTION
   ============================ */
.trust-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--clr-secondary);
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-3xl);
}

.trust-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--clr-gray-700);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: rgba(196,30,58,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.trust-card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--clr-accent);
    margin: 0 auto;
}

.trust-card h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--space-md);
}

.trust-card p {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    line-height: 1.7;
}

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

.responsible-gaming-notice {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    background: rgba(196,30,58,0.05);
    border: 1px solid rgba(196,30,58,0.2);
    padding: var(--space-xl);
}

.notice-icon svg {
    width: 24px;
    height: 24px;
    color: var(--clr-accent);
    flex-shrink: 0;
}

.notice-text {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-300);
    line-height: 1.6;
}

.notice-text strong {
    color: var(--clr-accent);
}

/* ============================
   FOOTER
   ============================ */
.main-footer {
    position: relative;
    background: var(--clr-primary);
    border-top: 1px solid var(--clr-gray-700);
    padding: var(--space-4xl) 0 var(--space-xl);
    overflow: hidden;
}

.footer-venetian {
    position: absolute;
    inset: 0;
    background: var(--venetian-gradient);
    opacity: 0.3;
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.footer-brand-desc {
    font-family: var(--ff-body);
    font-size: var(--fs-sm);
    color: var(--clr-gray-500);
    line-height: 1.7;
    margin-top: var(--space-lg);
    max-width: 300px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-col-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--clr-accent);
}

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

.footer-links a {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--clr-gray-700);
    margin: var(--space-2xl) 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-address p {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-gray-500);
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-family: var(--ff-mono);
    font-size: var(--fs-xs);
    color: var(--clr-gray-500);
}

.footer-age-notice {
    color: var(--clr-accent) !important;
    margin-top: var(--space-xs);
}

/* ============================
   LEGAL PAGES CONTENT
   ============================ */
.legal-page-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    background: var(--clr-primary);
    overflow: hidden;
}

.legal-page-hero .hero-venetian-blinds {
    position: absolute;
    inset: 0;
    background: var(--venetian-gradient);
    pointer-events: none;
}

.legal-page-hero .hero-light-beam-1 {
    position: absolute;
    inset: 0;
    background: var(--light-beam);
    pointer-events: none;
}

.legal-page-title {
    font-family: var(--ff-heading);
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: var(--clr-white);
    position: relative;
    z-index: 1;
    text-align: center;
}

.legal-page-subtitle {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: var(--clr-gray-400);
    text-align: center;
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.legal-content {
    background: var(--clr-white-pure);
    color: #1a1a1a;
    padding: var(--space-4xl) var(--space-3xl);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-accent);
}

.legal-content h2 {
    font-family: var(--ff-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: #0a0a0a;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid #e0e0e0;
}

.legal-content h3 {
    font-family: var(--ff-heading);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: #1a1a1a;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-family: var(--ff-body);
    font-size: var(--fs-base);
    color: #333;
    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: var(--ff-body);
    font-size: var(--fs-base);
    color: #333;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

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

.legal-content strong {
    color: #0a0a0a;
}

.legal-content .last-updated {
    font-family: var(--ff-mono);
    font-size: var(--fs-sm);
    color: #808080;
    font-style: italic;
    margin-bottom: var(--space-xl);
}

.legal-spacer {
    padding: var(--space-3xl) 0;
    background: var(--clr-primary);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

/* Scroll reveal animation class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger delays for children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1024px) {
    :root {
        --fs-5xl: 3.5rem;
        --fs-4xl: 2.5rem;
        --fs-3xl: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        grid-column: 1;
    }

    .hero-title {
        grid-column: 1;
    }

    .hero-description {
        grid-column: 1;
    }

    .hero-cta-group {
        grid-column: 1;
    }

    .hero-stats {
        grid-column: 1;
    }

    .hero-image-container {
        grid-column: 1;
        grid-row: auto;
        max-width: 600px;
    }

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

    .about-image-stack {
        height: 350px;
    }

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

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

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

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

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

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

@media (max-width: 768px) {
    :root {
        --fs-5xl: 2.5rem;
        --fs-4xl: 2rem;
        --fs-3xl: 1.75rem;
        --fs-2xl: 1.5rem;
        --header-height: 64px;
    }

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--clr-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-2xl)) var(--space-2xl);
        gap: var(--space-lg);
        border-left: 1px solid var(--clr-gray-700);
        transition: right var(--transition-base);
        box-shadow: -4px 0 24px rgba(0,0,0,0.5);
        z-index: 999;
    }

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

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: var(--space-md) var(--space-lg);
    }

    .hero-section {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        min-height: auto;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

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

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

    .activity-items {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .activity-divider {
        width: 40px;
        height: 1px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal {
        text-align: left;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }

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

    .section-title {
        font-size: var(--fs-2xl);
    }

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

@media (max-width: 480px) {
    :root {
        --fs-5xl: 2rem;
        --fs-4xl: 1.75rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .about-image-stack {
        height: 280px;
    }

    .age-modal-content {
        width: 95%;
    }

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

    .age-modal-buttons button {
        width: 100%;
    }

    .gallery-main-frame {
        max-height: 300px;
    }
}

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

    body {
        background: white;
        color: black;
    }

    .section-title,
    .hero-title .title-line {
        color: black !important;
    }
}
