/* GLOBAL */
body {
    margin: 0;
    font-family: "Cinzel", serif;
    background: #000;
    color: #e6c36a;
    overflow-x: hidden;
}

/* PARTICLE BACKGROUND */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* SCROLL ANIMATIONS */
.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* GLOW EFFECT */
.glow {
    animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
    from { text-shadow: 0 0 10px #e6c36a; }
    to { text-shadow: 0 0 25px #f7e7a1; }
}

/* LOGO HEADER */
.logo-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(230, 195, 106, 0.3);
}

/* 3D ROTATING EMBLEM */
.emblem-3d {
    width: 90px;
    height: 90px;
    margin: 0 auto 10px;
    border: 2px solid #e6c36a;
    border-radius: 50%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3D 6s linear infinite;
}

@keyframes rotate3D {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* EYE SYMBOL */
.eye {
    width: 45px;
    height: 22px;
    border: 2px solid #e6c36a;
    border-radius: 50%;
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
}

.eye::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #e6c36a;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.logo-text {
    font-size: 3.5rem;
    margin: 0;
    letter-spacing: 8px;
}

.tagline {
    font-size: 1rem;
    color: #d4b15a;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, #111 0%, #000 100%);
}

.book-cover {
    width: 260px;
    border: 2px solid #e6c36a;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn, .btn-outline {
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn {
    background: #e6c36a;
    color: #000;
}

.btn-outline {
    border: 2px solid #e6c36a;
    color: #e6c36a;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section.dark {
    background: #111;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
    .logo-text { font-size: 2.4rem; }
    .book-cover { width: 200px; }
    .hero-title { font-size: 1.5rem; }
    .btn { padding: 10px 20px; }
}