/* ===================================
   COSMIC ASTROLOGY WHEEL - STYLES
   =================================== */

:root {
    --primary-purple: #8b5cf6;
    --primary-blue: #3b82f6;
    --primary-gold: #fbbf24;
    --dark-space: #0f0f23;
    --deep-purple: #1e1b4b;
    --glow-purple: rgba(139, 92, 246, 0.6);
    --glow-gold: rgba(251, 191, 36, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-space);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===================================
   COSMIC BACKGROUND
   =================================== */

.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #0f0f23 0%, #1e1b4b 50%, #312e81 100%);
}

/* ===================================
   NAVIGATION MENU
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.95), rgba(49, 46, 129, 0.95));
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--glass-border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo i {
    font-size: 1.8rem;
    animation: logoRotate 10s linear infinite;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-logo:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 1.5rem;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--primary-gold);
    color: var(--dark-space);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(251, 191, 36, 0.2);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    color: #fff;
}

.nav-link i {
    font-size: 1.1rem;
}

.lang-switch-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.lang-switch-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-space);
}

#currentLangDisplay {
    font-weight: 700;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, rgba(30, 27, 75, 0.98), rgba(49, 46, 129, 0.98));
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        justify-content: flex-start;
    }
    
    .language-switch {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid var(--glass-border);
    }
}

/* Adjust main content for navbar */
.main-content {
    padding-top: 70px;
}

/* ===================================
   COSMIC BACKGROUND (CONTINUED)
   =================================== */

.stars, .stars2, .stars3 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stars {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="2" height="2"><circle cx="1" cy="1" r="1" fill="white" opacity="0.8"/></svg>') repeat;
    animation: animateStars 100s linear infinite;
}

.stars2 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="3"><circle cx="1.5" cy="1.5" r="1" fill="white" opacity="0.5"/></svg>') repeat;
    animation: animateStars 150s linear infinite;
}

.stars3 {
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4"><circle cx="2" cy="2" r="1" fill="white" opacity="0.3"/></svg>') repeat;
    animation: animateStars 200s linear infinite;
}

@keyframes animateStars {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}

/* ===================================
   HEADER
   =================================== */

.header {
    text-align: center;
    padding: 20px 20px 10px;
    position: relative;
    z-index: 1;
}

.site-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: titleGlow 3s ease-in-out infinite;
}

.site-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 2px;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8)); }
}

/* ===================================
   MODALS
   =================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.95), rgba(49, 46, 129, 0.95));
    border: 2px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
    animation: modalSlideIn 0.5s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.modal-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

/* ===================================
   LANGUAGE SELECTION
   =================================== */

.language-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.language-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border: 2px solid var(--primary-gold);
    color: white;
    padding: 20px 40px;
    border-radius: 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.language-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
    border-color: #fff;
}

.lang-icon {
    font-size: 3rem;
}

.lang-text {
    font-weight: 600;
}

/* ===================================
   WHEEL SECTION
   =================================== */

.wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.wheel-container {
    position: relative;
    width: 90vw;
    max-width: 600px;
    height: 90vw;
    max-height: 600px;
    margin-bottom: 50px;
}

/* Pointer */
.pointer-container {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.pointer-glow {
    position: absolute;
    width: 60px;
    height: 80px;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    filter: blur(15px);
    animation: pointerPulse 2s ease-in-out infinite;
    left: 50%;
    transform: translateX(-50%);
}

.pointer {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 60px solid var(--primary-gold);
    filter: drop-shadow(0 5px 15px rgba(251, 191, 36, 0.8));
    position: relative;
    z-index: 10;
}

@keyframes pointerPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* Wheel */
.wheel {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--primary-gold);
    box-shadow: 
        0 0 40px rgba(251, 191, 36, 0.5),
        inset 0 0 40px rgba(139, 92, 246, 0.3);
    transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.8), rgba(49, 46, 129, 0.8));
}

.wheel.spinning {
    animation: wheelGlow 0.1s ease-in-out infinite;
}

