/* Reset and Base Styles */
* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #1e3c72;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    margin-right: 0.5rem;
}

/* Fallback logo if image doesn't load */
.nav-logo .logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    border: 2px solid #fff;
}

.nav-logo .logo-icon::before {
    content: "⚽";
    font-size: 20px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.nav-logo .logo-text-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo .logo-text-content .score {
    color: #ffd700;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-logo .logo-text-content .football {
    color: white;
    font-size: 12px;
    font-weight: normal;
    opacity: 0.9;
}

/* Hide the text span when logo text is shown */
.nav-logo .logo-text.active + span {
    display: none;
}

.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,
.nav-link.active {
    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,
.nav-link.active::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;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: 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-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.keyword-article {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.keyword-article h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.keyword-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: white;
}

.history-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.history-article {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #007bff;
}

.history-article h3 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.history-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.history-article p:last-child {
    margin-bottom: 0;
}

/* Player Analysis Section */
.player-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.player-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.player-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #28a745;
}

.player-article h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.player-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.player-article p:last-child {
    margin-bottom: 0;
}

/* Fan Culture Section */
.fan-culture-section {
    padding: 80px 0;
    background: white;
}

.fan-culture-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.fan-culture-article {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-right: 5px solid #dc3545;
}

.fan-culture-article h3 {
    color: #dc3545;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.fan-culture-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.fan-culture-article p:last-child {
    margin-bottom: 0;
}

/* Premier League Analysis Section */
.premier-league-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.premier-league-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.premier-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #37003c;
}

.premier-article h3 {
    color: #37003c;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.premier-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.premier-article p:last-child {
    margin-bottom: 0;
}

/* European Leagues Comparison Section */
.european-comparison-section {
    padding: 80px 0;
    background: white;
}

.european-comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.comparison-article {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #ff6b35;
}

.comparison-article h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.comparison-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.comparison-article p:last-child {
    margin-bottom: 0;
}

/* Champions League Section */
.champions-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.champions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.champions-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-bottom: 5px solid #ffd700;
}

.champions-article h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.champions-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.champions-article p:last-child {
    margin-bottom: 0;
}

/* Technical Section */
.technical-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.technical-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.technical-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-right: 5px solid #667eea;
}

.technical-article h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.technical-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.technical-article p:last-child {
    margin-bottom: 0;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: white;
}

.community-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.community-article {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #ffd700;
}

.community-article h3 {
    color: #2a5298;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.community-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.community-article p:last-child {
    margin-bottom: 0;
}

/* Economics Section */
.economics-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.economics-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.economics-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-bottom: 5px solid #28a745;
}

.economics-article h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.economics-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.economics-article p:last-child {
    margin-bottom: 0;
}

/* Youth Development Section */
.youth-section {
    padding: 80px 0;
    background: white;
}

.youth-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.youth-article {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #fd7e14;
}

.youth-article h3 {
    color: #fd7e14;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.youth-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.youth-article p:last-child {
    margin-bottom: 0;
}

/* International Football Section */
.international-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.international-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.international-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-right: 5px solid #dc3545;
}

.international-article h3 {
    color: #dc3545;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.international-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.international-article p:last-child {
    margin-bottom: 0;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background: white;
}

.technology-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.technology-article {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #17a2b8;
}

.technology-article h3 {
    color: #17a2b8;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.technology-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.technology-article p:last-child {
    margin-bottom: 0;
}

/* Coaching Development Section */
.coaching-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.coaching-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.coaching-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-bottom: 5px solid #6f42c1;
}

.coaching-article h3 {
    color: #6f42c1;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.coaching-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.coaching-article p:last-child {
    margin-bottom: 0;
}

/* Women's Football Section */
.womens-section {
    padding: 80px 0;
    background: white;
}

.womens-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.womens-article {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #e83e8c;
}

.womens-article h3 {
    color: #e83e8c;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.womens-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.womens-article p:last-child {
    margin-bottom: 0;
}

/* Company Journey Section */
.journey-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.journey-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.journey-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #20c997;
}

.journey-article h3 {
    color: #20c997;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.journey-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.journey-article p:last-child {
    margin-bottom: 0;
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: white;
}

.achievements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.achievement-article {
    background: #f8f9fa;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-right: 5px solid #ffc107;
}

.achievement-article h3 {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.achievement-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.achievement-article p:last-child {
    margin-bottom: 0;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.partner-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-bottom: 5px solid #6c757d;
}

.partner-article h3 {
    color: #6c757d;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.partner-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.partner-article p:last-child {
    margin-bottom: 0;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: block;
    margin-bottom: 3rem;
}

.about-overview {
    margin-bottom: 3rem;
}

.about-text h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-image img {
    display: none;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.team-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-info {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #28a745;
}

.team-info h3 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.team-info p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.team-grid {
    display: none;
}

.team-member {
    display: none;
}

/* Privacy and Terms Page Styles */
.privacy-content,
.terms-content {
    padding: 80px 0;
    background: white;
}

.privacy-section,
.terms-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.privacy-section h2,
.terms-section h2 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.privacy-section h3 {
    color: #2a5298;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
}

.privacy-section p,
.terms-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul,
.terms-section ul {
    color: #555;
    line-height: 1.8;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section ul li,
.terms-section ul li {
    margin-bottom: 0.5rem;
}

/* League Page Styles */
.league-content {
    padding: 80px 0;
    background: white;
}

.league-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.league-section h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.league-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.league-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.info-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.info-card h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    margin: 0;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.team-card p {
    color: #666;
    line-height: 1.6;
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.league-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.league-card:hover {
    transform: translateY(-5px);
}

.league-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.league-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #333;
    font-size: 1.3rem;
}

.league-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Leagues Overview */
.leagues-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.league-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #007bff;
    transition: transform 0.3s ease;
}

.league-info:hover {
    transform: translateY(-3px);
}

.league-info h3 {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.league-info p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* News Page Styles */
.news-content {
    padding: 80px 0;
    background: white;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.news-overview {
    margin-bottom: 4rem;
}

.news-article {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #007bff;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.news-header h3 {
    color: #007bff;
    font-size: 1.8rem;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.news-date {
    background: #007bff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.news-article p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 1rem;
}

.news-article p:last-child {
    margin-bottom: 0;
}

.news-categories {
    margin-top: 4rem;
}

.news-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid #28a745;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card h3 {
    color: #28a745;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Stats Page Styles */
.stats-content {
    padding: 80px 0;
    background: white;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.stats-section p {
    text-align: center;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.stat-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-page-content {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 1rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.social-media h3 {
    margin-bottom: 1rem;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1e3c72;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #1e3c72;
    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-section h3 {
    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: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a5298;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e3c72;
        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;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .leagues-overview {
        grid-template-columns: 1fr;
    }
    
    .league-info {
        padding: 1.5rem;
    }
    
    /* News Responsive */
    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-header h3 {
        margin-bottom: 1rem;
        min-width: auto;
    }
    
    .news-date {
        align-self: flex-end;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .news-article {
        padding: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .services h2,
    .content-section h2,
    .contact h2,
    .page-header h1 {
        font-size: 2rem;
    }
}

/* About Page Responsive */
.about-overview {
    margin-bottom: 2rem;
}

.team-overview {
    grid-template-columns: 1fr;
}

.team-info {
    padding: 1.5rem;
}

.values-grid {
    grid-template-columns: 1fr;
} 