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

body {
    height: 100vh;
    background: radial-gradient(circle at top, #1a1a1a, #000);
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* INTRO BLACK SCREEN */
.intro {
    position: fixed;
    inset: 0;
    background: black;
    animation: introFade 1.6s ease forwards;
    z-index: 10;
}

@keyframes introFade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* HERO */
.hero {
    height: 100vh;
    color: #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    animation: fadeUp 1.8s ease forwards;
}

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

/* LOGO */
.logo {
    width: 240px;
    margin-bottom: 25px;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 5px #d4af37);
        transform: translateY(0);
    }
    to {
        filter: drop-shadow(0 0 25px #ffdf7e);
        transform: translateY(-6px);
    }
}

/* TEXT */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    letter-spacing: 6px;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    letter-spacing: 4px;
    margin-top: 10px;
    color: #f5d76e;
}

/* SHINE EFFECT */
.shine {
    width: 220px;
    height: 2px;
    margin: 25px 0;
    background: linear-gradient(
        90deg,
        transparent,
