  :root {
            --pastel-yellow: #746f1a;
            --deep-red: #cbff2e;
            --white: #f07a47;
            --off-white: #3b1818;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            background-color: var(--white);
            color: var(--deep-red);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, h4, .nav-link, .btn-mystic {
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Hamburger hidden on desktop */
.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Default nav */
#nav-menu {
    display: flex;
    gap: 40px;
}

/* Login button */
.login-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

    header {
        padding: 15px 5%;
        height: auto;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        z-index: 2000;
    }

    /* Hide nav initially */
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    /* Active menu */
    #nav-menu.active {
        right: 0;
    }

    /* Nav links bigger */
    .nav-link {
        font-size: 1.2rem;
    }

    /* Move login inside menu */
    #auth-btn-container {
        position: fixed;
        bottom: 40px;
        right: -100%;
        width: 70%;
        text-align: center;
        transition: 0.4s ease;
    }

    #auth-btn-container.active {
        right: 0;
    }
}
        /* --- AUTH SYSTEM --- */
        #auth-overlay {
            position: fixed; inset: 0; background: rgba(178, 34, 34, 0.95);
            z-index: 9999; display: none; align-items: center; justify-content: center;
            backdrop-filter: blur(8px);
        }
        .auth-card {
            background: var(--pastel-yellow); padding: 60px; border-radius: 0;
            width: 90%; max-width: 500px; text-align: center;
            border: 2px solid var(--deep-red); box-shadow: 0 0 50px rgba(0,0,0,0.3);
        }
        .auth-input {
            width: 100%; padding: 15px; margin: 15px 0; border: 1px solid var(--deep-red);
            background: transparent; font-size: 1.1rem; color: var(--deep-red);
        }
        .auth-input::placeholder { color: rgba(178, 34, 34, 0.6); }

        /* --- HEADER --- */
        .top-bar {
            background: var(--deep-red); color: rgb(57, 41, 41); text-align: center;
            padding: 12px; font-size: 0.9rem; font-family: 'Cinzel';
        }
        .top-bar a { color: var(--pastel-yellow); text-decoration: none; font-weight: bold; margin-left: 10px; }
        
        header {
            background: var(--white); padding: 25px 8%;
            height:100px;
            display: flex; justify-content: space-between; align-items: center;
            position: sticky; top: 0; z-index: 1000; transition: var(--transition);
        }
        header.scrolled { padding: 15px 8%; box-shadow: 0 10px 30px rgba(178, 34, 34, 0.1); }
        
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-img {
    width: 165px;
    height: 176px;
    object-fit: contain;
}

