:root {
    --bg-base: #050510;
    --bg-secondary: #0d0d2b;
    --primary: #7c3aed;
    --accent-gold: #f59e0b;
    --accent-cyan: #06b6d4;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Select & Option nativo */
select option {
    background-color: #1a0533;
    color: #f1f5f9;
}

select option:checked,
select option:hover {
    background-color: #7c3aed;
    color: #ffffff;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .font-display {
    font-family: 'Cinzel', serif;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
    transform: translateY(-5px);
}

.glass-card.gold-hover:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

/* Animations */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate-slow {
    animation: rotateSlow 60s linear infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Star Background */
#star-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.nav-blur {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(26, 5, 51, 0.97);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 30px -10px rgba(26, 5, 51, 0.6);
    transition: all 0.3s ease;
}

.nav-transparent {
    background: #1a0533;
}

/* Section Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #4f46e5);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
    transform: scale(1.02);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.65rem 1.4rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--accent-gold);
}

/* Zodiac Symbols */
.zodiac-symbol {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: normal;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.5));
    transition: all 0.3s ease;
}

.zodiac-symbol:hover {
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.8));
    transform: scale(1.1);
}

/* Astro Reading Presentation */
.astro-reading-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.astro-reading-content p {
    margin-bottom: 1.75rem;
    text-align: justify;
}

.astro-reading-content h1, 
.astro-reading-content h2, 
.astro-reading-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--accent-gold);
    line-height: 1.3;
}

.astro-reading-content strong {
    color: #ffffff;
    font-weight: 700;
}

.astro-reading-content ul {
    list-style: none;
    padding-left: 1rem;
    margin: 2rem 0;
}

.astro-reading-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.astro-reading-content li i {
    position: absolute;
    left: 0;
    top: 0.6rem;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(124, 58, 237, 0.5);
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInPage 0.6s ease-out forwards;
}
