/* Sites Section */
.sites-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.sites-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--text-color);
    padding: 8px 15px;
    margin: 0 5px 10px;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.site-card {
    background-color: var(--card-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.site-card:hover {
    transform: translateY(-10px);
}

.site-header {
    position: relative;
}

.site-logo {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.site-popularity {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.site-content {
    padding: 20px;
}

.site-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.site-description {
    margin-bottom: 15px;
    font-size: 14px;
    color: #b2bec3;
}

.site-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.site-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-icon {
    color: var(--rating-color);
}

.rating-count {
    font-size: 14px;
    color: #b2bec3;
}

.site-bonus {
    font-size: 14px;
    font-weight: 600;
    color: var(--success-color);
}

.site-actions {
    display: flex;
    gap: 10px;
}

.load-more {
    text-align: center;
    margin-top: 40px;
}