/* ============================================================
   SCULPT PEOPLE - VAPORWAVE DESIGN SYSTEM
   astralcrash.com
   ============================================================ */

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

:root {
    /* Core Vaporwave Palette */
    --color-primary: #ff71ce;
    --color-secondary: #01cdfe;
    --color-accent: #b967ff;
    --color-hot-pink: #ff2d95;
    --color-neon-blue: #05ffa1;
    --color-sunset-orange: #ff6b35;
    --color-sunset-yellow: #fffb96;

    /* Background Tones */
    --bg-deep: #0a0018;
    --bg-dark: #120025;
    --bg-mid: #1a0035;
    --bg-card: rgba(20, 0, 45, 0.7);
    --bg-card-solid: #1a0040;
    --bg-glass: rgba(255, 255, 255, 0.04);

    /* Text */
    --text-white: #ffffff;
    --text-light: #e0d0f0;
    --text-muted: #a090b8;
    --text-dim: #6a5a80;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #ff71ce 0%, #b967ff 50%, #01cdfe 100%);
    --gradient-sunset: linear-gradient(180deg, #ff6b35 0%, #ff71ce 30%, #b967ff 60%, #2d1b69 100%);
    --gradient-hero: linear-gradient(180deg, #1a0035 0%, #0a0018 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,113,206,0.1) 0%, rgba(1,205,254,0.05) 100%);
    --gradient-text: linear-gradient(90deg, #ff71ce, #b967ff, #01cdfe);

    /* Borders */
    --border-glow: 1px solid rgba(185, 103, 255, 0.3);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);

    /* Shadows */
    --shadow-glow-pink: 0 0 30px rgba(255, 113, 206, 0.3);
    --shadow-glow-blue: 0 0 30px rgba(1, 205, 254, 0.3);
    --shadow-glow-purple: 0 0 30px rgba(185, 103, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Righteous', cursive;
    --font-body: 'Rajdhani', sans-serif;

    /* Sizing */
    --header-height: 80px;
    --container-max: 1280px;
    --container-padding: 24px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-light);
    background: var(--bg-deep);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

ul, ol {
    list-style: none;
}

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

input, textarea {
    font-family: inherit;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- 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,
        rgba(0, 0, 0, 0.03) 0px,
        rgba(0, 0, 0, 0.03) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.5;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: linear-gradient(135deg, rgba(20, 0, 45, 0.97) 0%, rgba(10, 0, 25, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(185, 103, 255, 0.3);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

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

.cookie-text p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--gradient-main);
    color: #fff;
    border: none;
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow-purple);
}

.btn-cookie-reject {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cookie-settings:hover {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.cookie-setting-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

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

/* --- AGE VERIFICATION MODAL --- */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 0, 15, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.age-modal-content {
    position: relative;
    width: 90%;
    max-width: 460px;
}

.age-modal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(185, 103, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.age-modal-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 0, 60, 0.95) 0%, rgba(15, 0, 35, 0.98) 100%);
    border: 1px solid rgba(185, 103, 255, 0.4);
    border-radius: var(--border-radius-lg);
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 0 60px rgba(185, 103, 255, 0.15), var(--shadow-heavy);
}

.age-icon-wrapper {
    margin-bottom: 24px;
}

.age-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.age-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-age {
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-age-yes {
    background: var(--gradient-main);
    color: #fff;
    border: none;
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-purple);
}

.btn-age-no {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-age-no:hover {
    background: rgba(255, 45, 45, 0.15);
    border-color: rgba(255, 45, 45, 0.3);
    color: #ff6b6b;
}

/* --- HEADER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.main-header.scrolled {
    background: rgba(10, 0, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(185, 103, 255, 0.1);
    border-bottom: 1px solid rgba(185, 103, 255, 0.15);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
}

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-base);
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 1px;
    transition: transform var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-main);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-purple);
    color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    gap: 6px;
    padding: 8px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(10, 0, 24, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-muted);
    padding: 12px 32px;
    transition: all var(--transition-base);
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: var(--text-white);
    transform: scale(1.05);
}

.mobile-nav-cta {
    margin-top: 16px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Perspective Grid */
.hero-grid-bg {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 50%;
    background:
        linear-gradient(90deg, rgba(185, 103, 255, 0.15) 1px, transparent 1px),
        linear-gradient(0deg, rgba(185, 103, 255, 0.15) 1px, transparent 1px);
    background-size: 80px 40px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center top;
    animation: gridScroll 8s linear infinite;
}

@keyframes gridScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

/* Sun */
.hero-sun {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fffb96 0%, #ff6b35 30%, #ff71ce 60%, #b967ff 100%);
    box-shadow: 0 0 100px rgba(255, 107, 53, 0.5), 0 0 200px rgba(255, 113, 206, 0.3);
    /* Horizontal stripe effect */
    -webkit-mask-image: repeating-linear-gradient(
        180deg,
        #000 0px,
        #000 8px,
        transparent 8px,
        transparent 12px
    );
    mask-image: repeating-linear-gradient(
        180deg,
        #000 0px,
        #000 8px,
        transparent 8px,
        transparent 12px
    );
    opacity: 0.8;
    animation: sunPulse 6s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.02); }
}

.hero-mountains {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-mountains svg {
    width: 100%;
    height: auto;
}

/* Palm Trees */
.hero-palm {
    position: absolute;
    bottom: 10%;
    z-index: 3;
    opacity: 0.6;
}

.hero-palm-left {
    left: 5%;
    animation: palmSway 8s ease-in-out infinite;
}

.hero-palm-right {
    right: 5%;
    animation: palmSway 10s ease-in-out infinite reverse;
}

@keyframes palmSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    text-align: left;
    animation: heroFadeIn 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 113, 206, 0.1);
    border: 1px solid rgba(255, 113, 206, 0.3);
    border-radius: var(--border-radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
    animation: heroFadeIn 1s ease-out 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: 16px;
    animation: heroFadeIn 1s ease-out 0.3s both;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 4px;
}

.title-line-1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--text-white);
    text-shadow:
        0 0 20px rgba(255, 113, 206, 0.5),
        0 0 40px rgba(255, 113, 206, 0.3),
        0 0 80px rgba(255, 113, 206, 0.1);
}

