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

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

:root {
    --primary: #ff71ce;
    --secondary: #01cdfe;
    --accent: #b967ff;
    --dark: #0a0a1a;
    --dark-alt: #12122a;
    --dark-card: #1a1a3e;
    --dark-surface: #1e1e42;
    --text-primary: #f0e6ff;
    --text-secondary: #b8a9d4;
    --text-muted: #7a6b96;
    --white: #ffffff;
    --gradient-sunset: linear-gradient(180deg, #ff71ce 0%, #ff9a5c 25%, #b967ff 50%, #01cdfe 100%);
    --gradient-main: linear-gradient(135deg, #ff71ce, #b967ff, #01cdfe);
    --gradient-card: linear-gradient(145deg, rgba(185, 103, 255, 0.08), rgba(1, 205, 254, 0.04));
    --gradient-hero: linear-gradient(180deg, #1a0a2e 0%, #0a0a1a 40%, #0d1b2a 100%);
    --glow-pink: 0 0 20px rgba(255, 113, 206, 0.4);
    --glow-cyan: 0 0 20px rgba(1, 205, 254, 0.4);
    --glow-purple: 0 0 20px rgba(185, 103, 255, 0.4);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-decorative: 'Monoton', cursive;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --header-height: 72px;
}

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

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

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

input, textarea {
    font-family: var(--font-body);
}

::selection {
    background: var(--primary);
    color: var(--dark);
}

/* ============================================
   VHS / NOISE OVERLAYS
   ============================================ */

.vhs-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.04;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 1px,
        rgba(255, 255, 255, 0.05) 1px,
        rgba(255, 255, 255, 0.05) 2px
    );
    animation: scanline-move 8s linear infinite;
}

@keyframes scanline-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9996;
    opacity: 0.025;
    background-image: 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='1'/%3E%3C/svg%3E");
    animation: noise-anim 0.5s steps(4) infinite;
}

@keyframes noise-anim {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5%, 5%); }
    50% { transform: translate(5%, -5%); }
    75% { transform: translate(-2%, 2%); }
    100% { transform: translate(0, 0); }
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: linear-gradient(135deg, rgba(26, 26, 62, 0.97), rgba(10, 10, 26, 0.98));
    border-top: 1px solid rgba(185, 103, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-icon {
    color: var(--secondary);
    font-family: var(--font-display);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
}

.btn-cookie.accept {
    background: var(--primary);
    color: var(--dark);
}

.btn-cookie.accept:hover {
    background: #ff8dd8;
    box-shadow: var(--glow-pink);
}

.btn-cookie.decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cookie.decline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-cookie.settings {
    background: transparent;
    color: var(--secondary);
    border: 1px solid rgba(1, 205, 254, 0.3);
}

.btn-cookie.settings:hover {
    border-color: var(--secondary);
    box-shadow: var(--glow-cyan);
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9990;
    transition: all var(--transition-base);
}

.main-header.scrolled {
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(185, 103, 255, 0.15);
}

.navbar {
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo-text {
    color: var(--text-primary);
}

.logo-accent {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255, 113, 206, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    box-shadow: 0 0 6px rgba(255, 113, 206, 0.5);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.nav-link.nav-cta:hover {
    box-shadow: var(--glow-pink);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 100;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition-base);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding: calc(var(--header-height) + 40px) 32px 60px;
}

.perspective-grid {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 60%;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(185, 103, 255, 0.08) 49.5%, rgba(185, 103, 255, 0.08) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(185, 103, 255, 0.06) 49.5%, rgba(185, 103, 255, 0.06) 50.5%, transparent 50.5%);
    background-size: 80px 80px;
    transform-origin: bottom center;
    transform: translateX(-50%) perspective(400px) rotateX(60deg);
    animation: grid-scroll 20s linear infinite;
    mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 70%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 70%);
}

@keyframes grid-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 80px; }
}

.hero-sun {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 154, 92, 0.4) 0%, rgba(255, 113, 206, 0.2) 40%, transparent 70%);
    filter: blur(40px);
    animation: sun-pulse 6s ease-in-out infinite;
}

@keyframes sun-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

.palm-left, .palm-right {
    position: absolute;
    bottom: 0;
    width: 180px;
    height: 400px;
    opacity: 0.06;
}

