:root {
    --primary-color: #ff9933;
    --secondary-color: #138808;
    --dark: #2d3436;
    --light: #f5f6fa;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #d63031;
    --info: #0984e3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container_one {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header_one {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header_one h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header_one p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.date-display {
    background-color: white;
    color: var(--dark);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 15px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.zodiac-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.zodiac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.zodiac-card.active {
    border: 3px solid var(--primary);
}

.zodiac-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.zodiac-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.zodiac-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.horoscope-detail {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: none;
}

.horoscope-detail.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.detail-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    color: var(--primary);
}

.detail-title {
    font-size: 1.8rem;
    color: var(--dark);
}

.detail-date {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.detail-section h3 i {
    margin-right: 10px;
}

.detail-section p {
    font-size: 1rem;
    color: #444;
}

.rating {
    display: flex;
    margin-top: 10px;
}

.star {
    color: #ccc;
    font-size: 1.2rem;
    margin-right: 5px;
}

.star.filled {
    color: var(--warning);
}

.compatibility {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.compatibility-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 0.8rem;
}



@media (max-width: 768px) {
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zodiac-grid {
        grid-template-columns: 1fr;
    }

    .header_one h1 {
        font-size: 2rem;
    }
}