/* ============================================
   STREETBALL ALLSTAR - NEUMORPHISM DESIGN
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg: #e0e5ec;
    --bg-dark: #c8cdd5;
    --bg-light: #f0f5fc;
    --primary: #6d5dfc;
    --primary-dark: #5a4bd4;
    --primary-light: #8b7eff;
    --accent: #ff6b9d;
    --accent-dark: #e0567f;
    --text-dark: #3a3f4b;
    --text-medium: #5a6070;
    --text-light: #8890a0;
    --white: #ffffff;
    --shadow-dark: #b8bec7;
    --shadow-light: #ffffff;
    --shadow-dark-strong: #a0a5ae;
    --neu-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --neu-shadow-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --neu-shadow-lg: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    --neu-inset: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
    --neu-inset-sm: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    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)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
    color: var(--text-medium);
    font-weight: 400;
}

/* --- Selection --- */
::selection {
    background: var(--primary);
    color: white;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--shadow-dark);
    border-radius: 10px;
    border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================
   NEUMORPHIC COMPONENTS
   ============================================ */

.neu-card {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--neu-shadow);
    padding: 32px;
    transition: var(--transition);
}

.neu-card:hover {
    box-shadow: var(--neu-shadow-lg);
}

.neu-card-inset {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--neu-inset);
    padding: 32px;
}

