/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    color: white;
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo span {
    color: #ffd700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title span {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Simple fallback for missing hero image */
.hero-img:not([src]), 
.hero-img[src=""] {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.hero-img:not([src])::before, 
.hero-img[src=""]::before {
    content: "🏏";
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-img:not([src])::after, 
.hero-img[src=""]::after {
    content: "Hero Image";
    font-size: 1rem;
    opacity: 0.7;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Live Scores Section Enhancements */
.live-scores {
    padding: 80px 0;
    background: linear-gradient(120deg, #f8f9fa 60%, #e0e7ff 100%);
    min-height: 100vh;
}

.scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.score-card {
    background: linear-gradient(135deg, #e0e7ff 0%, #fff 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.08), 0 2px 8px rgba(118, 75, 162, 0.04);
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.score-card:hover {
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15), 0 4px 16px rgba(118, 75, 162, 0.08);
    transform: translateY(-6px) scale(1.02);
}

.match-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.2rem;
}

.teams {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e7ff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
}

.team-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.vs {
    font-weight: 700;
    color: #667eea;
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

.match-type {
    font-size: 0.95rem;
    color: #764ba2;
    font-weight: 500;
    background: #f3f4fa;
    border-radius: 12px;
    padding: 0.2rem 0.8rem;
    margin-top: 0.2rem;
}

.score-details {
    margin-bottom: 1.2rem;
}

.team-score-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-score {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 700;
}

.overs {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.match-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 0.98rem;
    margin-top: 0.5rem;
}

.venue {
    color: #764ba2;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.time {
    color: #667eea;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status {
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: auto;
}

.status.live {
    background: #dc3545;
    color: white;
}

.status.completed {
    background: #28a745;
    color: white;
}

.status.upcoming {
    background: #ffc107;
    color: #333;
}

@media (max-width: 900px) {
    .scores-grid {
        grid-template-columns: 1fr;
    }
    .score-card {
        min-height: 320px;
    }
}

@media (max-width: 600px) {
    .score-card {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        min-height: 260px;
    }
    .team-logo {
        width: 28px;
        height: 28px;
    }
    .team-name {
        font-size: 1rem;
    }
    .vs {
        font-size: 1rem;
    }
    .match-type {
        font-size: 0.85rem;
    }
    .team-score-row {
        font-size: 1rem;
    }
    .team-score {
        font-size: 1.1rem;
    }
    .match-meta {
        font-size: 0.9rem;
    }
}

/* News Section */
.news {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-card.featured {
    grid-column: span 2;
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 250px;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.news-img:hover {
    transform: scale(1.1);
}

/* Simple fallback for missing news images */
.news-img:not([src]), 
.news-img[src=""] {
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    border: 2px dashed #ddd;
    position: relative;
}

.news-img:not([src])::before, 
.news-img[src=""]::before {
    content: "📰";
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.news-img:not([src])::after, 
.news-img[src=""]::after {
    content: "News Image";
    font-size: 0.8rem;
    opacity: 0.7;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.date {
    font-size: 0.9rem;
    color: #999;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #ffd700;
}

.footer-logo p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-bottom i {
    color: #e74c3c;
}

/* About Page Styles */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-content h1 span {
    color: #ffd700;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.mission-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
    margin: 0;
}

.mission-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
}

.mission-img:hover {
    transform: scale(1.05);
}

/* Simple fallback for missing mission image */
.mission-img:not([src]), 
.mission-img[src=""] {
    background: #f0f0f0;
    border: 2px dashed #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    position: relative;
}

.mission-img:not([src])::before, 
.mission-img[src=""]::before {
    content: "🎯";
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-img:not([src])::after, 
.mission-img[src=""]::after {
    content: "Mission Image";
    font-size: 1rem;
    opacity: 0.7;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.member-img:hover {
    transform: scale(1.1);
}

/* Simple fallback for missing team member images */
.member-img:not([src]), 
.member-img[src=""] {
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    border: 2px dashed #ddd;
    position: relative;
}

.member-img:not([src])::before, 
.member-img[src=""]::before {
    content: "👤";
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.member-img:not([src])::after, 
.member-img[src=""]::after {
    content: "Team Member";
    font-size: 0.8rem;
    opacity: 0.7;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.position {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
}

.story-img:hover {
    transform: scale(1.05);
}

/* Simple fallback for missing story image */
.story-img:not([src]), 
.story-img[src=""] {
    background: #f0f0f0;
    border: 2px dashed #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
    position: relative;
}

.story-img:not([src])::before, 
.story-img[src=""]::before {
    content: "📖";
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-img:not([src])::after, 
.story-img[src=""]::after {
    content: "Our Story";
    font-size: 1rem;
    opacity: 0.7;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.story-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 500;
}

.highlight i {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.2rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Active nav link */
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-img {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .scores-grid {
        grid-template-columns: 1fr;
    }

    .news-card.featured {
        grid-column: span 1;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-card {
        flex-direction: column;
        text-align: center;
    }

    .match-date {
        align-self: center;
        margin-bottom: 1rem;
    }

    .rankings-tabs {
        flex-direction: column;
        align-items: center;
    }

    .table-header,
    .table-row {
        grid-template-columns: 60px 1fr 80px 80px;
        font-size: 0.8rem;
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* About page responsive */
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .mission-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .story-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-img,
    .story-img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .score-card {
        padding: 1.5rem;
    }

    .news-content {
        padding: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.hero-image,
.score-card,
.news-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: #f8f9fa;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    gap: 1.5rem;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.match-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
    text-align: center;
}

.match-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.match-date .month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.match-details {
    flex: 1;
}

.match-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.tournament {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.match-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.match-info i {
    color: #667eea;
    width: 16px;
}

/* Rankings Section */
.rankings {
    padding: 80px 0;
    background: white;
}

.rankings-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.rankings-content {
    max-width: 800px;
    margin: 0 auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rankings-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 120px 120px;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.table-header.players {
    grid-template-columns: 80px 1fr 120px 120px;
}

.table-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 120px;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.table-row.players {
    grid-template-columns: 80px 1fr 120px 120px;
}

.table-row:hover {
    background: #f8f9fa;
}

.table-row:last-child {
    border-bottom: none;
}

.rank {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.team,
.player {
    font-weight: 500;
    color: #333;
}

.country {
    color: #666;
    font-size: 0.9rem;
}

.rating,
.points {
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* Loading animation for placeholder images */
.placeholder-image {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
} 

/* Cricket Highlights Section */
.highlights {
    padding: 80px 0;
    background: linear-gradient(120deg, #e0e7ff 60%, #f8f9fa 100%);
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}
.highlight-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10), 0 2px 8px rgba(118, 75, 162, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 370px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.highlight-card:hover {
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.18), 0 4px 16px rgba(118, 75, 162, 0.10);
    transform: translateY(-6px) scale(1.02);
}
.highlight-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background: #e0e7ff;
}
.highlight-content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.highlight-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.7rem;
}
.highlight-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    flex: 1;
}
.highlight-date {
    font-size: 0.95rem;
    color: #764ba2;
    font-weight: 500;
    margin-top: auto;
}

/* ICC Rankings Cards Section */
.rankings-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
}
.ranking-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10), 0 2px 8px rgba(118, 75, 162, 0.04);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.ranking-card:hover {
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.18), 0 4px 16px rgba(118, 75, 162, 0.10);
    transform: translateY(-6px) scale(1.02);
}
.ranking-icon {
    font-size: 2.2rem;
    color: #667eea;
    margin-bottom: 1.1rem;
}
.ranking-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #764ba2;
    margin-bottom: 1.1rem;
}
.ranking-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.ranking-list li {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    padding: 0.6rem 0.2rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.ranking-list li:last-child {
    border-bottom: none;
}
.ranking-list li span {
    font-weight: 700;
    color: #667eea;
    min-width: 1.5rem;
    display: inline-block;
}

@media (max-width: 700px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .rankings-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* News & Updates Section */
.news-updates {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.news-updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-update-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.news-update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-update-card.featured {
    grid-column: span 2;
}

.news-update-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-update-card.featured .news-update-image {
    height: 250px;
}

.news-update-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-update-card:hover .news-update-img {
    transform: scale(1.05);
}

.news-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-update-content {
    padding: 25px;
}

.news-update-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-update-card.featured .news-update-content h3 {
    font-size: 22px;
}

.news-update-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-update-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.news-date {
    color: #95a5a6;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
}

/* Responsive Design for News Updates */
@media (max-width: 768px) {
    .news-updates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-update-card.featured {
        grid-column: span 1;
    }
    
    .news-update-content {
        padding: 20px;
    }
    
    .news-update-content h3 {
        font-size: 16px;
    }
    
    .news-update-card.featured .news-update-content h3 {
        font-size: 18px;
    }
    
    .news-update-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .news-updates {
        padding: 60px 0;
    }
    
    .news-update-image {
        height: 180px;
    }
    
    .news-update-card.featured .news-update-image {
        height: 200px;
    }
    
    .news-update-content {
        padding: 15px;
    }
}

/* Footer Legal Links */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #667eea;
}

.footer-legal span {
    color: #bdc3c7;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
} 