<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Horoscope Hero Section */
.horoscope-hero {
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(76, 0, 130, 0.9), rgba(147, 51, 234, 0.9));
    position: relative;
    overflow: hidden;
}

.horoscope-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.horoscope-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

.horoscope-hero p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

/* Horoscope Reading Section */
.horoscope-reading {
    padding: 4rem 2rem;
    background: #1a1a2e;
}

.horoscope-main {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.horoscope-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.horoscope-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reading-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
}

.birthday-form {
    text-align: center;
    margin-bottom: 1rem;
}

.birthday-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.zodiac-grid {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.zodiac-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.zodiac-sign {
    flex: 1;
    max-width: 120px;
    aspect-ratio: 1;
    margin: 0 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.zodiac-sign:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.3);
}

.zodiac-sign.active {
    border-color: #ffd700;
    background: rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.sign-symbol {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.sign-name {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.tomorrow-date {
    display: none;
}

.horoscope-result {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.selected-sign {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.selected-sign .sign-symbol {
    font-size: 4rem;
    margin-right: 1.5rem;
}

.sign-details h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.reading-date {
    color: #ffd700;
    font-size: 1.1rem;
}

.daily-reading {
    color: #fff;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .zodiac-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .zodiac-sign {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }

    .sign-symbol {
        font-size: 2.5rem;
    }

    .sign-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .zodiac-sign {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .selected-sign {
        flex-direction: column;
        text-align: center;
    }

    .selected-sign .sign-symbol {
        margin: 0 0 1rem 0;
    }

    .sign-symbol {
        font-size: 2rem;
    }
}

/* Loading State */
.loading {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(147, 51, 234, 0.3);
    border-top-color: #9333ea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .zodiac-sign,
    .horoscope-result {
        transition: none;
    }

    .loading {
        animation: none;
    }
}

.birthday-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.birthday-form h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.birthday-form .form-group {
    margin-bottom: 1.5rem;
}

.birthday-form label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Raleway', sans-serif;
}

.birthday-form input[type="date"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.birthday-form input[type="date"]:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.birthday-form input[type="date"]:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.birthday-form .cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.birthday-form .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.birthday-form .cta-button:active {
    transform: translateY(0);
}

.zodiac-reference {
    text-align: center;
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.sign-dates {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-align: center;
}

.loading {
    text-align: center;
    padding: 2rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: #ffd700;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

.loading p {
    color: #ffd700;
    font-family: 'Orbitron', sans-serif;
}

.error-message {
    text-align: center;
    color: #ff6b6b;
    padding: 2rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
} </pre></body></html>