@keyframes wheelGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.5), inset 0 0 40px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 60px rgba(251, 191, 36, 0.9), inset 0 0 60px rgba(139, 92, 246, 0.6); }
}

/* Wheel Segments */
.segment {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform-origin: 0 0;
    transform: rotate(calc(var(--i) * 30deg)) skewY(-60deg);
    overflow: hidden;
}

.segment:nth-child(odd) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.4));
}

.segment:nth-child(even) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(139, 92, 246, 0.4));
}

.segment-content {
    position: absolute;
    width: 200%;
    height: 200%;
    transform: skewY(60deg) rotate(15deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 25%;
    text-align: center;
}

.zodiac-symbol {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.8));
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.zodiac-name {
    font-size: clamp(0.65rem, 1.8vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

/* Wheel Center */
.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
    z-index: 10;
    animation: centerRotate 10s linear infinite;
}

@keyframes centerRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===================================
   SPIN BUTTON
   =================================== */

.spin-button {
    position: relative;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border: 3px solid var(--primary-gold);
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
    font-family: 'Cinzel', serif;
}

.spin-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.7);
    border-color: #fff;
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: buttonShine 3s linear infinite;
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.button-text {
    position: relative;
    z-index: 1;
}

.spin-button i {
    margin-left: 10px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* ===================================
   USER INFO FORM
   =================================== */

.user-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 1rem;
}

.form-group input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-purple));
    border: none;
    color: white;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

/* ===================================
   PREDICTION DISPLAY
   =================================== */

.prediction-display {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.prediction-display.hidden {
    display: none;
}

.prediction-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.95), rgba(49, 46, 129, 0.95));
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.5);
    animation: predictionSlideUp 0.6s ease;
}

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

.close-prediction {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.close-prediction:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

.prediction-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--glass-border);
}

.zodiac-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(251, 191, 36, 0.5));
}

.prediction-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.prediction-dates {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.prediction-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.prediction-section {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--primary-gold);
    border-radius: 10px;
    animation: sectionFadeIn 0.5s ease;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.prediction-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prediction-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.prediction-section strong {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Audio Controls */
.audio-controls {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--glass-border);
}

.audio-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border: 2px solid var(--primary-gold);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.audio-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.audio-btn i {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===================================
   INSTAGRAM MODAL
   =================================== */

.instagram-content {
    text-align: center;
}

.instagram-icon {
    font-size: 5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: instagramPulse 2s ease-in-out infinite;
}

@keyframes instagramPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
    margin-bottom: 20px;
}

.instagram-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.6);
}

.skip-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skip-button:hover {
    border-color: #fff;
    color: #fff;
}

/* ===================================
   PARTICLES
   =================================== */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.hidden {
    display: none !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .header {
        padding: 10px 15px 5px;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .wheel-container {
        width: 95vw;
        height: 95vw;
        max-width: 400px;
        max-height: 400px;
    }

    .zodiac-symbol {
        font-size: 1.5rem;
    }

    .zodiac-name {
        font-size: 0.6rem;
    }

    .wheel-center {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .spin-button {
        padding: 15px 40px;
        font-size: 1.2rem;
    }

    .prediction-container {
        padding: 25px 15px;
    }

    .prediction-section {
        padding: 15px;
    }

    .language-btn {
        min-width: 120px;
        padding: 15px 30px;
    }
    
    .segment-content {
        padding-left: 20%;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.8rem;
    }

    .site-subtitle {
        font-size: 0.8rem;
    }

    .pointer {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-top: 45px solid var(--primary-gold);
    }

    .segment-content {
        padding-left: 25%;
    }

    .prediction-title {
        font-size: 1.8rem;
    }

    .zodiac-icon {
        font-size: 3.5rem;
    }
}

/* ===================================
   ANIMATIONS & EFFECTS
   =================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-space);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-purple), var(--primary-blue));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-gold), var(--primary-purple));
}