.palm-left {
    left: 5%;
    background: linear-gradient(to top right, var(--primary), transparent);
    clip-path: polygon(50% 0%, 100% 30%, 80% 100%, 20% 100%, 0% 30%);
}

.palm-right {
    right: 5%;
    background: linear-gradient(to top left, var(--secondary), transparent);
    clip-path: polygon(50% 0%, 100% 30%, 80% 100%, 20% 100%, 0% 30%);
}

.hero-content {
    max-width: 650px;
    text-align: left;
    z-index: 2;
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 103, 255, 0.12);
    border: 1px solid rgba(185, 103, 255, 0.25);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

@keyframes dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.title-line-2 {
    font-family: var(--font-decorative);
    font-size: clamp(40px, 6vw, 72px);
    letter-spacing: 4px;
    line-height: 1.1;
    margin-top: 4px;
}

.chrome-text {
    background: linear-gradient(
        180deg,
        #fff 0%,
        #ff71ce 25%,
        #b967ff 50%,
        #01cdfe 75%,
        #fff 100%
    );
    background-size: 100% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: chrome-shift 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 113, 206, 0.3));
}

@keyframes chrome-shift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 1s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(1, 205, 254, 0.3);
}

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

.hero-image-wrapper {
    z-index: 2;
    flex-shrink: 0;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image-frame {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(185, 103, 255, 0.3);
    box-shadow:
        0 0 40px rgba(185, 103, 255, 0.15),
        0 0 80px rgba(255, 113, 206, 0.08),
        inset 0 0 40px rgba(0, 0, 0, 0.3);
}

.hero-game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.frame-corner.tl { top: 8px; left: 8px; border-top-width: 2px; border-left-width: 2px; }
.frame-corner.tr { top: 8px; right: 8px; border-top-width: 2px; border-right-width: 2px; }
.frame-corner.bl { bottom: 8px; left: 8px; border-bottom-width: 2px; border-left-width: 2px; }
.frame-corner.br { bottom: 8px; right: 8px; border-bottom-width: 2px; border-right-width: 2px; }

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 113, 206, 0.4);
    color: var(--white);
}

.btn-primary::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 0.5s ease;
}

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

.btn-glow {
    animation: btn-glow-anim 3s ease-in-out infinite;
}

@keyframes btn-glow-anim {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 113, 206, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 113, 206, 0.4), 0 0 60px rgba(185, 103, 255, 0.2); }
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(1, 205, 254, 0.15);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    font-size: 18px;
    transition: transform var(--transition-fast);
}

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

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */

.social-proof-ticker {
    background: rgba(10, 10, 26, 0.8);
    border-top: 1px solid rgba(185, 103, 255, 0.1);
    border-bottom: 1px solid rgba(185, 103, 255, 0.1);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
}

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}

.ticker-dot.live {
    animation: dot-pulse 1.5s ease-in-out infinite;
}

/* ============================================
   SECTION COMMON
   ============================================ */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.section-title .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--gradient-main);
    margin: 16px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 113, 206, 0.3);
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 16px;
}

.about-badges {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(185, 103, 255, 0.08);
    border: 1px solid rgba(185, 103, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-secondary);
}

.badge-icon {
    color: var(--secondary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
}

.retro-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.retro-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform var(--transition-slow);
}

.retro-frame:hover img {
    transform: scale(1.03);
}

.retro-frame-border {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(1, 205, 254, 0.2);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.retro-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 113, 206, 0.1), transparent 50%, rgba(1, 205, 254, 0.1));
    pointer-events: none;
    border-radius: var(--radius-md);
}

/* ============================================
   SCREENSHOTS / GALLERY
   ============================================ */

.screenshots-section {
    padding: 100px 0;
    background: var(--dark-alt);
    position: relative;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
    border: 1px solid rgba(185, 103, 255, 0.1);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    border-color: rgba(255, 113, 206, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 113, 206, 0.1);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 26, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-zoom {
    font-family: var(--font-display);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
}

.gallery-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    background: rgba(10, 10, 26, 0.8);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(185, 103, 255, 0.2);
}

