:root {
    --gold-primary: #d4af37;
    --gold-secondary: #f9e29d;
    --gold-dark: #aa8928;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e29d 50%, #aa8928 100%);
    --black-deep: #050505;
    --black-overlay: rgba(0, 0, 0, 0.6);
    --white-soft: #f8f9fa;
    --font-heading: 'Prata', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--black-deep);
    color: var(--white-soft);
    font-family: var(--font-body);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--black-deep);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    inset: 0;
    background-image: url('hero.jpg'), url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 10s ease-out;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero::before {
    top: -10vw;
    left: -10vw;
}

.hero::after {
    bottom: -10vw;
    right: -10vw;
}

.content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 100%;
    height: 100vh;
    padding: 15vh 1.5rem 4vh;
    /* Increased top padding significantly */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2vh;
    align-items: center;
}

/* Logo Bar */
.logo-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: clamp(180px, 35vw, 350px);
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8));
}

/* Logo Text Fallback */
.logo-text {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
}

.logo-brand {
    font-size: 1.4rem;
    font-weight: 400;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sep {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.logo-presents {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-style: italic;
    color: var(--gold-secondary);
    margin-left: 0.3rem;
}

/* Decoration / Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    margin: 1vh 0;
}

.divider-line {
    height: 1px;
    width: clamp(50px, 10vw, 150px);
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.divider-diamond {
    color: var(--gold-secondary);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--gold-primary);
    animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.6;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Typography */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: clamp(0.3rem, 1.5vw, 0.8rem);
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    color: var(--gold-secondary);
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 400;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #d4af37 0%, #f9e29d 30%, #ffffff 50%, #f9e29d 70%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
    animation: textShimmer 5s ease-in-out infinite alternate;
}

@keyframes textShimmer {
    from {
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
    }

    to {
        filter: drop-shadow(0 0 25px rgba(249, 226, 157, 0.5));
    }
}

.subtitle {
    font-size: clamp(0.9rem, 3vw, 1.5rem);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--white-soft);
    margin-top: 0.5rem;
}

/* Loading Section */
.status-container {
    width: 100%;
    max-width: 600px;
    margin-top: 0;
}

.loading-bar-wrapper {
    margin-bottom: 1.5rem;
}

.loading-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    margin-bottom: 1rem;
    color: var(--gold-secondary);
    font-weight: 600;
}

.loading-bar {
    width: 100%;
    height: 4px;
    /* Slightly thicker for premium feel */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.loading-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gold-gradient);
    box-shadow: 0 0 25px var(--gold-primary);
    border-radius: 4px;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.coming-soon {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 400;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Button */
.watch-out-btn {
    position: relative;
    padding: 0.8rem 3rem;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.4rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.5rem;
}

.watch-out-btn:hover {
    color: var(--black-deep);
    background: var(--gold-primary);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
}

.watch-out-btn:hover .btn-glow {
    transform: translate(-50%, -50%) scale(1);
}

footer {
    position: relative;
    margin-top: auto;
    width: 100%;
    max-width: 600px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    padding-bottom: 1vh;
    z-index: 10;
}

footer p {
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Particle Container */
#particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    background: var(--gold-secondary);
    border-radius: 50%;
    opacity: 0.2;
}

/* Animations Support */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive */
@media (max-width: 768px) {
    .content {
        padding: 1.5vh 1rem;
        gap: 1.5vh;
        height: 100vh;
    }

    h1 {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
    }

    .subtitle {
        font-size: clamp(0.7rem, 4vw, 1rem);
        letter-spacing: 0.15rem;
    }

    .watch-out-btn {
        padding: 0.6rem 1.8rem;
        font-size: 0.7rem;
        letter-spacing: 0.2rem;
    }
}

@media (max-height: 600px) {
    .content {
        gap: 1.5rem;
    }

    h1 {
        font-size: 2.8rem;
    }
}