/* Tech Theme Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #05050a;
    color: #f8fafc;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #38bdf8; /* Neon Blue */
    font-weight: 400;
    margin-left: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* Main Container */
.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 20px;
}

/* Glowing Background Lights */
.glow-1 {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 300px;
    height: 300px;
    background: #38bdf8;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 1;
}

.glow-2 {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: #818cf8;
    filter: blur(160px);
    opacity: 0.12;
    z-index: 1;
}

/* Content Box */
.main-box {
    text-align: center;
    max-width: 750px;
    z-index: 2;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 25px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 8px #38bdf8;
}

.animate-flicker {
    animation: flicker 2s infinite ease-in-out;
}

@keyframes flicker {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 45px;
}

/* Tech Countdown Layout */
.tech-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.timer-segment {
    text-align: center;
}

.timer-segment span {
    font-size: 42px;
    font-weight: 700;
    font-family: monospace;
    color: #f8fafc;
}

.timer-segment p {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 1px;
}

.timer-divider {
    font-size: 36px;
    font-weight: 300;
    color: #334155;
    padding-bottom: 20px;
}

/* Premium Form Input */
.join-form {
    max-width: 480px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 50px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group:focus-within {
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    font-size: 15px;
    outline: none;
}

.input-group input::placeholder {
    color: #475569;
}

.input-group button {
    background: #f8fafc;
    color: #05050a;
    border: none;
    padding: 0 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.input-group button:hover {
    background: #38bdf8;
    color: white;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .navbar { padding: 20px; }
    .nav-links { display: none; }
    h1 { font-size: 2.5rem; }
    .subtitle { font-size: 15px; }
    .timer-segment span { font-size: 30px; }
    .timer-divider { font-size: 24px; }
}