/* --- Buttons --- */
.btn-neu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary-neu {
    background: var(--primary);
    color: white;
    box-shadow: 6px 6px 12px var(--shadow-dark), -4px -4px 10px var(--shadow-light), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary-neu:hover {
    background: var(--primary-dark);
    color: white;
    box-shadow: 4px 4px 8px var(--shadow-dark), -2px -2px 6px var(--shadow-light);
    transform: translateY(-2px);
}

.btn-primary-neu:active {
    box-shadow: var(--neu-inset-sm);
    transform: translateY(0);
}

.btn-secondary-neu {
    background: var(--bg);
    color: var(--text-dark);
    box-shadow: var(--neu-shadow-sm);
}

.btn-secondary-neu:hover {
    color: var(--primary);
    box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    transform: translateY(-2px);
}

.btn-secondary-neu:active {
    box-shadow: var(--neu-inset-sm);
    transform: translateY(0);
}

.btn-outline-neu {
    background: transparent;
    color: var(--text-medium);
    border: 2px solid var(--shadow-dark);
}

.btn-outline-neu:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(224, 229, 236, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-icon {
    border-radius: 12px;
    box-shadow: var(--neu-shadow-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.logo-text strong {
    color: var(--primary);
    font-size: 1.3rem;
}

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

.nav-link {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
}

.nav-link.nav-cta {
    background: var(--primary);
    color: white;
    box-shadow: 4px 4px 8px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
}

.nav-link.nav-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    animation: floatShape 25s ease-in-out infinite;
}

.shape-ball {
    width: 120px;
    height: 120px;
    border: 4px solid var(--primary);
    top: 20%;
    left: 10%;
    opacity: 0.1;
    animation: spinBall 30s linear infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

@keyframes spinBall {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--neu-shadow-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line-1 {
    color: var(--text-dark);
    animation-delay: 0.3s;
}

.title-line-2 {
    color: var(--primary);
    animation-delay: 0.5s;
}

.title-line-3 {
    color: var(--accent);
    animation-delay: 0.7s;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 480px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.3s;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 0.6s;
}

.hero-image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--neu-shadow-lg);
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-image {
    transform: scale(1.03);
}

.frame-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 60px rgba(109, 93, 252, 0.1);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--neu-shadow);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 3;
}

.card-1 {
    top: -20px;
    right: -20px;
    animation: floatCard 4s ease-in-out infinite;
}

.card-2 {
    bottom: 30px;
    left: -30px;
    animation: floatCard 5s ease-in-out infinite 1s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid var(--text-light);
    border-radius: 14px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

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

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

.social-proof-ticker {
    padding: 20px 0;
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--neu-inset);
}

.ticker-track {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    flex-shrink: 0;
}

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

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 6px 20px;
    background: var(--bg);
    border-radius: 50px;
    box-shadow: var(--neu-shadow-sm);
}

.section-title {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
}

/* --- Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.about-card {
    text-align: center;
    padding: 40px 28px;
}

.about-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    box-shadow: var(--neu-shadow-sm);
}

.about-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.about-card p {
    font-size: 0.95rem;
}

.about-highlight {
    padding: 40px;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.highlight-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.highlight-text p {
    font-size: 0.95rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    padding: 0;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(109, 93, 252, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-caption {
    color: white;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
}

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

.gallery-item-large img {
    height: 400px;
}

.gallery-item:not(.gallery-item-large):not(.gallery-item-wide) img {
    height: 280px;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-wide img {
    height: 350px;
}

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

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary);
    opacity: 0.4;
    flex-shrink: 0;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.9rem;
}

.features-visual {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-phone-frame {
    text-align: center;
    padding: 48px 32px;
}

.features-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: var(--radius);
    box-shadow: var(--neu-shadow);
}

.phone-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.phone-platforms {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.features-counter-card {
    text-align: center;
    padding: 32px;
}

.counter-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
}

.counter-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
}

.features-counter-card p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ============================================
   LIVE ACTIVITY
   ============================================ */

.live-activity {
    padding: 60px 0;
}

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

.live-card {
    text-align: center;
    padding: 36px 24px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ef4444;
    margin-bottom: 16px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.live-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.live-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

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

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

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
    background: none;
    cursor: pointer;
}

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

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

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

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

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   REGISTRATION SECTION
   ============================================ */

.registration {
    padding: 100px 0;
}

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

.reg-info .section-tag {
    margin-bottom: 16px;
}

.reg-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.reg-info > p {
    font-size: 1.05rem;
    margin-bottom: 32px;
}

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

.reg-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Form */
.reg-form {
    padding: 40px;
}

.reg-form h3 {
    font-size: 1.8rem;
    margin-bottom: 28px;
    text-align: center;
}

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

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

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

.input-icon {
    position: absolute;
    left: 16px;
    pointer-events: none;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.input-wrapper input:focus {
    box-shadow: var(--neu-inset), 0 0 0 3px rgba(109, 93, 252, 0.2);
}

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

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

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

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

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

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-top: 1px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    box-shadow: 2px 2px 4px var(--shadow-dark), -1px -1px 3px var(--shadow-light);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.checkbox-label a {
    color: var(--primary);
    font-weight: 600;
}

/* Form Message */
.form-message {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-message.success {
    background: rgba(74, 222, 128, 0.15);
    color: #16a34a;
    box-shadow: var(--neu-inset-sm);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    box-shadow: var(--neu-inset-sm);
}

.btn-loader {
    display: inline-flex;
    align-items: center;
}

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

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

.trust-card {
    text-align: center;
    padding: 36px 24px;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    box-shadow: var(--neu-shadow-sm);
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.9rem;
}

.trust-card a {
    color: var(--primary);
    font-weight: 600;
}

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

.footer {
    padding: 60px 0 0;
    background: var(--bg);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--shadow-dark), transparent);
}

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    max-width: 280px;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

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

.footer-links-col a {
    color: var(--text-medium);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid var(--shadow-dark);
    gap: 20px;
}

.footer-bottom-left p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.footer-address {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-badge {
    display: flex;
}

.responsible-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.cookie-text a {
    color: var(--primary);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--shadow-dark);
}

.cookie-setting-item {
    margin-bottom: 12px;
}

.neu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

.neu-toggle input {
    display: none;
}

.toggle-slider {
    width: 48px;
    height: 26px;
    background: var(--bg);
    border-radius: 13px;
    box-shadow: var(--neu-inset-sm);
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
}

.toggle-slider::after {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--shadow-dark);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.neu-toggle input:checked + .toggle-slider::after {
    transform: translateX(22px);
    background: var(--primary);
}

.toggle-label {
    color: var(--text-medium);
    font-weight: 500;
}

.cookie-settings-panel .btn-neu {
    margin-top: 12px;
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */

.age-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.age-modal-content {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-lg);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.age-modal.visible .age-modal-content {
    transform: scale(1);
}

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

.age-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.age-modal-content p {
    font-size: 1rem;
    margin-bottom: 32px;
}

.age-modal-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

.legal-page {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: 60vh;
}

.legal-hero {
    text-align: center;
    margin-bottom: 40px;
}

.legal-hero h1 {
    margin-bottom: 8px;
}

.legal-hero p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.legal-content {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg);
}

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

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.legal-content ul {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.legal-content a {
    color: var(--primary);
    font-weight: 600;
}

.legal-footer-info {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid var(--bg);
}

.legal-footer-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

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

    .about-grid > :last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .features-visual {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

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

    .reg-info {
        text-align: center;
    }

    .reg-info .section-title {
        text-align: center;
    }

    .reg-benefits {
        align-items: center;
    }

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

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

    .live-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 8px;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

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

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .title-line {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

    .about-grid > :last-child {
        grid-column: span 1;
    }

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

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

    .gallery-item img,
    .gallery-item-large img,
    .gallery-item-wide img {
        height: 240px;
    }

    .live-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

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

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

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

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

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

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

    .highlight-content {
        flex-direction: column;
        text-align: center;
    }

    .reg-form {
        padding: 28px 20px;
    }

    .legal-content {
        padding: 28px 20px;
    }

    .scroll-indicator {
        display: none;
    }
}

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

    .hero-actions .btn-neu {
        width: 100%;
    }

    .btn-large {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Print Styles --- */
@media print {
    .header,
    .cookie-banner,
    .age-modal,
    .scroll-indicator,
    .social-proof-ticker {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .neu-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

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

    .ticker-content {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* --- Focus Styles for Accessibility --- */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

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

/* --- Skip Link (a11y) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 99999;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}
```

Now the JavaScript:

```javascript