:root {
    --primary: #d4af37; /* Metallic Gold */
    --primary-dark: #b8860b;
    --bg-dark: #0a0a0a;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image & Overlays */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    animation: zoom-in 20s infinite alternate ease-in-out;
}

@keyframes zoom-in {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

/* Main Content */
.content {
    max-width: 800px;
    width: 90%;
    padding: 3rem;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fade-up 1s ease-out;
}

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

/* Typography */
.logo-section {
    margin-bottom: 2.5rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 300;
}

.info-section .title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-section .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Countdown */
.countdown-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
    min-width: 80px;
}

.timer-item .value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: var(--font-heading);
}

.timer-item .label {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Notification Form */
.notify-section p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.notify-form input:focus {
    border-color: var(--primary);
}

.notify-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: var(--primary);
    color: black;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.notify-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

.social-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .content {
        padding: 2rem 1rem;
        height: auto;
        overflow-y: auto;
    }

    .brand-name {
        font-size: 2rem;
    }

    .info-section .title {
        font-size: 1.8rem;
    }

    .countdown-section {
        gap: 1rem;
    }

    .timer-item .value {
        font-size: 1.8rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form button {
        width: 100%;
    }
}
