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

:root {
    --background: #0B1120;
    --foreground: #e8dcc8;
    --primary: #EAB308;
    --primary-light: #fcd34d;
    --primary-dark: #a27f07;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== PREMIUM HEADER TICKER - FADING STYLE ========== */
.ticker-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(11, 17, 32, 0.95);
    border-top: 1px solid rgba(234, 179, 8, 0.3);
    border-bottom: 1px solid rgba(234, 179, 8, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
    transition: opacity 0.5s ease;
    text-align: center;
    padding: 0 1rem;
}

/* ========== CONTAINER ========== */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

/* ========== FLOATING CROWNS ========== */
.particles {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 16px;
    opacity: 0;
    animation: floatUp 22s infinite;
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.5));
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; font-size: 14px; }
.particle:nth-child(2) { left: 15%; animation-delay: 3s; font-size: 18px; }
.particle:nth-child(3) { left: 28%; animation-delay: 6s; font-size: 12px; }
.particle:nth-child(4) { left: 42%; animation-delay: 9s; font-size: 16px; }
.particle:nth-child(5) { left: 58%; animation-delay: 2s; font-size: 14px; }
.particle:nth-child(6) { left: 72%; animation-delay: 5s; font-size: 18px; }
.particle:nth-child(7) { left: 85%; animation-delay: 8s; font-size: 12px; }
.particle:nth-child(8) { left: 95%; animation-delay: 11s; font-size: 16px; }

@keyframes floatUp {
    0% {
        bottom: -30px;
        opacity: 0;
        transform: translateX(0) rotate(-10deg);
    }
    8% {
        opacity: 0.8;
    }
    92% {
        opacity: 0.8;
    }
    100% {
        bottom: 105vh;
        opacity: 0;
        transform: translateX(20px) rotate(10deg);
    }
}

/* ========== AMBIENCE ========== */
.ambience {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.06) 0%, transparent 70%);
    filter: blur(60px);
}

/* ========== CONTENT ========== */
.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* ========== LOGO ========== */
.logo-wrapper {
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.logo {
    width: 192px;
    height: 192px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(234, 179, 8, 0.35));
    animation: logoFloat 6s ease-in-out infinite;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* ========== BRAND NAME ========== */
.brand {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 12vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    background: linear-gradient(
        180deg, 
        #fef3c7 0%,
        #fcd34d 25%,
        #EAB308 50%,
        #ca9a04 75%,
        #92710a 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.8s ease-out 0.2s both, textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 40px rgba(234, 179, 8, 0.3);
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 0 80px rgba(234, 179, 8, 0.5), 0 0 120px rgba(234, 179, 8, 0.2);
        filter: brightness(1.1);
    }
}

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

/* ========== SLOGAN ========== */
.slogan-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.slogan {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.95rem, 2.8vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(232, 220, 200, 0.75);
}

/* Gold Lines */
.line {
    height: 1px;
    width: 50px;
}

.line-left {
    background: linear-gradient(to right, transparent, var(--primary));
}

.line-right {
    background: linear-gradient(to left, transparent, var(--primary));
}

@media (min-width: 768px) {
    .line { width: 100px; }
}

/* ========== CTA BUTTON ========== */
.cta-wrapper {
    animation: fadeUp 1s ease-out 0.7s both;
}

.cta-btn {
    position: relative;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(234, 179, 8, 0.35);
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.cta-btn:hover {
    border-color: var(--primary);
    background: rgba(234, 179, 8, 0.08);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.15);
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(234, 179, 8, 0.5);
    text-shadow: 0 0 15px rgba(234, 179, 8, 0.25);
    z-index: 10;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .ticker-header {
        height: 38px;
    }
    
    .ticker-text {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }
    
    .container {
        padding-top: 38px;
    }
    
    .logo {
        width: 160px;
        height: 160px;
    }
    
    .footer {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 140px;
        height: 140px;
    }
    
    .brand {
        letter-spacing: 0.08em;
    }
    
    .slogan {
        letter-spacing: 0.12em;
    }
    
    .particle {
        font-size: 12px !important;
    }
    
    .ticker-text {
        font-size: 0.65rem;
    }
}

/* ========== SELECTION ========== */
::selection {
    background: var(--primary);
    color: var(--background);
}
