@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=ZCOOL+KuaiLe&display=swap');

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

:root {
    --bg-primary: #0a1628;
    --bg-secondary: #0f1f3a;
    --bg-card: #132244;
    --bg-card-hover: #1a2d56;
    --accent-blue: #00d4ff;
    --accent-blue-dim: #0099cc;
    --accent-orange: #ff6b35;
    --accent-orange-dim: #e55a2b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(0, 212, 255, 0.2);
    --border-active: rgba(0, 212, 255, 0.6);
    --shadow-blue: 0 0 30px rgba(0, 212, 255, 0.15);
    --shadow-orange: 0 0 30px rgba(255, 107, 53, 0.15);
    --gradient-blue: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-orange: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    --gradient-card: linear-gradient(145deg, #132244 0%, #0f1f3a 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-orange);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========== Header & Navigation ========== */
.header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bg-primary);
    font-weight: 900;
}

.logo span {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    display: block;
    padding: 8px 18px;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.1);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 1px;
}

.nav-cta {
    background: var(--gradient-orange);
    color: var(--text-primary);
    padding: 10px 24px !important;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    color: var(--text-primary) !important;
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ========== Hero Section ========== */
.hero {
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-text h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-num {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 2.5rem;
    color: var(--accent-blue);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--bg-primary);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    color: var(--bg-primary);
}

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

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 22, 40, 0.9);
    border: 1px solid var(--accent-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========== Section Titles ========== */
.section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-title h2 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.8rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 28px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.section-title .more-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-title .more-link:hover {
    color: var(--accent-blue);
}

/* ========== Live Preview Cards ========== */
.live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.live-card {
    background: var(--gradient-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.live-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-active);
    box-shadow: var(--shadow-blue);
}

.live-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-secondary);
}

.live-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.live-card:hover .live-card-thumb img {
    transform: scale(1.05);
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-orange);
    color: var(--text-primary);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    z-index: 2;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.viewer-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.viewer-count::before {
    content: '👁';
    font-size: 0.85rem;
}

.live-card-body {
    padding: 16px;
}

.live-card-body h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.live-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.category-tag {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-blue);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ========== Schedule Table ========== */
.schedule-table {
    background: var(--gradient-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.schedule-header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr 120px;
    padding: 14px 20px;
    background: rgba(0, 212, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr 120px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: background 0.3s ease;
}

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

.schedule-row:hover {
    background: rgba(0, 212, 255, 0.03);
}

.schedule-time {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.schedule-teams {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-name {
    color: var(--text-primary);
    font-weight: 500;
}

.vs-badge {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

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

.schedule-status {
    text-align: right;
}

.status-live {
    background: var(--accent-orange);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-upcoming {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-blue);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-ended {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
}

/* ========== Category Grid ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
}

.category-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-active);
    box-shadow: var(--shadow-blue);
    color: var(--text-primary);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.8rem;
}

.category-item h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.category-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== Stats Dashboard ========== */
.stats-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
}

.stat-card:hover {
    border-color: var(--border-active);
    transform: translateY(-4px);
}

.stat-card.orange::before {
    background: var(--gradient-orange);
}

.stat-value {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 2.8rem;
    color: var(--accent-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card.orange .stat-value {
    color: var(--accent-orange);
}

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

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #00ff88;
}

/* ========== Page Banner ========== */
.page-banner {
    padding: 40px 0 20px;
    position: relative;
}

.banner-content h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 2.4rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--accent-blue);
}

.breadcrumb .separator {
    color: var(--text-muted);
}

.breadcrumb .current {
    color: var(--accent-blue);
}

/* ========== Filter Bar ========== */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* ========== Ranking List ========== */
.ranking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ranking-list {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
}

.ranking-list h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.3rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-num {
    width: 32px;
    height: 32px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-blue);
}

.ranking-item.top-1 .ranking-num {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #0a1628;
}

.ranking-item.top-2 .ranking-num {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    color: #0a1628;
}

.ranking-item.top-3 .ranking-num {
    background: linear-gradient(135deg, #cd7f32 0%, #b87333 100%);
    color: #0a1628;
}

.ranking-team {
    flex: 1;
}

.ranking-team-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.ranking-team-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ranking-score {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.2rem;
    color: var(--accent-orange);
}

/* ========== Calendar ========== */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.calendar-day {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    min-height: 140px;
}

.calendar-day.active {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-blue);
}

.calendar-day-header {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-day-date {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.calendar-event {
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid var(--accent-blue);
    padding: 6px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    font-size: 0.75rem;
    line-height: 1.4;
}

.calendar-event.live {
    background: rgba(255, 107, 53, 0.15);
    border-left-color: var(--accent-orange);
}

.calendar-event-time {
    color: var(--accent-blue);
    font-weight: 700;
}

.calendar-event-title {
    color: var(--text-secondary);
    margin-top: 2px;
}

/* ========== About Timeline ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.about-img img {
    border-radius: 20px;
    border: 2px solid var(--border-color);
}

.about-text h2 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: 900;
    flex-shrink: 0;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-orange));
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--bg-primary);
    border: 3px solid var(--accent-blue);
    border-radius: 50%;
}

.timeline-year {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.2rem;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.timeline-content h4 {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== Contact Form ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.contact-info h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.contact-form h3 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========== Footer ========== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-blue);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .live-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

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

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

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

    .calendar {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

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

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

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

    .schedule-header,
    .schedule-row {
        grid-template-columns: 60px 1fr 80px;
        font-size: 0.8rem;
    }

    .schedule-league {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat .stat-num {
        font-size: 1.8rem;
    }
}

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

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

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

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

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .banner-content h1 {
        font-size: 1.6rem;
    }
}