.gallery-large {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@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);
    border: 2px solid rgba(185, 103, 255, 0.2);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-primary);
    background: rgba(26, 26, 62, 0.8);
    border: 1px solid rgba(185, 103, 255, 0.2);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 113, 206, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid rgba(185, 103, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card:hover {
    border-color: rgba(255, 113, 206, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 113, 206, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    margin-bottom: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 103, 255, 0.06);
    border: 1px solid rgba(185, 103, 255, 0.12);
    border-radius: var(--radius-md);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    padding: 100px 0;
    background: var(--dark-alt);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(185, 103, 255, 0.04);
    border: 1px solid rgba(185, 103, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.trust-card:hover {
    border-color: rgba(1, 205, 254, 0.2);
    background: rgba(1, 205, 254, 0.04);
    transform: translateY(-4px);
}

.trust-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(185, 103, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(185, 103, 255, 0.25);
}

.faq-item.active {
    border-color: rgba(255, 113, 206, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(185, 103, 255, 0.04);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: rgba(185, 103, 255, 0.08);
}

.faq-toggle {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--secondary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

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

/* ============================================
   SIGNUP SECTION
   ============================================ */

.signup-section {
    padding: 100px 0;
    background: var(--dark-alt);
    position: relative;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0.3;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.signup-form-container {
    background: rgba(185, 103, 255, 0.04);
    border: 1px solid rgba(185, 103, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid rgba(185, 103, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(1, 205, 254, 0.1);
    background: rgba(10, 10, 26, 0.8);
}

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

.form-error {
    display: block;
    font-size: 12px;
    color: #ff4757;
    margin-top: 4px;
    min-height: 16px;
}

.form-checkbox {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.form-error-msg {
    text-align: center;
    padding: 20px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.2);
    border-radius: var(--radius-md);
    animation: fadeIn 0.3s ease;
}

.form-error-msg p {
    color: #ff6b7a;
    font-size: 14px;
}

.signup-info {
    position: sticky;
    top: 100px;
}

.info-card {
    background: rgba(185, 103, 255, 0.04);
    border: 1px solid rgba(185, 103, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.list-check {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--secondary);
    flex-shrink: 0;
}

.info-note {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(185, 103, 255, 0.1);
}

.info-note p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--dark);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(185, 103, 255, 0.03) 49.5%, rgba(185, 103, 255, 0.03) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(185, 103, 255, 0.02) 49.5%, rgba(185, 103, 255, 0.02) 50.5%, transparent 50.5%);
    background-size: 60px 60px;
    pointer-events: none;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-main);
    opacity: 0.5;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(185, 103, 255, 0.08);
}

.footer-logo {
    display: flex;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

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

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-address {
    margin-bottom: 8px;
}

.footer-address p {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.footer-copy p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-responsible p {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 60px) 32px 80px;
    min-height: 100vh;
}

.legal-content .legal-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    padding: 60px 56px;
    border: 1px solid rgba(185, 103, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: #1a1a2e;
}

.legal-card h1 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-card .legal-date {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 32px;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legal-card h2 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a2e;
    margin-top: 36px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(185, 103, 255, 0.2);
}

.legal-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: #2d2d4e;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 14px;
}

.legal-card ul,
.legal-card ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-card ul {
    list-style: disc;
}

.legal-card ol {
    list-style: decimal;
}

.legal-card li {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 6px;
}

.legal-card a {
    color: #b967ff;
    text-decoration: underline;
}

.legal-card a:hover {
    color: #ff71ce;
}

.legal-card strong {
    color: #1a1a2e;
    font-weight: 600;
}

.legal-card .contact-box {
    background: linear-gradient(135deg, rgba(185, 103, 255, 0.08), rgba(1, 205, 254, 0.05));
    border: 1px solid rgba(185, 103, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 24px 0;
}

.legal-card .contact-box p {
    margin-bottom: 4px;
}

.legal-card .rights-list {
    list-style: none;
    padding-left: 0;
}

.legal-card .rights-list li {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(185, 103, 255, 0.04);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

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

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-top: calc(var(--header-height) + 60px);
    }

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

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

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

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

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

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

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

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

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--transition-base);
        border-left: 1px solid rgba(185, 103, 255, 0.15);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 13px;
    }

    .nav-link.nav-cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
    }

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

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

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

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

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

    .hero-stats {
        gap: 24px;
    }

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

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

    .signup-form-container {
        padding: 28px 20px;
    }

    .legal-card {
        padding: 36px 24px !important;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .btn-cookie {
        flex: 1;
        text-align: center;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 20px;
    }

    .hero-section {
        padding-left: 20px;
        padding-right: 20px;
    }

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent), var(--secondary));
}

/* ============================================
   FOCUS STYLES (Accessibility)
   ============================================ */

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

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