/* Sports Page Styles */
.sports-hero {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    padding: 140px 0 100px;
    text-align: center;
    color: white;
}
.sports-hero h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
}
.sports-hero p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}
.sports-section {
    padding: 80px 0;
}
.sports-section.alt {
    background: var(--bg-surface);
}
.category-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.category-title i {
    color: var(--primary-orange);
}
.category-desc {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
}
.sports-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.sport-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 2px solid transparent;
}
.sport-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}
.sport-item i {
    font-size: 40px;
    color: var(--primary-orange);
    margin-bottom: 16px;
    display: block;
}
.sport-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 16px;
}
.featured-sports {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}
.featured-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}
.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.featured-card-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    padding: 40px;
    text-align: center;
    color: white;
}
.featured-card-header i {
    font-size: 60px;
    margin-bottom: 16px;
}
.featured-card-header h3 {
    font-size: 28px;
    font-weight: 800;
}
.featured-card-body {
    padding: 32px;
}
.featured-card-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.featured-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.featured-card-body li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.featured-card-body li:last-child {
    border-bottom: none;
}
.featured-card-body li i {
    color: var(--primary-orange);
    width: 20px;
}
.cta-sports {
    background: linear-gradient(135deg, #0f1724 0%, #1E3A5F 100%);
    padding: 100px 0;
    text-align: center;
}
.cta-sports h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}
.cta-sports p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    color: var(--text-dark);
    margin-left: auto;
    margin-right: auto;
}
.cta-sports .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}
