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

:root {
    --primary: #ff6b35;
    --secondary: #004e89;
    --dark: #0a0e27;
    --light: #f8f9fa;
    --accent: #ffd60a;
    --text: #ffffff;
    --success: #4CAF50;
    --warning: #ff9800;
}

html {
    scroll-behavior: smooth;
}

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

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a2847 100%);
    z-index: -1;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(0, 78, 137, 0.1) 100%);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    padding: 120px 20px 100px;
    text-align: center;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.5);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Sections */
.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--light);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

/* Page Title */
.page-title {
    font-size: 56px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary);
}

.page-subtitle {
    font-size: 18px;
    text-align: center;
    color: rgba(248, 249, 250, 0.7);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff8555 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary) 0%, #ff8555 100%);
    color: white;
}

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

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

.btn-large {
    padding: 16px 50px;
    font-size: 16px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.stat-box {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-box small {
    font-size: 13px;
    color: rgba(248, 249, 250, 0.6);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--light);
}

.feature-card p {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.6;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.news-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.news-card:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-3px);
}

.news-date {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--light);
}

.news-card p {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent);
}

/* Match Cards */
.match-card-featured {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.match-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.match-type,
.match-date {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.teams-vs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.team {
    text-align: center;
}

.team-logo {
    font-size: 60px;
    margin-bottom: 10px;
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-abbr {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
}

.vs {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.match-details {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.label {
    font-weight: 600;
    color: var(--primary);
}

.value {
    color: rgba(248, 249, 250, 0.9);
}

/* Matches Container */
.matches-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.match-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.match-card:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-3px);
}

.match-body {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.team-match {
    text-align: center;
    flex: 1;
}

.match-result-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.result-date {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
}

.result-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.result-status.won {
    background: rgba(76, 175, 80, 0.2);
    color: var(--success);
}

.result-status.lost {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.result-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}

.result-team {
    text-align: center;
}

.score {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 8px;
}

.match-summary {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.8);
    margin: 15px 0;
    line-height: 1.6;
}

/* H2H Grid */
.h2h-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.h2h-box {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.h2h-box h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--light);
}

.h2h-box p {
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(248, 249, 250, 0.8);
}

/* Sponsors Grid */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sponsor-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    background: rgba(255, 107, 53, 0.15);
}

.sponsor-logo {
    font-size: 40px;
    margin-bottom: 15px;
}

.sponsor-card p {
    font-size: 14px;
    font-weight: 600;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.content-box {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.content-box:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.content-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light);
}

.content-box p {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    margin-bottom: 30px;
    padding-left: 50px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border: 3px solid var(--dark);
    border-radius: 50%;
}

.timeline-year {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--light);
}

.timeline-content p {
    font-size: 14px;
    color: rgba(248, 249, 250, 0.8);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.player-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.player-card:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.player-image {
    font-size: 50px;
    margin-bottom: 15px;
}

.player-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--light);
}

.role {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bio {
    font-size: 13px;
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.6;
}

.stats {
    font-size: 12px;
    color: var(--primary);
    margin: 10px 0;
    font-weight: 600;
}

/* Organization Grid */
.org-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.org-box {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.org-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.org-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light);
}

.org-box p {
    font-size: 13px;
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.8;
}

/* Squad Section */
.squad-section {
    margin-bottom: 50px;
}

.squad-section h3 {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--light);
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

/* CTA Section */
.cta-section {
    background: rgba(255, 107, 53, 0.08);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.cta-text {
    font-size: 18px;
    text-align: center;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Gallery */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: var(--text);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 250px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay small {
    font-size: 12px;
    color: rgba(248, 249, 250, 0.7);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.video-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.video-card:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.video-thumbnail {
    font-size: 60px;
    margin-bottom: 20px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
}

.video-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--light);
}

.video-card p {
    font-size: 13px;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 15px;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.media-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.media-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.media-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--light);
    font-weight: 600;
}

.media-card p {
    font-size: 13px;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 8px;
}

.media-card small {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.social-card {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.social-card:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.social-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.social-card p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
}

.social-card small {
    font-size: 12px;
    color: rgba(248, 249, 250, 0.7);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-box,
.contact-form-box {
    background: rgba(26, 20, 16, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 30px;
}

.contact-info-box h2,
.contact-form-box h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--light);
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-item p {
    color: rgba(248, 249, 250, 0.8);
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 249, 250, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form select option {
    background: var(--dark);
    color: var(--text);
}

/* Departments Grid */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.department-card {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 25px;
}

.department-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light);
}

.department-card p {
    font-size: 13px;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 8px;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 107, 53, 0.08);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 107, 53, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--light);
    list-style: none;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: rgba(248, 249, 250, 0.8);
    font-size: 14px;
    line-height: 1.8;
}

/* Tournament Info */
.tournament-info {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.tournament-detail h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--light);
}

.tournament-detail p {
    font-size: 15px;
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid rgba(255, 107, 53, 0.3);
    padding: 50px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.footer-section p {
    font-size: 13px;
    color: rgba(248, 249, 250, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(248, 249, 250, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: rgba(248, 249, 250, 0.6);
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .page-title {
        font-size: 40px;
    }

    .nav-links {
        gap: 15px;
        font-size: 13px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

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