:root {
    --primary-color: #013369; /* NFL Blue-ish */
    --secondary-color: #D50A0A; /* NFL Red-ish */
    --text-color: #333333;
    --light-text: #666666;
    --bg-color: #f4f7f6;
    --card-bg: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--secondary-color);
}

.logo span {
    color: var(--secondary-color);
}





/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0 40px;
    background: #ffffff;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero p {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Sports Grid */
.sports-section {
    padding: 20px 0 60px;
}



.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.sport-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: #eee;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
}

.nfl-color { background: linear-gradient(135deg, #013369, #001E3E); }
.nba-color { background: linear-gradient(135deg, #C9082A, #17408B); }
.mlb-color { background: linear-gradient(135deg, #002D72, #D50032); }
.soccer-color { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.nhl-color { background: linear-gradient(135deg, #000000, #555555); }
.ufc-color { background: linear-gradient(135deg, #d20a0a, #8a0505); }
.f1-color { background: linear-gradient(135deg, #FF1801, #B30E00); }
.boxing-color { background: linear-gradient(135deg, #e67e22, #d35400); }

.sport-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.sport-card p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Content Section */
.content-section {
    background: #ffffff;
    padding: 60px 0;
    margin-top: 40px;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-color);
}

.article-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.article-content p {
    margin-bottom: 15px;
    color: var(--light-text);
    line-height: 1.8;
}

.article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
    color: var(--light-text);
}

.article-content a {
    color: var(--secondary-color);
    font-weight: 500;
}

.article-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-text);
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.9rem;
}



/* Responsive */
@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