.title-line-2 {
    font-size: clamp(3rem, 8vw, 6rem);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(185, 103, 255, 0.4));
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-secondary);
    margin-bottom: 16px;
    letter-spacing: 1px;
    animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
    animation: heroFadeIn 1s ease-out 0.5s both;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease-out 0.6s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-main);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 113, 206, 0.4), 0 0 60px rgba(185, 103, 255, 0.2);
    color: #fff;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 113, 206, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: heroFadeIn 1s ease-out 0.7s both;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 10;
    animation: heroFadeIn 1s ease-out 0.4s both;
}

.hero-image-frame {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    border: 2px solid rgba(185, 103, 255, 0.4);
    box-shadow: var(--shadow-glow-purple), var(--shadow-heavy);
}

.hero-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(185, 103, 255, 0.2) 0%, transparent 60%);
    animation: glowRotate 10s linear infinite;
}

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

.hero-game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Floating Badges */
.hero-floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(15, 0, 35, 0.9);
    border: 1px solid rgba(185, 103, 255, 0.3);
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fb-1 {
    top: -10px;
    right: -30px;
    animation: floatBadge 4s ease-in-out infinite;
}

.fb-2 {
    bottom: 60px;
    left: -50px;
    animation: floatBadge 5s ease-in-out infinite 1s;
}

