/* ============================================
   CELL SURVIVOR - FROST DESIGN SYSTEM
   Scandinavian Ice Crystal Aesthetic
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Palette */
    --primary: #1a365d;
    --primary-dark: #0f2240;
    --primary-light: #2a4a7a;
    --secondary: #f0f5ff;
    --accent: #5fb5d4;
    --accent-light: #8ed0e6;
    --accent-dark: #3a98b8;

    /* Frost Palette */
    --frost-white: #f8fbff;
    --frost-ice: #e8f0fb;
    --frost-glacier: #d0e3f5;
    --frost-silver: #b8c9dd;
    --frost-steel: #8a9bb5;
    --frost-deep: #0d1b33;

    /* Functional */
    --text-primary: #0f1a2e;
    --text-secondary: #4a5b73;
    --text-muted: #7a8da5;
    --text-inverse: #f0f5ff;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Frost Glass */
    --glass-bg: rgba(240, 245, 255, 0.65);
    --glass-border: rgba(95, 181, 212, 0.2);
    --glass-shadow: 0 8px 32px rgba(15, 34, 64, 0.08);
    --glass-blur: 20px;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

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

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 400;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

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

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

body {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--frost-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

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

/* --- Frost Glass Card --- */
.frost-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                border-color var(--duration-normal) var(--ease-out);
}

.frost-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(15, 34, 64, 0.12);
    border-color: rgba(95, 181, 212, 0.35);
}

/* --- Buttons --- */
.btn-frost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-frost::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.btn-frost:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(95, 181, 212, 0.35);
}

.btn-frost:hover::before {
    opacity: 1;
}

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

.btn-frost-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
}

.btn-frost-outline:hover {
    background: rgba(95, 181, 212, 0.08);
    color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-frost-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    text-decoration: none;
}

.btn-frost-ghost:hover {
    color: var(--accent);
    background: rgba(95, 181, 212, 0.05);
}

.btn-frost-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.82rem;
}

.btn-frost-lg {
    padding: 0.9rem 2.25rem;
    font-size: 0.95rem;
}

.btn-frost-full {
    width: 100%;
}

/* --- Navigation --- */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(248, 251, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(95, 181, 212, 0.1);
    transition: all var(--duration-normal) var(--ease-out);
}

.nav-header.scrolled {
    background: rgba(248, 251, 255, 0.92);
    box-shadow: 0 4px 24px rgba(15, 34, 64, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--primary);
}

.logo-crystal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--primary);
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--duration-fast) var(--ease-out);
}

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

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

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

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

.nav-cta {
    font-size: 0.82rem;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: var(--z-overlay);
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.nav-burger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-burger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    background: rgba(248, 251, 255, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

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

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--duration-fast) var(--ease-out);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.mobile-overlay.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-overlay.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-overlay.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-overlay.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-overlay.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-overlay.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-overlay.active .mobile-link:nth-child(6) { transition-delay: 0.3s; }
.mobile-overlay.active .mobile-link:nth-child(7) { transition-delay: 0.35s; }

.mobile-link:hover {
    color: var(--accent);
}

.mobile-cta {
    margin-top: var(--space-lg);
    font-size: 1rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(72px + var(--space-4xl)) 0 var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(95, 181, 212, 0.08), transparent),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(26, 54, 93, 0.06), transparent),
        radial-gradient(ellipse 50% 50% at 50% 100%, rgba(95, 181, 212, 0.05), transparent),
        linear-gradient(180deg, var(--frost-white) 0%, var(--frost-ice) 100%);
}

.hero-frost-layer {
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235fb5d4' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

/* Crystal Grid Background */
.crystal-grid {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.crystal {
    position: absolute;
    border: 1px solid rgba(95, 181, 212, 0.12);
    transform: rotate(45deg);
}

.crystal-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    border-radius: 40px;
    animation: crystalFloat 20s ease-in-out infinite;
}

.crystal-2 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: -80px;
    border-radius: 30px;
    animation: crystalFloat 15s ease-in-out infinite reverse;
}

