/*
Theme Name: 8Xbet Saigon Sports
Theme URI: https://8xbet.com
Author: 8Xbet Team
Author URI: https://8xbet.com
Description: Trang tin tức bóng đá phong cách Sài Gòn hiện đại - Vietnamese style football news theme with modern Saigon aesthetics. SEO optimized, fully responsive, WordPress 6.8.3 compatible.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8.3
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 8xbet-saigon
Tags: blog, news, sports, one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, translation-ready

8Xbet Saigon Sports WordPress Theme
Copyright 2024 8Xbet
*/

/* ========================================
   CSS Variables / Root
======================================== */
:root {
    /* 8Xbet Brand Colors */
    --primary-dark: #1a4b7c;
    --primary: #2a6db5;
    --primary-light: #5ba3e0;
    --accent: #ff6b35;
    --accent-gold: #ffc107;
    
    /* Vietnamese Inspired Colors */
    --vn-red: #da251d;
    --vn-gold: #ffcd00;
    --lotus-pink: #e91e8c;
    
    /* Neutrals */
    --bg-dark: #0a0f1a;
    --bg-darker: #060a12;
    --bg-card: #121a2d;
    --bg-card-hover: #1a2540;
    --bg-gradient: linear-gradient(135deg, #0a0f1a 0%, #0d1526 50%, #0f1a30 100%);
    --text-primary: #ffffff;
    --text-secondary: #8ba3c7;
    --text-muted: #5a6f8c;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-width: 1400px;
    
    /* Borders & Shadows */
    --border-subtle: 1px solid rgba(91, 163, 224, 0.1);
    --border-accent: 1px solid rgba(91, 163, 224, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.4s ease;
}

/* ========================================
   Reset & Base Styles
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1em;
    color: var(--text-secondary);
}

/* ========================================
   Container & Layout
======================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: var(--bg-darker);
}

.section-gradient {
    background: linear-gradient(180deg, transparent, rgba(42, 109, 181, 0.05));
}

/* ========================================
   Header Styles
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
    transition: var(--transition-fast);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(10, 15, 26, 0.98);
}

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

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.logo-text span {
    background: linear-gradient(135deg, var(--primary-light) 0%, #7bbef5 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation ul {
    display: flex;
    gap: 5px;
}

.main-navigation a {
    color: var(--text-secondary);
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--text-primary);
    background: rgba(91, 163, 224, 0.1);
}

.main-navigation .current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(91, 163, 224, 0.3);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    background: rgba(91, 163, 224, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(42, 109, 181, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42, 109, 181, 0.5);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #ff8a5c);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg-gradient);
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(42, 109, 181, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(91, 163, 224, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.vn-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, var(--vn-gold) 0, var(--vn-gold) 1px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, var(--vn-gold) 0, var(--vn-gold) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
}

.lotus-decoration {
    position: absolute;
    bottom: -50px;
    right: 10%;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    background: radial-gradient(ellipse at center, var(--lotus-pink) 0%, transparent 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 80px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(91, 163, 224, 0.1);
    border-radius: 10px;
    border: var(--border-subtle);
}

.hero-feature-icon {
    font-size: 1.5rem;
}

.hero-feature-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ========================================
   Live Match Widget
======================================== */
.live-match-widget {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 30px;
    border: var(--border-accent);
    position: relative;
    overflow: hidden;
}

.live-match-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vn-red), var(--vn-gold), var(--vn-red));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(218, 37, 29, 0.2);
    color: var(--vn-red);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--vn-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

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

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

.team-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(91, 163, 224, 0.2), rgba(42, 109, 181, 0.1));
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.team-name {
    font-weight: 600;
    font-size: 1rem;
}

.match-score {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    padding: 0 30px;
}

.match-time {
    text-align: center;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========================================
   Stats Bar
======================================== */
.stats-bar {
    background: var(--bg-card);
    border-top: var(--border-subtle);
    border-bottom: var(--border-subtle);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: var(--border-subtle);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
    border-radius: 2px;
}

.view-all {
    color: var(--primary-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-fast);
}

.view-all:hover {
    gap: 12px;
}

/* ========================================
   News Cards
======================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: var(--border-subtle);
    transition: var(--transition-medium);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(91, 163, 224, 0.3);
    box-shadow: var(--shadow-hover);
}

.news-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.news-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
    overflow: hidden;
}

.news-card.featured .news-image {
    height: 300px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-image::after {
    content: '⚽';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

.news-image.has-image::after {
    display: none;
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 24px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card.featured .news-title {
    font-size: 1.5rem;
}

.news-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Matches Section
======================================== */
.matches-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.match-tab {
    padding: 12px 24px;
    background: var(--bg-card);
    border: var(--border-subtle);
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.match-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 16px;
    border: var(--border-subtle);
    transition: var(--transition-fast);
}

.match-item:hover {
    border-color: rgba(91, 163, 224, 0.3);
    background: var(--bg-card-hover);
}

.match-team-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.match-team-right {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.match-team-logo {
    width: 50px;
    height: 50px;
    background: rgba(91, 163, 224, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.match-team-name {
    font-weight: 600;
}

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

.match-center-score {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.match-center-time {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.match-center-league {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   Standings Table
======================================== */
.standings-table {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: var(--border-subtle);
}

.table-header {
    display: grid;
    grid-template-columns: 50px 1fr repeat(6, 60px);
    padding: 20px 24px;
    background: rgba(91, 163, 224, 0.1);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.table-row {
    display: grid;
    grid-template-columns: 50px 1fr repeat(6, 60px);
    padding: 18px 24px;
    border-bottom: var(--border-subtle);
    transition: background var(--transition-fast);
    align-items: center;
}

.table-row:hover {
    background: var(--bg-card-hover);
}

.table-row:last-child {
    border-bottom: none;
}

.position {
    font-weight: 700;
    color: var(--primary-light);
}

.position.champion {
    color: var(--vn-gold);
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.team-mini-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(91, 163, 224, 0.2), rgba(42, 109, 181, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.points {
    color: var(--accent);
    font-weight: 700;
}

/* ========================================
   Leagues Section
======================================== */
.leagues-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.league-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: var(--border-subtle);
    transition: var(--transition-fast);
    cursor: pointer;
}

.league-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.league-icon {
    width: 60px;
    height: 60px;
    background: rgba(91, 163, 224, 0.1);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.league-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.league-country {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   About Section
======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.about-feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-card);
    border: var(--border-accent);
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

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

/* ========================================
   Footer
======================================== */
.site-footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: var(--border-subtle);
}

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

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
    line-height: 1.7;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(91, 163, 224, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 1px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    padding: 8px 0;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .leagues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
        --container-width: 100%;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2) {
        border-right: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-darker);
        padding: 20px;
        border-top: var(--border-subtle);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-medium);
    }
    
    .main-navigation.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation a {
        display: block;
        padding: 15px;
        border-radius: 10px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .matches-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .match-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .match-team-left,
    .match-team-right {
        justify-content: center;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 40px 1fr 60px;
    }
    
    .table-header span:not(:first-child):not(:last-child),
    .table-row > span:not(:first-child):not(:last-child) {
        display: none;
    }
    
    .leagues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text .lead {
        font-size: 1rem;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        border-right: none;
        padding: 15px 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .leagues-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}