@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 {
    --primary: #c62828;
    --primary-dark: #a71d1d;
    --primary-light: #e53935;
    --secondary: #1565c0;
    --secondary-dark: #0d47a1;
    --secondary-light: #1e88e5;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #212121;
    --text-gray: #616161;
    --text-light: #9e9e9e;
    --border-color: #e0e0e0;
    --success: #2e7d32;
    --warning: #f57c00;
    --live-red: #ff1744;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

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

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

/* ========== Header & Navigation ========== */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(198,40,40,0.3);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .cn {
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
}

.logo-text .en {
    font-size: 11px;
    color: var(--text-gray);
    font-family: 'Noto Sans SC', sans-serif;
    letter-spacing: 1px;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.main-nav a {
    display: block;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
    background: rgba(198, 40, 40, 0.08);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 12px rgba(198,40,40,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(198,40,40,0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
    box-shadow: 0 4px 12px rgba(21,101,192,0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(21,101,192,0.4);
}

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

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

.btn-lg {
    padding: 14px 36px;
    font-size: 17px;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 13px;
}

/* ========== Hero / Banner ========== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #8b0000 100%);
    color: white;
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=sports+arena+stadium+lights+night+tournament&image_size=landscape_16_9');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 52px;
    margin-bottom: 16px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero .subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

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

.hero-stat .num {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 42px;
    color: #ffd700;
    line-height: 1;
}

.hero-stat .label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 4px;
}

/* ========== LIVE Badge Animation ========== */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--live-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: live-pulse 1.2s infinite;
}

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

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--live-red);
    border-radius: 50%;
    animation: live-pulse 1.2s infinite;
}

/* ========== Section Common ========== */
.section {
    padding: 64px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

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

.section-title .icon {
    color: var(--primary);
    font-size: 36px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 15px;
    margin-top: 4px;
}

.section-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.section-more:hover {
    text-decoration: underline;
}

/* ========== Cards ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.4;
}

.card-meta {
    display: flex;
    gap: 16px;
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.card-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 12px 0;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.team-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.team-a { background: linear-gradient(135deg, #c62828, #e53935); }
.team-b { background: linear-gradient(135deg, #1565c0, #1e88e5); }

.team-name {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.vs-badge {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 20px;
    color: var(--primary);
    font-weight: bold;
}

/* ========== Status Tags ========== */
.status-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-live {
    background: rgba(255, 23, 68, 0.1);
    color: var(--live-red);
}

.status-upcoming {
    background: rgba(21, 101, 192, 0.1);
    color: var(--secondary);
}

.status-finished {
    background: rgba(158, 158, 158, 0.2);
    color: var(--text-gray);
}

.status-ongoing {
    background: rgba(245, 124, 0, 0.1);
    color: var(--warning);
}

/* ========== Quick Entry ========== */
.quick-entry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.quick-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.quick-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.quick-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
}

.quick-icon.red { background: rgba(198,40,40,0.1); color: var(--primary); }
.quick-icon.blue { background: rgba(21,101,192,0.1); color: var(--secondary); }
.quick-icon.orange { background: rgba(245,124,0,0.1); color: var(--warning); }
.quick-icon.green { background: rgba(46,125,50,0.1); color: var(--success); }

.quick-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.quick-desc {
    color: var(--text-gray);
    font-size: 13px;
}

/* ========== Filter Tabs ========== */
.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-tab {
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

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

/* ========== Schedule Calendar ========== */
.schedule-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 32px;
    scrollbar-width: thin;
}

.schedule-day {
    min-width: 100px;
    padding: 12px 16px;
    text-align: center;
    border-radius: var(--radius);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.schedule-day:hover,
.schedule-day.active {
    border-color: var(--primary);
    background: rgba(198,40,40,0.05);
}

.schedule-day .day-label {
    font-size: 12px;
    color: var(--text-gray);
}

.schedule-day .day-date {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 22px;
    color: var(--text-dark);
    margin: 2px 0;
}

.schedule-day .day-week {
    font-size: 12px;
    color: var(--text-gray);
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    flex-wrap: wrap;
}

.schedule-item:hover {
    box-shadow: var(--shadow-md);
}

.schedule-time {
    min-width: 80px;
    text-align: center;
}

.schedule-time .time {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 28px;
    color: var(--primary);
}

.schedule-time .date {
    font-size: 12px;
    color: var(--text-gray);
}

.schedule-match {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    min-width: 280px;
}

.schedule-match .team {
    flex-direction: row;
    gap: 10px;
}

.schedule-match .team-logo {
    width: 44px;
    height: 44px;
    font-size: 16px;
}

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

.schedule-info .tournament {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.schedule-info .venue {
    color: var(--text-gray);
    font-size: 13px;
}

/* ========== Ranking ========== */
.ranking-tabs {
    display: flex;
    gap: 0;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 4px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    display: inline-flex;
}

.ranking-tab {
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    border: none;
    color: var(--text-dark);
}

.ranking-tab.active {
    background: var(--primary);
    color: white;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.ranking-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.ranking-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.ranking-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.ranking-table tbody tr:hover {
    background: rgba(198,40,40,0.05);
}

.ranking-table tbody tr:last-child td {
    border-bottom: none;
}

.rank-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.rank-1 { background: #ffd700; color: #7a5c00; }
.rank-2 { background: #c0c0c0; color: #555; }
.rank-3 { background: #cd7f32; color: #5a3510; }
.rank-other { background: var(--bg-light); color: var(--text-dark); }

/* ========== About Page ========== */
.about-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 64px 0;
    text-align: center;
}

.about-hero h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 42px;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.feature-card {
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    background: linear-gradient(135deg, rgba(198,40,40,0.1), rgba(21,101,192,0.1));
}

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

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.team-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.team-member {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.member-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 36px;
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.member-role {
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 8px;
}

.member-desc {
    color: var(--text-gray);
    font-size: 13px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.contact-icon.red { background: rgba(198,40,40,0.1); color: var(--primary); }
.contact-icon.blue { background: rgba(21,101,192,0.1); color: var(--secondary); }
.contact-icon.orange { background: rgba(245,124,0,0.1); color: var(--warning); }

.contact-detail h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.contact-detail p {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-form {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

/* ========== Live Page Specific ========== */
.live-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 48px 0;
}

.live-header h1 {
    font-family: 'ZCOOL KuaiLe', cursive;
    font-size: 36px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.viewer-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.viewer-count .eye {
    color: #64b5f6;
}

.live-main-card {
    grid-column: 1 / -1;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.live-video {
    position: relative;
    background: #000;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.live-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.live-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0,0,0,0.4);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 0 0 rgba(198,40,40,0.6);
    animation: play-pulse 2s infinite;
}

@keyframes play-pulse {
    0% { box-shadow: 0 0 0 0 rgba(198,40,40,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(198,40,40,0); }
    100% { box-shadow: 0 0 0 0 rgba(198,40,40,0); }
}

.play-btn::after {
    content: '';
    border-left: 24px solid white;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 6px;
}

.live-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* ========== Footer ========== */
.site-footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.8);
    padding: 64px 0 0;
}

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

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

.footer-brand .logo-text .cn {
    color: white;
}

.footer-brand .logo-text .en {
    color: rgba(255,255,255,0.6);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
}

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

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    background: var(--bg-white);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

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

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

.breadcrumb span {
    margin: 0 8px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ========== Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s;
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        padding: 12px 16px;
    }

    .main-nav a.active::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding: 40px 0 60px;
    }

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

    .hero .subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .num {
        font-size: 32px;
    }

    .section {
        padding: 40px 0;
    }

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

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

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

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

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

    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .schedule-info {
        text-align: center;
    }

    .schedule-match {
        flex-direction: column;
    }

    .ranking-table {
        font-size: 13px;
    }

    .ranking-table th,
    .ranking-table td {
        padding: 10px 12px;
    }

    .team-name {
        font-size: 12px;
    }

    .logo-text .cn {
        font-size: 18px;
    }

    .logo-text .en {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 260px;
    }

    .quick-entry {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .live-header h1 {
        font-size: 24px;
        flex-wrap: wrap;
    }
}