.crystal-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    border-radius: 20px;
    border-color: rgba(95, 181, 212, 0.08);
    animation: crystalFloat 18s ease-in-out infinite;
    animation-delay: -5s;
}

.crystal-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 30%;
    border-radius: 12px;
    border-color: rgba(95, 181, 212, 0.06);
    animation: crystalFloat 12s ease-in-out infinite reverse;
    animation-delay: -3s;
}

.crystal-5 {
    width: 120px;
    height: 120px;
    bottom: 10%;
    left: 15%;
    border-radius: 18px;
    border-color: rgba(95, 181, 212, 0.1);
    animation: crystalFloat 22s ease-in-out infinite;
    animation-delay: -8s;
}

.crystal-6 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 25%;
    border-radius: 10px;
    border-color: rgba(95, 181, 212, 0.07);
    animation: crystalFloat 14s ease-in-out infinite reverse;
    animation-delay: -2s;
}

.crystal-7 {
    width: 180px;
    height: 180px;
    top: 10%;
    right: 30%;
    border-radius: 24px;
    border-color: rgba(95, 181, 212, 0.05);
    animation: crystalFloat 25s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes crystalFloat {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    25% { transform: rotate(48deg) translate(10px, -15px); }
    50% { transform: rotate(42deg) translate(-5px, 10px); }
    75% { transform: rotate(47deg) translate(8px, 5px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-line:first-child {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--primary);
}

.title-accent {
    font-size: clamp(3.5rem, 9vw, 7rem);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: var(--space-2xl);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

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

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, var(--frost-silver), transparent);
}

.hero-visual {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-image-frame {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frost {
    position: absolute;
    inset: -20px;
    background: rgba(95, 181, 212, 0.06);
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: 50%;
    animation: frostPulse 4s ease-in-out infinite;
}

@keyframes frostPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}

.hero-game-icon {
    width: 220px;
    height: 220px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow:
        0 20px 60px rgba(15, 34, 64, 0.15),
        0 0 0 1px rgba(95, 181, 212, 0.2);
}

.hero-image-glow {
    position: absolute;
    inset: 20%;
    background: radial-gradient(circle, rgba(95, 181, 212, 0.2), transparent 70%);
    z-index: 1;
    filter: blur(30px);
}

.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: 1;
}

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

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

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- Animations --- */
.animate-in {
    animation: fadeSlideUp 0.8s var(--ease-out) both;
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* --- Social Proof Ticker --- */
.social-proof-bar {
    background: var(--primary);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
}

.social-proof-bar::before,
.social-proof-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.social-proof-bar::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.social-proof-bar::after {
    right: 0;
    background: linear-gradient(270deg, var(--primary), transparent);
}

.ticker-track {
    display: flex;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);
    animation: tickerScroll 40s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: rgba(240, 245, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

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

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

/* --- Sections --- */
.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-md);
    padding: 0.3rem 0.9rem;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* --- About Section --- */
.section-about {
    background: linear-gradient(180deg, var(--frost-ice) 0%, var(--frost-white) 100%);
}

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

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

.about-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: rgba(95, 181, 212, 0.06);
    border: 1px solid rgba(95, 181, 212, 0.12);
    border-radius: var(--radius-lg);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.about-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 16/10;
}

.gallery-item-large {
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 34, 64, 0.6));
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

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

.gallery-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
    padding: 0.25rem 0.75rem;
    background: rgba(95, 181, 212, 0.5);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: rgba(15, 27, 51, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s var(--ease-out);
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: var(--space-xl);
    right: var(--space-xl);
}

.lightbox-prev {
    left: var(--space-xl);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: var(--space-xl);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Features Section --- */
.section-features {
    background: linear-gradient(180deg, var(--frost-white) 0%, var(--frost-ice) 100%);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.feature-showcase {
    position: sticky;
    top: 100px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
}

.feature-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.feature-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: background var(--duration-normal) var(--ease-out);
}

.feature-item:hover {
    background: rgba(95, 181, 212, 0.04);
}

.feature-number {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: var(--radius-sm);
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Community Section --- */
.community-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.comm-stat {
    padding: var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.comm-stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.06);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
}

.comm-stat-num {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.comm-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- Registration Section --- */
.section-register {
    background: linear-gradient(180deg, var(--frost-ice) 0%, var(--frost-white) 100%);
    position: relative;
}

.section-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(95, 181, 212, 0.2), transparent);
}

.register-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

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

.register-info .section-tag {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.register-info .section-title {
    text-align: left;
    margin-bottom: var(--space-lg);
}

.register-info > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: var(--space-2xl);
}

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

.register-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
}