.fb-3 {
    top: 60px;
    left: -40px;
    animation: floatBadge 4.5s ease-in-out infinite 0.5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Social Proof Ticker */
.social-proof-ticker {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
    height: 40px;
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

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

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    opacity: 0.7;
}

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

/* --- SECTION COMMON STYLES --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(185, 103, 255, 0.1);
    border: 1px solid rgba(185, 103, 255, 0.25);
    border-radius: var(--border-radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 16px;
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- ABOUT SECTION --- */
.about-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 113, 206, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(1, 205, 254, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

.about-card:hover {
    border-color: rgba(185, 103, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-purple);
}

.about-card-main {
    grid-row: 1 / 4;
}

.about-card-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

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

.about-card:hover .about-card-visual img {
    transform: scale(1.05);
}

.about-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 25, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-card:hover .about-card-overlay {
    opacity: 1;
}

.play-indicator {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(185, 103, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(185, 103, 255, 0.5);
    transition: transform var(--transition-bounce);
}

.about-card:hover .play-indicator {
    transform: scale(1.1);
}

.about-card-info {
    padding: 28px;
}

.about-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

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

.about-card-side {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.about-card-side h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-white);
}

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

/* --- SCREENSHOTS SECTION --- */
.screenshots-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-deep);
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(185, 103, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.screenshots-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    gap: 24px;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
}

.screenshot-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid rgba(185, 103, 255, 0.2);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    background: var(--bg-card);
}

.screenshot-frame:hover {
    border-color: rgba(185, 103, 255, 0.5);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-purple), var(--shadow-heavy);
}

.screenshot-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(10, 0, 25, 0.9));
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(185, 103, 255, 0.1);
    border: 1px solid rgba(185, 103, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: rgba(185, 103, 255, 0.2);
    border-color: rgba(185, 103, 255, 0.5);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(185, 103, 255, 0.5);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(185, 103, 255, 0.5);
}

/* --- FEATURES SECTION --- */
.features-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.section-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(185, 103, 255, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(185, 103, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

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

.feature-card:hover {
    border-color: rgba(185, 103, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow-purple);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(185, 103, 255, 0.08);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.feature-icon-wrap {
    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(--border-radius-md);
    margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

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

/* --- LIVE SECTION --- */
.live-section {
    padding: 60px 0;
    background: var(--bg-deep);
}

.live-banner {
    background: linear-gradient(135deg, rgba(255, 113, 206, 0.08) 0%, rgba(1, 205, 254, 0.05) 50%, rgba(185, 103, 255, 0.08) 100%);
    border: 1px solid rgba(185, 103, 255, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff2d2d;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 45, 45, 0.5);
}

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

.live-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #ff2d2d;
    letter-spacing: 3px;
}

.live-counters {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 24px;
}

.live-counter-item {
    text-align: center;
}

.live-counter-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 1px;
}

.live-counter-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-counter-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- SIGNUP SECTION --- */
.signup-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.signup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 113, 206, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(1, 205, 254, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.signup-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.signup-benefits li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Signup Form */
.signup-form-wrapper {
    background: linear-gradient(135deg, rgba(30, 0, 60, 0.6) 0%, rgba(15, 0, 35, 0.8) 100%);
    border: 1px solid rgba(185, 103, 255, 0.25);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-heavy), 0 0 40px rgba(185, 103, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 28px;
    text-align: center;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

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

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-dim);
    pointer-events: none;
    transition: color var(--transition-base);
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    color: var(--text-white);
    transition: all var(--transition-base);
    outline: none;
}

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

.input-wrapper input:focus {
    border-color: var(--color-accent);
    background: rgba(185, 103, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(185, 103, 255, 0.1);
}

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

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #ff4d6a;
    margin-top: 6px;
    min-height: 0;
}

/* Checkbox */
.form-consent {
    margin-bottom: 16px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-top: 1px;
    position: relative;
}

.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    transition: transform var(--transition-bounce);
    margin-top: -2px;
}

.checkbox-wrapper input:checked + .checkbox-custom {
    background: var(--gradient-main);
    border-color: transparent;
}

.checkbox-wrapper input:checked + .checkbox-custom::after {
    transform: rotate(-45deg) scale(1);
}

.checkbox-text a {
    color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--gradient-main);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 113, 206, 0.4);
}

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

.btn-submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

.form-message {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: rgba(5, 255, 161, 0.1);
    border: 1px solid rgba(5, 255, 161, 0.3);
    color: var(--color-neon-blue);
}