nav { display: flex; gap: 40px; }
        .nav-link { text-decoration: none; color: var(--deep-red); font-size: 0.95rem; cursor: pointer; position: relative; }
        .nav-link::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
            background: var(--deep-red); transition: 0.3s;
        }
        .nav-link:hover::after { width: 100%; }

        /* --- HERO --- */
        .hero {
            min-height: 90vh; display: flex; align-items: center;
            background: var(--pastel-yellow); padding: 0 8%;
            position: relative; overflow: hidden;
        }
        .hero-stars {
            position: absolute; inset: 0; pointer-events: none;
            background-image: radial-gradient(circle, var(--deep-red) 1px, transparent 1px);
            background-size: 50px 50px; opacity: 0.05;
        }
        .hero-left { flex: 1; z-index: 10; padding-right: 50px; }
        .hero-right { flex: 1; position: relative; height: 600px; display: flex; justify-content: center; align-items: center; }
        
        .hero h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; }
        .hero p { font-size: 1.5rem; margin-bottom: 40px; font-style: italic; }

        .mystic-orb {
            width: 450px; height: 450px; background: var(--white); border-radius: 50%;
            border: 1px solid var(--deep-red); display: flex; align-items: center; justify-content: center;
            animation: float 6s ease-in-out infinite; overflow: hidden; box-shadow: 0 0 100px rgba(178, 34, 34, 0.1);
        }
        @keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.02); } }

        /* --- SECTIONS --- */
        .section { padding: 120px 8%; position: relative; }
        .section-title { font-size: 3rem; text-align: center; margin-bottom: 70px; }
        .section-title span { display: block; font-size: 1rem; color: #888; font-weight: normal; margin-bottom: 10px; }

        /* ZODIAC FILTER */
        .zodiac-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 25px; }
        .zodiac-card {
            background: var(--white); border: 1px solid rgba(178, 34, 34, 0.2);
            padding: 40px 20px; text-align: center; cursor: pointer; transition: var(--transition);
            border-radius: 10px;
        }
        .zodiac-card:hover { 
            background: var(--deep-red); color: white; transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(178, 34, 34, 0.2);
        }
        .zodiac-card i { margin-bottom: 20px; display: block; }

        /* BOOKS GRID */
        .books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 50px; }
        .book-card { text-align: center; cursor: pointer; }
        .book-img {
            width: 100%; aspect-ratio: 2/3; background: #f0f0f0; border-radius: 5px;
            margin-bottom: 20px; transition: var(--transition); overflow: hidden;
            display: flex; align-items: center; justify-content: center;
            border: 1px solid #ddd;
        }
        .book-card:hover .book-img { transform: rotateY(15deg) scale(1.05); box-shadow: -20px 20px 30px rgba(0,0,0,0.1); }

        /* EVENTS */
        .event-row { display: flex; gap: 80px; align-items: center; margin-bottom: 100px; }
        .event-row:nth-child(even) { flex-direction: row-reverse; }
        .event-text { flex: 1; }
        .event-img { flex: 1.2; height: 500px; background: var(--white); border: 1px solid var(--deep-red); border-radius: 20px; display: grid; place-items: center; }

        /* --- PAGES --- */
        .page { display: none; }
        .page.active { display: block; animation: mysticFade 1s ease; }
        @keyframes mysticFade { from { opacity: 0; filter: blur(10px); } to { opacity: 1; filter: blur(0); } }

        .long-page { padding: 100px 15%; }
        .long-page h1 { font-size: 4rem; margin-bottom: 50px; text-align: center; border-bottom: 1px solid var(--deep-red); padding-bottom: 30px; }
        .long-page h2 { margin: 60px 0 25px; border-left: 5px solid var(--deep-red); padding-left: 20px; }
        .long-page p { margin-bottom: 30px; font-size: 1.3rem; }

        /* --- FOOTER --- */
        footer { background: var(--deep-red); color: var(--white); padding: 100px 8% 50px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }
        .footer-col h4 { margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; }
        .footer-col a { display: block; color: rgb(37, 20, 20); text-decoration: none; margin-bottom: 15px; opacity: 0.7; transition: 0.3s; }
        .footer-col a:hover { opacity: 1; padding-left: 10px; }

        .btn-mystic {
            background: var(--deep-red); color: white; border: none;
            padding: 18px 40px; cursor: pointer; transition: var(--transition);
            font-weight: bold; font-size: 1rem; display: inline-block; text-decoration: none;
        }
        .btn-mystic:hover { background: #801b1b; transform: scale(1.05); }

        /* REVEAL ON SCROLL */
        .reveal { opacity: 0; transform: translateY(40px); transition: 1s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* MODAL */
        .modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.9);
            z-index: 5000; display: none; align-items: center; justify-content: center; padding: 20px;
        }
        .modal-content {
            background: var(--pastel-yellow); width: 100%; max-width: 900px; padding: 60px;
            position: relative; max-height: 90vh; overflow-y: auto; border: 3px solid var(--deep-red);
        }
        .close-modal { position: absolute; top: 20px; right: 20px; cursor: pointer; color: var(--deep-red); }

        @media (max-width: 900px) {
            .hero { flex-direction: column; text-align: center; padding-top: 100px; }
            .hero h1 { font-size: 3rem; }
            .event-row { flex-direction: column !important; text-align: center; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        /* ========== WEEKLY HOROSCOPES ========== */
.weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    text-align: center;
}

.weekly-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.weekly-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.weekly-card i {
    margin-bottom: 15px;
    color: var(--deep-red);
}

.weekly-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--deep-red);
}

.weekly-card p {
    font-size: 0.95rem;
    color: #555;
}

/* ========== FEATURED GUIDES ========== */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 40px 20px;
    text-align: center;
}

.guide-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.guide-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.guide-card h4 {
    margin: 15px 0 5px;
    font-size: 1.3rem;
    color: var(--deep-red);
}

.guide-card p {
    padding: 0 15px 20px;
    font-size: 0.95rem;
    color: #555;
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 40px 20px;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    min-width: 300px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    font-weight: 600;
    color: var(--deep-red);
}

/* Optional: hide scrollbar for a sleeker look */
.testimonial-slider::-webkit-scrollbar {
    display: none;
}

/* ===== NEW HERO STYLE ===== */
.hero-new {
    position: relative;
    min-height: 100vh;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, var(--pastel-yellow), var(--white));
    overflow: hidden;
}

/* Glow background */
.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(203,255,46,0.2), transparent);
    filter: blur(80px);
    animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
    from { transform: scale(1); opacity: 0.6; }
    to { transform: scale(1.3); opacity: 1; }
}

/* Content */
.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-new h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-new h1 span {
    font-size: 2rem;
    display: block;
    color: var(--deep-red);
}

.hero-new p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--deep-red);
    color: var(--deep-red);
    padding: 18px 40px;
    cursor: pointer;
}

/* Orb center floating */
.hero-orb-wrapper {
    position: absolute;
    bottom: 80px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.new-orb {
    width: 220px;
    height: 220px;
    border: 4px solid var(--deep-red);
    box-shadow: 0 0 50px rgba(203,255,46,0.5);
    animation: floatOrb 5s ease-in-out infinite;
}

@keyframes floatOrb {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* Floating icons */
.floating-icons i {
    position: absolute;
    color: var(--deep-red);
    opacity: 0.5;
    animation: float 6s infinite;
}

.floating-icons i:nth-child(1) {
    top: 15%;
    left: 20%;
}

.floating-icons i:nth-child(2) {
    bottom: 20%;
    right: 25%;
}

.floating-icons i:nth-child(3) {
    top: 40%;
    right: 10%;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-new h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-orb-wrapper {
        bottom: 40px;
    }
}