:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --gold-primary: #D4AF37;
    --gold-light: #FBF5B7;
    --gold-dark: #AA771C;
    --gold-gradient: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    animation: pulse 2s infinite;
}

/* Typography */
h1.brand-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 0.5em;
    color: var(--gold-primary);
    margin-top: 1rem;
    text-transform: uppercase;
}

.line-separator {
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1rem auto;
}

.announcement {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 3rem;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 1rem;
}

/* Decorative line under announcement */
.announcement::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold-dark);
    opacity: 0.6;
}

.cta-text {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Form */
.newsletter-form {
    margin: 2rem auto;
    max-width: 500px;
    width: 90%;
}

.input-group {
    display: flex;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-bottom-color: var(--gold-primary);
    box-shadow: 0 10px 20px -10px rgba(212, 175, 55, 0.2);
}

input[type="email"] {
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    flex-grow: 1;
    padding: 1rem 0.5rem;
    outline: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.gold-btn {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 0.5rem 1.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.gold-btn:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Footer */
footer {
    margin-top: 4rem;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: #666;
    font-size: 1.2rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold-primary);
}

.copyright {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(212, 175, 55, 0.6);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2rem;
    font-weight: 300;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    h1.brand-name {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 0.3em;
    }

    .input-group {
        flex-direction: column;
        border-bottom: none;
    }

    input[type="email"] {
        border-bottom: 1px solid var(--gold-primary);
        margin-bottom: 1rem;
        text-align: center;
    }

    .gold-btn {
        width: 100%;
    }
}