:root {
    --primary: #00d2ff;
    --secondary: #3a7bd5;
    --bg-dark: #07070a;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 7, 10, 0.4) 0%, var(--bg-dark) 100%);
    z-index: 2;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 3rem 2rem;
    animation: fadeIn 2s ease-out;
    width: 100%;
}

.logo-container {
    margin-bottom: 2.5rem;
}

.logo {
    max-width: 180px;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 210, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glitch {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.3));
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    min-width: 110px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.time-block:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.time {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
    line-height: 1;
}

.label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.8rem;
    font-weight: 400;
}

/* Form */
.notify-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 1.05rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notify-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.notify-form button {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.notify-form button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.5);
}

.notify-form button:active {
    transform: translateY(1px);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .glitch { font-size: 2.8rem; }
    .countdown { gap: 1rem; }
    .time-block { min-width: 80px; padding: 1.2rem 1rem; }
    .time { font-size: 2rem; }
    .notify-form { flex-direction: column; }
    .notify-form button { width: 100%; }
    .content { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .glitch { font-size: 2rem; }
    .subtitle { font-size: 1rem; }
    .time-block { min-width: 70px; padding: 1rem 0.8rem; }
    .time { font-size: 1.5rem; }
    .label { font-size: 0.7rem; letter-spacing: 1px; }
}
