/* PegasusAI³ Coming Soon Page - Minimal Dark Theme */

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

/* Countdown Timer Styles */
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: capitalize;
    color: #6b7280;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: #374151;
    align-self: flex-end;
    padding-bottom: 0.1em;
}

@media (min-width: 768px) {
    .countdown-value {
        font-size: 4rem;
    }
    .countdown-separator {
        font-size: 4rem;
    }
    .countdown-label {
        font-size: 0.75rem;
    }
}

/* Subtle text glow on heading */
h1 {
    text-shadow: 0 0 80px rgba(4, 107, 210, 0.15);
}

/* Input styles */
input::placeholder {
    color: #6b7280;
}

input:focus {
    outline: none;
}

/* Button hover glow */
button[type="submit"]:hover {
    box-shadow: 0 0 30px rgba(4, 107, 210, 0.3);
}

/* Smooth animations */
.countdown-value {
    transition: transform 0.3s ease;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    animation: fadeIn 0.8s ease forwards;
}

header {
    animation: fadeIn 0.6s ease forwards;
}

footer {
    animation: fadeIn 1s ease forwards;
}

/* Number flip animation */
@keyframes flip {
    0% {
        transform: perspective(400px) rotateX(0);
    }
    50% {
        transform: perspective(400px) rotateX(-10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0);
    }
}

.flip {
    animation: flip 0.3s ease;
}

/* Subtle pulse on logo */
header img {
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 0 rgba(4, 107, 210, 0));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(4, 107, 210, 0.4));
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* Selection color */
::selection {
    background: rgba(4, 107, 210, 0.3);
    color: white;
}

/* Responsive typography */
@media (max-width: 640px) {
    h1 {
        font-size: 3rem;
    }
    .countdown-value {
        font-size: 1.75rem;
    }
    .countdown-separator {
        font-size: 1.75rem;
    }
}