.register-trust {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: var(--space-md);
    background: rgba(95, 181, 212, 0.04);
    border: 1px solid rgba(95, 181, 212, 0.1);
    border-radius: var(--radius-md);
}

/* --- Form Styles --- */
.register-form-wrapper,
.contact-form-wrapper {
    padding: var(--space-2xl);
}

.register-form h3,
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.01em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: color var(--duration-fast) var(--ease-out);
}

.input-wrapper input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.75rem;
    background: rgba(240, 245, 255, 0.6);
    border: 1.5px solid rgba(95, 181, 212, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all var(--duration-fast) var(--ease-out);
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(240, 245, 255, 0.9);
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.1);
}

.input-wrapper input:focus + svg,
.input-wrapper:focus-within svg {
    color: var(--accent);
}

.input-wrapper input.error {
    border-color: var(--error);
}

.form-error {
    font-size: 0.75rem;
    color: var(--error);
    margin-top: var(--space-xs);
    display: block;
    min-height: 0;
}

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

.frost-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.frost-checkbox-mark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid rgba(95, 181, 212, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    margin-top: 1px;
    background: rgba(240, 245, 255, 0.6);
}

.frost-checkbox input:checked + .frost-checkbox-mark {
    background: var(--accent);
    border-color: var(--accent);
}

.frost-checkbox input:checked + .frost-checkbox-mark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.frost-checkbox input:focus-visible + .frost-checkbox-mark {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.required-star {
    color: var(--error);
    font-weight: 700;
}

.frost-checkbox a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
    animation: fadeSlideUp 0.4s var(--ease-out);
}

.form-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-success strong {
    color: var(--success);
}

