/* Coming Soon Page Styles */

:root {
    --quantum-blue: #5eb3d6;
    --midnight: #0f1419;
    --charcoal: #1a202e;
    --slate: #2d3748;
    --pearl: #f7fafc;
    --silver: #a0aec0;
    --emerald: #00ff88;
    --amber: #f6ad55;
}

/* Coming Soon Overlay */
#coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--midnight) 0%, var(--charcoal) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

#coming-soon-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.coming-soon-container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

/* Animated Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--quantum-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(0);
    }
    to {
        transform: translateY(-100px) translateX(100px);
    }
}

.particle:nth-child(1) { left: 10%; animation-duration: 25s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-duration: 20s; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-duration: 30s; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-duration: 18s; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-duration: 22s; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-duration: 28s; animation-delay: 2s; }
.particle:nth-child(7) { left: 70%; animation-duration: 15s; animation-delay: 5s; }
.particle:nth-child(8) { left: 80%; animation-duration: 24s; animation-delay: 0s; }
.particle:nth-child(9) { left: 90%; animation-duration: 19s; animation-delay: 3s; }
.particle:nth-child(10) { left: 5%; animation-duration: 26s; animation-delay: 4s; }

/* Logo Animation */
.coming-soon-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.coming-soon-logo svg {
    width: 100%;
    height: 100%;
}

.coming-soon-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Typography */
.coming-soon-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, white 30%, var(--quantum-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-subtitle {
    font-size: 20px;
    color: var(--silver);
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Passcode Input */
.passcode-container {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.passcode-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--quantum-blue);
    margin-bottom: 15px;
    display: block;
}

.passcode-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.passcode-input {
    width: 100%;
    padding: 18px 50px 18px 20px;
    background: rgba(26, 32, 46, 0.6);
    border: 2px solid rgba(94, 179, 214, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-family: 'Inter', monospace;
    letter-spacing: 8px;
    text-align: center;
    transition: all 0.3s;
}

.passcode-input:focus {
    outline: none;
    border-color: var(--quantum-blue);
    background: rgba(26, 32, 46, 0.8);
    box-shadow: 0 0 30px rgba(94, 179, 214, 0.2);
}

.passcode-input.error {
    border-color: var(--amber);
    animation: shake 0.5s;
}

.passcode-input.success {
    border-color: var(--emerald);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.lock-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}

.lock-icon.unlocked {
    color: var(--emerald);
}

/* Submit Button */
.unlock-button {
    width: 100%;
    padding: 16px;
    background: var(--quantum-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.unlock-button:hover {
    background: #4a8fb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(94, 179, 214, 0.4);
}

.unlock-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.unlock-button.success {
    background: var(--emerald);
}

/* Messages */
.message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}

.message.error {
    background: rgba(246, 173, 85, 0.1);
    border: 1px solid rgba(246, 173, 85, 0.3);
    color: var(--amber);
}

.message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--emerald);
}

/* Countdown Timer */
.launch-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.launch-date {
    font-size: 14px;
    color: var(--silver);
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--quantum-blue);
    line-height: 1;
}

.countdown-label {
    font-size: 12px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .coming-soon-container {
        padding: 30px 20px;
    }
    
    .coming-soon-title {
        font-size: 36px;
    }
    
    .coming-soon-subtitle {
        font-size: 16px;
    }
    
    .countdown {
        gap: 20px;
    }
    
    .countdown-value {
        font-size: 28px;
    }
}