:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #D4AF37;
    /* Gold */
    --text-color: #ffffff;
    --text-muted: #cccccc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000000 100%);
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* Header & Logo */
header {
    margin-bottom: 4rem;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #D4AF37;
    text-transform: none;
    /* Keep CamelCase */
    padding: 10px 20px;
    display: inline-block;
    transition: all 0.5s ease;
    position: relative;
    text-shadow:
        0 1px 0 #b38728,
        0 2px 0 #b38728,
        0 3px 0 #b38728,
        0 4px 0 #b38728,
        0 5px 0 #b38728,
        0 6px 1px rgba(0, 0, 0, .1),
        0 0 5px rgba(0, 0, 0, .1),
        0 1px 3px rgba(0, 0, 0, .3),
        0 3px 5px rgba(0, 0, 0, .2),
        0 5px 10px rgba(0, 0, 0, .25),
        0 10px 10px rgba(0, 0, 0, .2),
        0 20px 20px rgba(0, 0, 0, .15);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.logo:hover {
    transform: translateY(-5px) scale(1.02);
    text-shadow:
        0 1px 0 #fcf6ba,
        0 2px 0 #fcf6ba,
        0 3px 0 #fcf6ba,
        0 4px 0 #fcf6ba,
        0 5px 0 #fcf6ba,
        0 6px 1px rgba(0, 0, 0, .1),
        0 0 5px rgba(0, 0, 0, .1),
        0 1px 3px rgba(0, 0, 0, .3),
        0 3px 5px rgba(0, 0, 0, .2),
        0 5px 10px rgba(0, 0, 0, .25),
        0 10px 10px rgba(0, 0, 0, .2),
        0 20px 20px rgba(0, 0, 0, .15),
        0 0 30px rgba(212, 175, 55, 0.6);
    color: #fcf6ba;
}

.tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: -5px;
    opacity: 0;
    animation: slideUp 1s ease-out forwards 0.5s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gold-text {
    color: var(--accent-color);
    font-style: italic;
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.countdown-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    color: var(--text-muted);
}

/* Subscription Form */
.subscription {
    margin-bottom: 4rem;
}

.subscription p {
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

#subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    padding: 12px 20px;
    border: 1px solid #333;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    flex: 1;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
}

input[type="email"]:focus {
    border-color: var(--accent-color);
}

button {
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
    margin-top: auto;
}

.social-icons {
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent-color);
}

.contact-email {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-email a {
    color: var(--accent-color);
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.contact-email a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        width: 100%;
        overflow-x: hidden;
    }

    header {
        margin-bottom: 2rem;
    }

    .logo {
        font-size: 2rem;
        /* Smaller logo for mobile */
        padding: 5px 10px;
        letter-spacing: 0;
        text-shadow:
            0 1px 0 #b38728,
            0 2px 0 #b38728,
            0 3px 0 #b38728,
            0 4px 1px rgba(0, 0, 0, .1),
            0 0 5px rgba(0, 0, 0, .1),
            0 1px 3px rgba(0, 0, 0, .3),
            0 3px 5px rgba(0, 0, 0, .2),
            0 5px 10px rgba(0, 0, 0, .25);
    }

    .tagline {
        font-size: 0.6rem;
        letter-spacing: 3px;
        /* Reduced spacing */
    }

    .hero h1 {
        font-size: 2rem;
    }

    .sub-headline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .countdown-container {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-item span:first-child {
        font-size: 1.8rem;
    }

    .countdown-item .label {
        font-size: 0.7rem;
    }

    .subscription {
        margin-bottom: 2rem;
    }

    #subscribe-form {
        flex-direction: column;
        width: 100%;
    }

    input[type="email"] {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}