/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0f0c20;
    color: #ffffff;
    overflow: hidden;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #ff4757;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff4757;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Dynamic Background Animation */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(40,18,74,1) 0%, rgba(15,12,32,1) 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.badge {
    background: rgba(255, 73, 87, 0.2);
    color: #ff4757;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    margin: 20px 0;
    font-weight: 800;
}

h1 span {
    color: #ff4757;
}

p {
    font-size: 18px;
    color: #a4b0be;
    margin-bottom: 40px;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    min-width: 90px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.time-box span {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.time-box p {
    font-size: 12px;
    margin: 0;
    color: #ff4757;
    text-transform: uppercase;
}

/* Notification Form */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    outline: none;
}

.notify-form button {
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    background: #ff4757;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.notify-form button:hover {
    background: #e84118;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .navbar { padding: 20px; }
    .nav-links { display: none; } /* Mobile par links hide ho jayenge */
    .countdown { gap: 10px; }
    .time-box { min-width: 70px; padding: 15px; }
    .time-box span { font-size: 24px; }
}