.form-success p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-error-msg {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-error-msg strong {
    color: var(--error);
}

.form-error-msg p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Spinner */
.spinner {
    animation: spin 0.8s linear infinite;
}

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

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

/* --- FAQ Section --- */
.section-faq {
    background: var(--frost-white);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    overflow: hidden;
    transition: border-color var(--duration-normal) var(--ease-out);
}

.faq-item.active {
    border-color: rgba(95, 181, 212, 0.35);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--duration-normal) var(--ease-out);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
    padding: 0 var(--space-xl);
}

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

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* --- Contact Section --- */
.section-contact {
    background: linear-gradient(180deg, var(--frost-ice) 0%, var(--frost-white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: start;
}

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

.contact-card {
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(95, 181, 212, 0.06);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.contact-card a {
    font-size: 0.85rem;
    color: var(--accent);
}

.contact-card span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

/* --- Trust Section --- */
.section-trust {
    background: var(--frost-white);
    padding-bottom: var(--space-4xl);
}

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

.trust-card {
    padding: var(--space-2xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

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

/* --- Footer --- */
.footer {
    background: var(--primary-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(95, 181, 212, 0.3), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(95, 181, 212, 0.1);
}

.footer-logo .logo-text {
    color: var(--frost-white);
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(240, 245, 255, 0.5);
    line-height: 1.6;
    margin-top: var(--space-md);
    max-width: 300px;
}

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

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(240, 245, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(240, 245, 255, 0.45);
    margin-bottom: var(--space-sm);
    transition: color var(--duration-fast) var(--ease-out);
}

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

.footer-address {
    display: block;
    font-size: 0.82rem;
    color: rgba(240, 245, 255, 0.35);
    line-height: 1.6;
    margin-top: var(--space-sm);
}

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

.footer-copy p {
    font-size: 0.78rem;
    color: rgba(240, 245, 255, 0.35);
}

.footer-age {
    margin-top: var(--space-xs);
}

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

.age-badge,
.ssl-badge,
.gdpr-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(95, 181, 212, 0.2);
    color: rgba(240, 245, 255, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-toast);
    width: calc(100% - var(--space-3xl));
    max-width: 720px;
    background: rgba(248, 251, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(95, 181, 212, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 16px 48px rgba(15, 34, 64, 0.15);
    animation: slideUpBanner 0.5s var(--ease-out);
}

@keyframes slideUpBanner {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-inner {
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

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

.cookie-icon {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.cookie-text p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

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

.cookie-settings {
    padding: 0 var(--space-xl) var(--space-xl);
    border-top: 1px solid rgba(95, 181, 212, 0.1);
    margin-top: 0;
    animation: fadeIn 0.3s var(--ease-out);
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(95, 181, 212, 0.06);
}

.cookie-setting-row:last-of-type {
    border-bottom: none;
    margin-bottom: var(--space-md);
}

.cookie-setting-row strong {
    font-size: 0.85rem;
    color: var(--primary);
    display: block;
}

.cookie-setting-row span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Toggle Switch */
.frost-toggle {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.frost-toggle.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.frost-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.frost-toggle-track {
    display: block;
    width: 40px;
    height: 22px;
    background: rgba(95, 181, 212, 0.15);
    border-radius: var(--radius-full);
    position: relative;
    transition: background var(--duration-fast) var(--ease-out);
}

.frost-toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    transition: transform var(--duration-fast) var(--ease-out);
}

.frost-toggle input:checked + .frost-toggle-track {
    background: var(--accent);
}

.frost-toggle input:checked + .frost-toggle-track::after {
    transform: translateX(18px);
}

/* --- Legal Pages --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: calc(72px + var(--space-3xl)) var(--space-xl) var(--space-4xl);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.legal-content .legal-updated {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: var(--space-3xl);
    font-family: var(--font-mono);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

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

.legal-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.legal-content li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.legal-content strong {
    color: var(--text-primary);
}

.legal-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 700px;
    }

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

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

    .feature-showcase {
        position: relative;
        top: 0;
    }

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

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

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

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

    .register-layout {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .nav-container {
        height: 60px;
    }

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

    .hero-stats {
        gap: var(--space-lg);
    }

    .hero-stat-divider {
        display: none;
    }

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

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

    .community-stats {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

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

    .cookie-actions {
        flex-wrap: wrap;
    }

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

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 60px;
        transform: none;
    }

    .lightbox-prev {
        left: var(--space-lg);
    }

    .lightbox-next {
        right: var(--space-lg);
    }
}

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

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

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

    .community-stats {
        grid-template-columns: 1fr;
    }

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

    .cookie-banner {
        bottom: var(--space-md);
        width: calc(100% - var(--space-xl));
    }
}

/* --- Print Styles --- */
@media print {
    .nav-header,
    .cookie-banner,
    .mobile-overlay,
    .hero-bg,
    .social-proof-bar,
    .hero-scroll-indicator {
        display: none !important;
    }

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

    .frost-card {
        border: 1px solid #ccc;
        box-shadow: none;
        backdrop-filter: none;
    }
}

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

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* --- High Contrast --- */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.95);
        --glass-border: rgba(0, 0, 0, 0.3);
    }

    .frost-card {
        backdrop-filter: none;
    }
}
