.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('https://grassroots-index-website.s3.amazonaws.com/images/Background.png') center/cover;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.page-header .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
}

.leaderboard-filters {
    background-color: var(--color-surface);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.leaderboard-content {
    padding: 30px 0 60px;
    background-color: var(--color-background);
}

.county-section {
    margin-bottom: 50px;
}

.county-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(45, 204, 112, 0.1) 0%, rgba(45, 204, 112, 0.05) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.county-header h2 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 1.6rem;
    font-weight: 600;
}

.county-header .county-icon {
    margin-right: 15px;
    color: var(--color-primary);
    font-size: 1.3rem;
}

.top-clubs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.placeholder-card {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

.placeholder-card i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.leaderboard-card {
    position: relative;
    background-color: var(--color-surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

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

.leaderboard-card.premium {
    border: 2px solid var(--color-primary);
}

.rank-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--color-primary);
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
}

.rank-badge.rank-1 {
    background-color: #ffd700;
    color: #000;
}

.rank-badge.rank-2 {
    background-color: #c0c0c0;
    color: #000;
}

.rank-badge.rank-3 {
    background-color: #cd7f32;
    color: #fff;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-secondary);
}

.no-results i {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    margin: 0 0 10px 0;
    color: var(--color-text-primary);
}

@media (max-width: 768px) {
    .top-clubs {
        grid-template-columns: 1fr;
    }
    
    .county-header h2 {
        font-size: 1.5rem;
    }
}