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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

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

/* Main Content */
main {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Featured News */
.featured-news {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.featured-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.featured-main:hover {
    transform: translateY(-5px);
}

.featured-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content {
    padding: 2rem;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.featured-content p {
    color: #666;
    margin-bottom: 1rem;
}

.featured-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sidebar-item:hover {
    transform: translateY(-3px);
}

.sidebar-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.sidebar-item p {
    color: #666;
    font-size: 0.9rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.category {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Sports Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #666;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p, .footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ffd700;
    color: #2c3e50;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .featured-news {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

            .hero-content h1 {
            font-size: 2rem;
        }
    }

    /* Page Header Styles */
    .page-header {
        text-align: center;
        padding: 3rem 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        margin-bottom: 3rem;
    }

    .page-description {
        font-size: 1.2rem;
        margin-top: 1rem;
        opacity: 0.9;
    }

    /* Category Stats */
    .category-stats {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .category-stats span {
        background: #f8f9fa;
        padding: 4px 8px;
        border-radius: 8px;
        font-size: 0.8rem;
        color: #666;
    }

    /* Live Match Styles */
    .live-matches, .upcoming-matches {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .live-match-card, .upcoming-match-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .live-match-card:hover, .upcoming-match-card:hover {
        transform: translateY(-5px);
    }

    .match-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .live-indicator {
        background: #ff6b6b;
        color: white;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: bold;
    }

    .match-time {
        color: #666;
        font-weight: bold;
    }

    .match-teams {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .team {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex: 1;
    }

    .team img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .team-name {
        font-weight: bold;
        color: #2c3e50;
    }

    .score {
        font-size: 1.5rem;
        font-weight: bold;
        color: #667eea;
    }

    .vs {
        font-weight: bold;
        color: #666;
        margin: 0 1rem;
    }

    .match-info {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        color: #666;
    }

    /* Commentary Styles */
    .commentary-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .commentary-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .commentary-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }

    .match-title {
        font-weight: bold;
        color: #2c3e50;
    }

    .commentary-time {
        color: #ff6b6b;
        font-weight: bold;
    }

    .commentary-content p {
        margin-bottom: 0.5rem;
        color: #666;
    }

    /* Stats Styles */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .stats-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .stats-card h3 {
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    .stat-item span {
        display: block;
        margin-bottom: 0.5rem;
        color: #666;
    }

    .stat-bar {
        display: flex;
        height: 20px;
        border-radius: 10px;
        overflow: hidden;
        background: #f8f9fa;
    }

    .stat-fill {
        background: #667eea;
        color: white;
        text-align: center;
        line-height: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }

    .stat-fill.opponent {
        background: #ff6b6b;
    }

    .player-stats {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .player-stat {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .player-name {
        font-weight: bold;
        color: #2c3e50;
    }

    .stat-value {
        color: #667eea;
        font-weight: bold;
    }

    /* About Page Styles */
    .about-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .about-text h2 {
        color: #2c3e50;
        margin: 2rem 0 1rem 0;
    }

    .about-text h2:first-child {
        margin-top: 0;
    }

    .values-list {
        list-style: none;
        padding: 0;
    }

    .values-list li {
        margin-bottom: 0.5rem;
        padding-left: 1rem;
        position: relative;
    }

    .values-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #667eea;
        font-weight: bold;
    }

    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #667eea;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: #666;
        font-size: 0.9rem;
    }

    /* Team Styles */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .team-member {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .team-member:hover {
        transform: translateY(-5px);
    }

    .team-member img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
    }

    .team-member h3 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .position {
        color: #667eea;
        font-weight: bold;
        margin-bottom: 1rem;
    }

    .bio {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Awards Styles */
    .awards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .award-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .award-card:hover {
        transform: translateY(-5px);
    }

    .award-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .award-card h3 {
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .award-card p {
        color: #666;
    }

    /* Contact Styles */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .contact-info h3 {
        color: #2c3e50;
        margin-bottom: 2rem;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .contact-icon {
        font-size: 1.5rem;
        margin-top: 0.2rem;
    }

    .contact-item strong {
        color: #2c3e50;
        display: block;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        color: #666;
        margin: 0.2rem 0;
    }

    .contact-form h3 {
        color: #2c3e50;
        margin-bottom: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #2c3e50;
        font-weight: bold;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #eee;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #667eea;
    }

    /* Responsive adjustments for new pages */
    @media (max-width: 768px) {
        .about-content,
        .contact-content {
            grid-template-columns: 1fr;
        }

        .about-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .live-matches,
        .upcoming-matches {
            grid-template-columns: 1fr;
        }

        .commentary-section {
            grid-template-columns: 1fr;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .about-stats {
            grid-template-columns: 1fr;
        }

        .match-teams {
            flex-direction: column;
            gap: 1rem;
        }

        .team {
            flex-direction: column;
            text-align: center;
        }
    }
