.horoscope-tabs {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.tab {
    padding: 0.75rem 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab:hover {
    color: var(--primary);
}

.tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.zodiac-signs {
    padding: 3rem 0;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.zodiac-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.zodiac-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.zodiac-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.zodiac-card h3 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.date {
    color: #666;
    font-size: 0.85rem;
}

.horoscope-detail {
    padding: 3rem 0;
    background: var(--light);
}

.detail-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.zodiac-icon-large {
    font-size: 4rem;
}

.detail-header h2 {
    font-size: 2rem;
    color: var(--dark);
}

.prediction-section {
    margin-bottom: 2rem;
}

.prediction-section h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.prediction-section p {
    line-height: 1.8;
    color: #555;
}

.stats-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-weight: bold;
    color: #FF6B35;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.stat-bar {
    flex: 1;
    height: 10px;
    background: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

.remedies {
    background: #FFF9E6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.remedies h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.remedies ul {
    list-style: none;
}

.remedies li {
    margin-bottom: 0.5rem;
    color: #555;
}

.subscribe-box {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.subscribe-box h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.subscribe-box p {
    margin-bottom: 1rem;
    color: #666;
}

.subscribe-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .subscribe-options {
        flex-direction: column;
    }
}

/* Detailed Predictions */
.detailed-predictions {
    margin-top: 30px;
}

.detailed-predictions h3 {
    color: #1A1A2E;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.prediction-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #FF6B35;
}

.prediction-section h4 {
    color: #FF6B35;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.prediction-section p {
    color: #333;
    line-height: 1.8;
    text-align: justify;
}
