:root {
    --color-bg: #050505;
    --color-surface: rgba(20, 20, 20, 0.6);
    --color-surface-hover: rgba(30, 30, 30, 0.8);
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-accent-1: #00F0FF; /* Neon Cyan */
    --color-accent-2: #FF00E5; /* Neon Pink */
    --color-border: rgba(255, 255, 255, 0.1);
    
    --font-primary: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s infinite alternate;
}

.orb-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-1), transparent 70%);
}

.orb-2 {
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-2), transparent 70%);
    animation-delay: -10s;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
header {
    padding: 24px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo h1 span {
    color: var(--color-accent-1);
    font-weight: 300;
}

.ticker {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    color: var(--color-accent-2);
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-accent-1), var(--color-accent-2));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 229, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-outline:hover {
    background: var(--color-surface);
    border-color: var(--color-accent-1);
}

/* Glass Panel */
.glass-panel {
    background: var(--color-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

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

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255,0,229,0.1);
    border: 1px solid rgba(255,0,229,0.3);
    border-radius: 20px;
    color: var(--color-accent-2);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Countdown */
.countdown-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.countdown-wrapper h3 {
    margin-bottom: 24px;
    font-size: 18px;
    color: var(--color-text-muted);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.time-box span {
    font-size: 48px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.time-box label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.separator {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent-1);
    margin-top: -20px;
}

.target-date {
    margin-top: 16px;
    font-weight: 700;
    color: var(--color-accent-1);
    letter-spacing: 2px;
}

.action-buttons {
    display: flex;
    gap: 20px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-watch {
    width: 100%;
    max-width: 500px;
    z-index: 2;
    animation: float-img 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.fallback-img {
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,240,255,0.2);
}

.circle-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
    z-index: 1;
    animation: spin 30s linear infinite;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.about-text h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-val {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-accent-1);
}

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

/* Vision Section */
.vision-section {
    padding: 100px 0;
}

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

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--color-text-muted);
}

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

.vision-card {
    padding: 40px 30px;
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent-2);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.vision-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.vision-card p {
    color: var(--color-text-muted);
}

/* Banner Section */
.banner-section {
    background: var(--color-accent-1);
    color: #000;
    padding: 20px 0;
    overflow: hidden;
    transform: rotate(-2deg) scale(1.05);
    margin: 100px 0;
}

.marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: scroll-left 20s linear infinite;
}

.marquee-content span {
    font-size: 32px;
    font-weight: 900;
    padding: 0 40px;
    text-transform: uppercase;
}

/* Footer */
footer {
    border-top: 1px solid var(--color-border);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 24px;
}

.footer-logo h2 span {
    color: var(--color-accent-1);
    font-weight: 300;
}

.footer-logo p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float-img {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .header-container nav {
        display: none; /* simple mobile hide for now */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .time-box span {
        font-size: 32px;
    }
    
    .time-box {
        width: 60px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}
