/* CSS Custom Variables for Premium Theme */
:root {
    --bg-dark: #090d16;
    --bg-darker: #05070c;
    --card-bg: rgba(15, 22, 42, 0.45);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(245, 158, 11, 0.35);
    
    /* Colors */
    --primary: #10b981; /* Emerald/Mint Green for growth */
    --secondary: #6366f1; /* Indigo */
    --gold: #f59e0b; /* Amber/Gold for "golden years" */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    /* Shadows */
    --shadow-lg: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    
    /* Fonts */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Glowing Auras */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.glow-1 {
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.glow-2 {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

/* Typography Helpers */
h1 {
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #34d399 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
}

/* Layout Container */
.coming-soon-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Header Styles */
.coming-soon-header {
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.025em;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary);
}

.logo-text .highlight {
    color: var(--secondary);
}

/* Main Content */
.coming-soon-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 2rem 0;
}

/* Badge status */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.animate-pulse {
    animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(0.9); opacity: 0.5; box-shadow: 0 0 4px var(--gold); }
    100% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 12px var(--gold); }
}

.coming-soon-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.coming-soon-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Countdown Styles */
.countdown-wrapper {
    margin-bottom: 3rem;
    background: rgba(15, 22, 42, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem 3.5rem;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.countdown-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number-wrapper {
    background: rgba(9, 13, 22, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

.timer-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.timer-unit {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.timer-colon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--border-gold);
    margin-top: -1.5rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0.4; }
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 580px;
    box-shadow: var(--shadow-lg);
    transition: border-color 0.3s ease;
    border-color: var(--border-gold);
}

.notify-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.notify-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notify-form.hidden {
    display: none;
}

.notify-form-group {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4px;
    transition: border-color 0.3s, background-color 0.3s;
}

.notify-form-group:focus-within {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.notify-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    width: 100%;
}

.notify-input::placeholder {
    color: var(--text-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: var(--font-sans);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
    filter: brightness(1.1);
}

.btn-primary:disabled {
    background: var(--text-dark);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.notify-terms {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.775rem;
    color: var(--text-muted);
    justify-content: center;
    cursor: pointer;
}

.notify-terms input {
    accent-color: var(--gold);
}

/* Success State */
.form-success-message {
    text-align: center;
    padding: 0.5rem 0;
    animation: fadeIn 0.5s forwards ease;
}

.form-success-message.hidden {
    display: none;
}

.success-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: bounce 1.2s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

.form-success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

/* Footer Section */
.coming-soon-footer {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-top: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.25rem;
    }
    
    .timer-number-wrapper {
        min-width: 75px;
        height: 75px;
    }
    
    .timer-number {
        font-size: 2.25rem;
    }
    
    .countdown-wrapper {
        padding: 1.5rem 2rem;
    }
    
    .notify-form-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.75rem;
    }
    
    .notify-input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 0.875rem 1rem;
    }
    
    .notify-input:focus {
        border-color: var(--gold);
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .glass-card {
        padding: 1.75rem;
    }
}

/* Error message styles */
.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.error-message.hidden {
    display: none;
}
