:root {
    --bg-dark: #0a0a0f;
    --primary-neon: #00ffcc;
    --primary-glow: rgba(0, 255, 204, 0.6);
    --secondary-neon: #b000ff;
    --text-main: #f0f0f5;
    --text-muted: #9ba1a6;
    --glass-bg: rgba(15, 15, 25, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* For custom scroll or no scroll on landing page */
}

/* Background & Overlay */
.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 15, 0.6) 0%, rgba(10, 10, 15, 0.95) 100%);
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background-color: var(--primary-neon);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

/* Main Container */
.container {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    z-index: 1;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 4rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mouse Hover Glow Effect */
.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
    mix-blend-mode: screen;
}

.glass-panel:hover .glow-effect {
    opacity: 0.15;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Header */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo i {
    color: var(--primary-neon);
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo h1 {
    margin: 0;
}

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

.badge {
    background: rgba(0, 255, 204, 0.1);
    color: var(--primary-neon);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 204, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Text */
.hero-text {
    margin-bottom: 3.5rem;
}

.hero-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text h2 span {
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

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

.time-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.time-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.separator {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: -1.5rem;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Notify Section */
.notify-section {
    width: 100%;
    max-width: 500px;
    margin-bottom: 3rem;
}

.notify-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.notify-form {
    display: flex;
    gap: 1rem;
    position: relative;
}

.input-group {
    position: relative;
    flex: 1;
}

.input-group i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.input-group input {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

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

.input-group input:focus {
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

.input-group input:focus + i {
    color: var(--primary-neon);
}

.neon-btn {
    background: var(--primary-neon);
    color: #000;
    border: none;
    padding: 0 2rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--primary-glow);
}

.neon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
    background: #fff;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    height: 20px;
    color: var(--primary-neon);
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-links a:hover {
    color: var(--primary-neon);
    background: rgba(0,255,204,0.1);
    border-color: rgba(0,255,204,0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,255,204,0.2);
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-panel {
        padding: 2rem;
    }
    .hero-text h2 {
        font-size: 2.5rem;
    }
    .countdown {
        gap: 0.8rem;
    }
    .time-value {
        font-size: 2.2rem;
    }
    .separator {
        font-size: 2rem;
    }
    .notify-form {
        flex-direction: column;
    }
    .neon-btn {
        padding: 1.2rem;
        justify-content: center;
    }
}