.form-message.error {
    background: rgba(255, 77, 106, 0.1);
    border: 1px solid rgba(255, 77, 106, 0.3);
    color: #ff4d6a;
}

/* --- FAQ SECTION --- */
.faq-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-deep);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-item.open {
    border-color: rgba(185, 103, 255, 0.3);
    box-shadow: 0 0 20px rgba(185, 103, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    transition: color var(--transition-base);
    gap: 16px;
}

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

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

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

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

.contact-card {
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: rgba(185, 103, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-purple);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 103, 255, 0.06);
    border: 1px solid rgba(185, 103, 255, 0.15);
    border-radius: 50%;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.contact-link {
    display: block;
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
    word-break: break-all;
}

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

/* --- TRUST SECTION --- */
.trust-section {
    padding: 60px 0;
    background: var(--bg-deep);
}

.trust-banner {
    background: linear-gradient(135deg, rgba(255, 113, 206, 0.05) 0%, rgba(1, 205, 254, 0.05) 100%);
    border: 1px solid rgba(185, 103, 255, 0.15);
    border-radius: var(--border-radius-xl);
    padding: 48px 40px;
    text-align: center;
}

.trust-icon-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- FOOTER --- */
.main-footer {
    position: relative;
    background: rgba(10, 0, 25, 0.9);
    padding-top: 0;
}

.footer-top-wave {
    width: 100%;
    line-height: 0;
    margin-bottom: -1px;
}

.footer-top-wave svg {
    width: 100%;
    height: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-links span {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition-base);
    text-decoration: none;
}

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

.footer-contact-links li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-links svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--text-dim);
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 24px;
}

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

.footer-disclaimer {
    margin-top: 8px;
    font-size: 0.78rem !important;
    max-width: 700px;
}

.footer-age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 113, 206, 0.1);
    border: 2px solid rgba(255, 113, 206, 0.4);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* --- LEGAL PAGES --- */
.legal-hero {
    padding: calc(var(--header-height) + 60px) 0 40px;
    background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
    text-align: center;
    position: relative;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(185, 103, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.legal-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-white);
    margin-bottom: 12px;
    position: relative;
}

.legal-hero-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
}

.legal-body {
    padding: 60px 0 100px;
    background: var(--bg-dark);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--border-radius-xl);
    padding: 48px 52px;
    color: #1a1a2e;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(185, 103, 255, 0.15);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #1a0035;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(185, 103, 255, 0.15);
}

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

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #2a0050;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

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

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

.legal-content li {
    font-size: 0.93rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-content a {
    color: #7c3aed;
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.legal-footer-note {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 2px solid rgba(185, 103, 255, 0.15);
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: #666;
}

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

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-description {
        margin: 0 auto 32px;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .hero-palm {
        display: none;
    }

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

    .about-card-main {
        grid-row: auto;
    }

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

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

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

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

    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --container-padding: 16px;
    }

    .main-nav {
        display: none;
    }

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

    .btn-header-cta {
        display: none;
    }

    .hero-sun {
        width: 200px;
        height: 200px;
        bottom: 30%;
    }

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

    .floating-badge {
        display: none;
    }

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

    .live-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }

    .live-counters {
        width: 100%;
    }

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

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

    .legal-content {
        padding: 28px 20px;
        border-radius: var(--border-radius-lg);
    }

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

    .carousel-slide {
        flex: 0 0 calc(100% - 0px);
        min-width: unset;
    }

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

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

    .trust-icon-grid {
        gap: 24px;
    }

    .social-proof-ticker {
        display: none;
    }

    .age-modal-inner {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .live-counters {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .vhs-overlay,
    .noise-overlay {
        display: none;
    }

    .hero-grid-bg {
        animation: none;
    }

    .ticker-inner {
        animation: none;
    }
}

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

/* Selection */
::selection {
    background: rgba(185, 103, 255, 0.3);
    color: var(--text-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(185, 103, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(185, 103, 255, 0.5);
}
