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

:root {
    --primary-color: #2563EB;
    --primary-dark: #1D4ED8;
    --secondary-color: #F59E0B;
    --accent-color: #10B981;
    --bg-dark: #0F172A;
    --bg-card: #1E293B;
    --bg-hover: #334155;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --border-color: #334155;
    --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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

.header {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo-icon {
    font-size: 28px;
}

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

.logo-badge {
    font-size: 12px;
    color: var(--secondary-color);
    background: rgba(245, 158, 11, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.login-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.register-btn {
    padding: 10px 24px;
    background: var(--gradient-secondary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.live-section,
.events-section,
.results-section,
.highlights-section {
    padding: 40px 0;
}

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

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.view-all {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.live-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

.live-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.live-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.live-card.featured {
    grid-column: span 1;
}

.live-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.live-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: #FF4444;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

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

.viewer-count {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

.live-info {
    padding: 16px;
}

.live-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.live-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.live-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
}

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

.event-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 8px;
    align-items: center;
    transition: all 0.3s ease;
}

.event-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-time {
    text-align: center;
    padding: 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    min-width: 80px;
}

.time-hour {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.time-status {
    font-size: 12px;
    color: var(--secondary-color);
}

.event-image {
    width: 150px;
    height: 84px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info {
    flex: 1;
}

.event-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 8px;
}

.event-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.event-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.event-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
}

.event-action {
    padding: 10px 20px;
    background: var(--gradient-secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.event-action:hover {
    transform: translateY(-2px);
}

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

.result-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.result-category {
    font-size: 12px;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
}

.result-time {
    font-size: 12px;
    color: var(--text-secondary);
}

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

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

.team-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

.team-score {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.team.winner .team-score {
    color: var(--accent-color);
}

.vs {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 8px;
}

.result-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 8px;
}

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

.highlight-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.highlight-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.highlight-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

.highlight-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 12px;
    margin-bottom: 4px;
}

.highlight-meta {
    display: flex;
    justify-content: space-between;
    padding: 0 12px 12px;
    font-size: 12px;
    color: var(--text-secondary);
}

.page-banner {
    background: var(--gradient-primary);
    padding: 40px 0;
    text-align: center;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.page-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.filter-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}

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

.filter-options {
    display: flex;
    gap: 12px;
}

.category-select {
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.events-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.events-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.event-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-card.featured {
    flex-direction: column;
}

.event-card.featured .event-thumbnail {
    width: 100%;
    padding-top: 50%;
}

.event-card.featured .event-content {
    padding-top: 16px;
}

.event-card.featured .event-score {
    margin-bottom: 12px;
}

.event-time {
    text-align: center;
    padding: 12px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    min-width: 80px;
}

.time-day {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 4px;
}

.event-thumbnail {
    width: 150px;
    height: 84px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    flex: 1;
}

.event-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 12px;
}

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

.score-team .team-name {
    font-size: 14px;
    margin-bottom: 8px;
}

.score-team .team-score {
    font-size: 32px;
    color: var(--primary-color);
}

.score-separator {
    font-size: 24px;
    color: var(--text-secondary);
}

.watch-btn,
.remind-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.watch-btn {
    background: var(--gradient-primary);
    color: #fff;
}

.watch-btn:hover {
    transform: translateY(-2px);
}

.remind-btn {
    background: rgba(245, 158, 11, 0.2);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.remind-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

.results-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.results-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.result-card {
    padding: 20px;
    text-align: left;
}

.result-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.action-link {
    text-decoration: none;
    font-size: 13px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.action-link:hover {
    color: var(--secondary-color);
}

.standings-section {
    margin-top: 24px;
}

.standings-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.standings-tab {
    padding: 10px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.standings-tab.active,
.standings-tab:hover {
    background: var(--primary-color);
    color: #fff;
}

.standings-table {
    overflow-x: auto;
}

.standings-table table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table th,
.standings-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.standings-table th {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
}

.standings-table td {
    font-size: 14px;
    color: var(--text-primary);
}

.standings-table tr:hover {
    background: var(--bg-hover);
}

.top-row {
    background: rgba(37, 99, 235, 0.1);
}

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

.team-flag {
    margin-right: 8px;
}

.pagination-section {
    margin-top: 24px;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.page-btn {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.events-sidebar,
.results-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-section {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 16px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

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

.stats-grid .stat-item {
    padding: 16px;
}

.hot-events {
    list-style: none;
}

.hot-events li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hot-events li:last-child {
    border-bottom: none;
}

.event-icon {
    font-size: 20px;
}

.hot-events .event-info {
    flex: 1;
}

.hot-events .event-info a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.hot-events .event-info a:hover {
    color: var(--primary-color);
}

.hot-events .event-info span {
    font-size: 12px;
    color: var(--text-secondary);
}

.app-download {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.app-download p {
    font-size: 13px;
    color: var(--text-secondary);
}

.mvp-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
}

.mvp-avatar {
    font-size: 40px;
}

.mvp-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mvp-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.mvp-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--secondary-color);
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

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

.news-list span {
    font-size: 12px;
    color: var(--text-secondary);
}

.about-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

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

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.about-stats .stat-box {
    flex: 1;
    text-align: center;
    padding: 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
}

.about-stats .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.about-stats .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.features-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.history-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
}

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

.timeline-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.team-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 8px;
}

.member-avatar {
    font-size: 48px;
    margin-bottom: 12px;
}

.team-member h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-member p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 8px;
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer {
    background: var(--bg-card);
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    font-size: 24px;
}

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

.footer-logo .logo-badge {
    font-size: 12px;
}

.footer-section p {
    font-size: 14px;
    color: var(--text-secondary);
}

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

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

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

.footer-section ul li a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .main-nav {
        gap: 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .live-grid {
        grid-template-columns: 1fr;
    }
    
    .events-list .event-item {
        flex-direction: column;
        text-align: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}