:root {
    --primary-red: #800000; /* Maroon/Dark Red */
    --primary-gold: #D4AF37; /* Metallic Gold */
    --secondary-gold: #FDD017; /* Bright Gold */
    --text-color: #ffffff;
    --bg-color: #1a0505; /* Very dark red/black */
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, #4a0000 0%, #000000 100%);
}

/* Decorative background pattern or overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIiBmaWxsPSJub25lIiBzdHJva2U9IiNENEFGMzciIHN0cm9rZS1vcGFjaXR5PSIwLjEiPgo8cGF0aCBkPSJNMCA0MEw0MCAwSDIwTDAgMjBNNDAgNDBWMjBMMjAgNDAiLz4KPC9zdmc+');
    opacity: 0.3;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    border: 2px solid var(--primary-gold);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    animation: fadeIn 1.5s ease-out;
}

header {
    margin-bottom: 2rem;
}

.brand-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
}

.location {
    font-size: 1.2rem;
    color: #ccc;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--primary-gold);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.coming-soon {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
}

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

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-gold);
    font-family: 'Cinzel', serif;
}

.time-unit label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #aaa;
}

.newsletter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.newsletter input {
    padding: 10px 15px;
    border: 1px solid var(--primary-gold);
    background: transparent;
    color: white;
    font-family: 'Lato', sans-serif;
    width: 250px;
}

.newsletter input::placeholder {
    color: #aaa;
}

.newsletter button {
    padding: 10px 20px;
    background-color: var(--primary-gold);
    color: #1a0505;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter button:hover {
    background-color: var(--secondary-gold);
    transform: scale(1.05);
}

footer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2rem;
}

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

@media (max-width: 600px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .time-unit span {
        font-size: 1.8rem;
    }
    
    .newsletter {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter input {
        width: 100%;
    }
}