/* Horoscope Page Styles */
.horoscope-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

.horoscope-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.horoscope-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #e9c46a;
}

.horoscope-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

.horoscope-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.horoscope-quote {
    font-style: italic;
    font-size: 1rem;
    color: #666;
    padding: 15px 20px;
    margin: 20px 0 0 0;
    background: #fff;
    border-left: 3px solid #3ce6c0;
    border-radius: 4px;
}

.horoscope-day {
    border-left-color: #e9c46a;
}

.horoscope-week {
    border-left-color: #9b7bff;
}

.horoscope-year {
    border-left-color: #3ce6c0;
}

/* Responsive */
@media (max-width: 768px) {
    .horoscope-content h1 {
        font-size: 2rem;
    }

    .horoscope-section h2 {
        font-size: 1.5rem;
    }

    .horoscope-text {
        font-size: 1rem;
    }

    .horoscope-section {
        padding: 20px;
    }
}
