:root {
    --bg-color: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent: #d4af37; /* Gold for premium feel */
    --accent-hover: #e6c24d;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0d0d0d 100%);
    z-index: -1;
}

.container {
    max-width: 900px;
    width: 90%;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

/* Header */
.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--accent);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInDown 1s forwards;
}

/* Content Section */
.content h2 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s 0.2s forwards;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s 0.4s forwards;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s 0.6s forwards;
}

.time-segment {
    display: flex;
    flex-direction: column;
    min-width: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 1.5rem 1rem;
    border-radius: 12px;
}

.time-segment span {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.time-segment label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Subscription Form */
.subscription-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    opacity: 0;
    animation: fadeInUp 1s 0.8s forwards;
}

.subscription-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

.subscription-form button {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.subscription-form button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Footer Links */
.social-links {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .content h2 {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-segment {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }

    .subscription-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }

    .subscription-form input {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        margin-bottom: 1rem;
        padding: 1rem 1.5rem;
    }
}
