/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0c;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Cyberpunk Glow Background Overlay */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 102, 0.15) 0%, rgba(10, 10, 12, 1) 70%);
    z-index: 1;
}

/* Main Container */
.container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

/* Logo Design */
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    color: #ffffff;
}

.logo span {
    color: #00ff66;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.6);
}

/* Typography */
h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.subtitle {
    font-size: 1.2rem;
    color: #8a8a93;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    letter-spacing: 1px;
}

/* Countdown Timer Grid */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.time-box {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(0, 255, 102, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
    padding: 20px;
    min-width: 110px;
    transition: all 0.3s ease;
}

.time-box:hover {
    border-color: #00ff66;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
    transform: translateY(-5px);
}

.time-box span {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff66;
    display: block;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.time-box p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #a0a0ab;
    margin-top: 5px;
    font-weight: 700;
}

/* Subscription Form */
.notify-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 4px;
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.notify-form input::placeholder {
    color: #666;
}

.notify-form button {
    background: #00ff66;
    color: #0a0a0c;
    border: none;
    padding: 0 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .subtitle { font-size: 1rem; }
    .countdown-container { gap: 15px; }
    .time-box { min-width: 85px; padding: 15px; }
    .time-box span { font-size: 1.8rem; }
    .notify-form { flex-direction: column; gap: 10px; background: transparent; border: none; padding: 0; }
    .notify-form input { border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03); border-radius: 4px; }
    .notify-form button { padding: 15px; border-radius: 4px; }
}