:root {
    --primary-color: #013369; /* NFL Blue-ish */
    --secondary-color: #d50a0a; /* NFL Red-ish */
    --accent-color: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Header & Logo */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--primary-color);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-icon {
    background: linear-gradient(135deg, var(--secondary-color), #b00000);
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(213, 10, 10, 0.4);
    border: 2px solid #fff;
    outline: 2px solid var(--secondary-color);
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    line-height: 1;
}

.logo-text span {
    color: var(--secondary-color);
    font-style: italic;
}

/* Header Message */
.header-message {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    text-align: right;
    max-width: 600px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 15px;
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-message {
        text-align: center;
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(1, 51, 105, 0.9), rgba(1, 51, 105, 0.8)), url('https://images.unsplash.com/photo-1487466365202-1afdb86c764e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    margin-bottom: 40px;
    border-radius: 0 0 20px 20px;
}

.hero-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding-bottom: 60px;
}

.sport-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.sport-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(1, 51, 105, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

.sport-card:hover .icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sport-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}

.live-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #e3f2fd;
    color: var(--primary-color);
    letter-spacing: 1px;
    transition: var(--transition);
}

.sport-card:hover .live-tag {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(213, 10, 10, 0.3);
}

/* Remove old status */
.status {
    display: none;
}

/* Footer */
.main-footer {
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    padding: 40px 0;
    color: var(--text-light);
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.disclaimer {
    max-width: 800px;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }

    .main-footer .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
