:root {
    --gold: #d4af37;
    --gold-light: #f9e29c;
    --dark: #0a0a0a;
    --dark-blue: #050a14;
    --wine: #4a0e0e;
    --white: #ffffff;
    --beige: #f5f5dc;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(212, 175, 55, 0.2);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Background & Overlay */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(5, 10, 20, 0.9)), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Content Layout */
.content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

/* Typography */
h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

h1 span {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    display: block;
    margin-top: 10px;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--beige);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Dynamic Phrases */
.dynamic-phrases-container {
    height: 60px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dynamic-phrase {
    font-size: 1.2rem;
    color: var(--gold-light);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Buttons & Badges */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-elegant {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-elegant:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-elegant:hover::before {
    left: 100%;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--beige);
    opacity: 0.8;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Card Description */
.description {
    max-width: 700px;
    margin: 0 auto;
}

.card-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 2px;
    position: relative;
}

.card-glass p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    font-weight: 300;
}

/* Footer */
footer {
    position: relative;
    z-index: 10;
    margin-top: 60px;
    padding: 40px 0;
    width: 100%;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    text-align: center;
    font-size: 0.9rem;
    color: var(--beige);
    opacity: 0.7;
}

.footer-content strong {
    color: var(--gold);
    font-weight: 600;
}

/* Animations */
.animate-in { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s forwards; }
.animate-in-delay-1 { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s 0.2s forwards; }
.animate-in-delay-2 { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s 0.4s forwards; }
.animate-in-delay-3 { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s 0.6s forwards; }
.animate-in-delay-4 { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s 0.8s forwards; }
.animate-in-delay-5 { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s 1s forwards; }
.animate-in-delay-6 { opacity: 0; transform: translateY(20px); animation: fadeInUp 1s 1.2s forwards; }

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

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 20px 15px;
    }
    
    .card-glass {
        padding: 20px;
    }
}
