:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #ef4444;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--background-white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -1px;
    font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
}

.logo i {
    color: var(--primary-color);
    font-size: 2.2rem;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-signup {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: rgba(37, 99, 235, 0.05);
}

.btn-signup:hover {
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 2rem 5% 4rem; /* Reduced top padding to move text up */
    text-align: center;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    color: #000000; /* Changed to full black */
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500; /* Added slight weight for better readability */
}

.btn-cta {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Sports Grid */
.hero-sports {
    margin-top: 3rem;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.sport-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem; /* Increased vertical padding */
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 140px; /* Added minimum height */
}

.sport-btn i {
    font-size: 2.5rem; /* Increased icon size */
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sport-btn span {
    font-weight: 700; /* Made text bolder */
    font-size: 1.1rem; /* Increased font size */
    color: var(--text-dark);
}

.sport-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sport-btn:hover i, .sport-btn:hover span {
    color: white;
}

/* SEO Content Section */
.seo-content {
    background: var(--background-white);
    padding: 4rem 5%;
    border-top: 1px solid var(--border-color);
}

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

.article-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.article-container p {
    margin-bottom: 1.2rem;
    color: #334155;
    line-height: 1.8;
}

.article-container ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.article-container li {
    margin-bottom: 0.5rem;
    color: #334155;
}

.article-container .disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 3rem;
}

.btn-watch {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    background: var(--primary-color);
    color: white;
    transition: background 0.2s;
}

.btn-watch.secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-muted);
}

.btn-watch:hover {
    background: var(--secondary-color);
}

.btn-watch.secondary:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
    background: transparent;
}

/* Footer */
footer {
    background: var(--surface-light);
    border-top: 1px solid var(--border-color);
    padding: 3rem 5% 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-content .disclaimer {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-content p:last-child {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .teams {
        gap: 0.5rem;
    }
}
