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

:root {
    --gold-primary: #D4AF37;
    --gold-dark: #B4942C;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --black-bg: #0A0A0A;
    --black-deeper: #050505;
    --text-light: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black-deeper);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Canvas de partículas */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), transparent);
    backdrop-filter: blur(8px);
}

.nav-logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero {
    flex: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 80px;
}

.hero-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
}

/* Anillos decorativos */
.mystic-ring, .mystic-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.mystic-ring {
    width: 320px;
    height: 320px;
    animation: rotateRing 20s linear infinite;
}

.mystic-ring-2 {
    width: 520px;
    height: 520px;
    border-color: rgba(212, 175, 55, 0.1);
    animation: rotateRingReverse 25s linear infinite;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateRingReverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Logo */
.logo-container {
    margin-bottom: -50px;
    position: relative;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-img {
    max-width: 250px;
    
    
    
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    animation: floatLogo 3s ease-in-out infinite;
}

.logo-fallback {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: none;
    animation: floatLogo 3s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 8px var(--gold-primary); }
}

.status-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 500;
}

/* Main Title */
.main-title {
    font-size: clamp(48px, 12vw, 96px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFFFFF, var(--gold-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.divider-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.divider-icon {
    color: var(--gold-primary);
    font-size: 14px;
    animation: rotateIcon 3s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Description */
.description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    margin: 0 auto;
    animation: scrollMove 1.8s ease-in-out infinite;
}

@keyframes scrollMove {
    0% { transform: scaleY(0.2); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.2); opacity: 0; }
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent);
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 20px 30px;
    }
    
    .hero {
        padding: 80px 20px 60px;
    }
    
    .mystic-ring, .mystic-ring-2 {
        display: none;
    }
    
    .main-title {
        font-size: 48px;
    }
    
    .description {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .divider-line {
        width: 30px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-fallback {
        font-size: 48px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .description {
        font-size: 14px;
    }
}