:root {
    --primary-color: #e63946; /* Sporty Red */
    --secondary-color: #1d3557; /* Navy Blue */
    --accent-color: #457b9d;
    --background-color: #f8f9fa; /* Light Gray/White */
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo i {
    font-size: 32px;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -1px;
    text-transform: uppercase;
    font-style: italic;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 16px;
}

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

.btn-login {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-login:hover {
    background-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.7)), url('https://images.unsplash.com/photo-1522778119026-d647f0565c6a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    min-height: 600px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

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

.hero h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #c92a37;
    transform: translateY(-2px);
}

/* Hero Categories */
.hero-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.hero-cat-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

.hero-cat-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-cat-btn i {
    font-size: 20px;
}

/* Responsive Hero Categories */
@media (max-width: 768px) {
    .hero-categories {
        gap: 10px;
    }
    
    .hero-cat-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Live Matches */
.live-matches {
    background-color: #f0f2f5;
    padding: 60px 0;
}

.live-badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.match-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.match-card:hover {
    box-shadow: var(--shadow-hover);
}

.match-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.match-header .status {
    color: var(--primary-color);
    font-weight: 600;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 35%;
}

.team img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.team span {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.score {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.match-footer {
    text-align: center;
}

.btn-watch {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #f0f2f5;
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

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

/* SEO Article Section */
.seo-article {
    padding: 80px 0;
    background-color: #ffffff;
}

.seo-article .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.seo-article h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.seo-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 28px;
    width: 5px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.seo-article p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .seo-article {
        padding: 50px 0;
    }
    
    .seo-article h3 {
        font-size: 22px;
    }
    
    .seo-article p {
        font-size: 16px;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 70px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about p {
    margin: 20px 0;
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    opacity: 0.8;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 14px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple hide for now, JS will toggle */
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
        color: var(--secondary-color);
    }

    .hero h2 {
        font-size: 32px;
    }
}