:root {
    --bg-color: #0b0f19;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-primary: #1877F2;
    --accent-secondary: #0866FF;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 2rem 0;
}

/* Background blob decorations for modern glassmorphism effect */
.background-decorations {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #8e2de2;
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Header & Logo */
.logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(24, 119, 242, 0.2));
    animation: pulseLogo 4s infinite alternate;
}

@keyframes pulseLogo {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Content */
.title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s ease-out;
}

.subtitle {
    font-size: 1.15rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeUp 1s ease-out 0.2s both;
}

.subtitle strong {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
}

.time-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 16px;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: rgba(24, 119, 242, 0.4);
}

.time-val {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}

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

/* Form */
.notify-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeUp 1s ease-out 0.6s both;
}

.input-group {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.4rem;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--accent-secondary);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.15);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
}

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

.input-group button {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    color: #0b0f19;
    border: none;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.input-group button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.4);
}

.input-group button:active {
    transform: scale(0.98);
}

/* Footer */
.footer {
    animation: fadeUp 1s ease-out 0.8s both;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-secondary);
    color: #0b0f19;
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
    border-color: var(--accent-secondary);
}

.footer p {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

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

/* Responsiveness */
@media (max-width: 768px) {
    .title {
        font-size: 2.2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-box {
        min-width: 80px;
        padding: 1rem;
    }
    
    .time-val {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 16px;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.5rem;
    }
    
    .input-group input, .input-group button {
        width: 100%;
        border-radius: 12px;
        padding: 1rem;
    }
    
    .input-group input {
        background: var(--card-bg);
        border: 1px solid var(--card-border);
    }
}
