:root {
    --primary-color: #F97316;
    --primary-dark: #EA580C;
    --secondary-color: #06B6D4;
    --accent-color: #FCD34D;
    --bg-dark: #0F0F23;
    --bg-card: #1A1A2E;
    --bg-hover: #252542;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --border-color: #2A2A4A;
    --gradient-primary: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --gradient-secondary: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

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

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

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

.header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1A1A2E 100%);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    display: flex;
    background: var(--bg-card);
    border-radius: 25px;
    padding: 5px 15px;
    border: 1px solid var(--border-color);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    padding: 8px 10px;
    width: 150px;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.login-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
    backdrop-filter: blur(20px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 100px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease;
}

.hero-desc {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-all:hover {
    text-decoration: underline;
}

.live-section {
    padding: 50px 0;
}

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

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

.live-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.live-card.featured {
    grid-column: span 2;
    display: flex;
}

.live-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.live-card.featured .live-thumbnail {
    width: 50%;
}

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

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #EF4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

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

.viewer-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.live-info {
    padding: 20px;
}

.live-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.live-meta {
    display: flex;
    gap: 15px;
}

.game-tag {
    background: rgba(249, 115, 22, 0.2);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.live-card:not(.featured) .live-thumbnail {
    height: 150px;
}

.live-card:not(.featured) h3 {
    font-size: 14px;
    margin: 12px;
}

.live-card:not(.featured) p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0 12px 12px;
}

.tournaments-section {
    padding: 50px 0;
    background: rgba(26, 26, 46, 0.5);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tournament-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.tournament-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
}

.tournament-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #EF4444;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.tournament-badge.upcoming {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.tournament-thumbnail {
    height: 180px;
    overflow: hidden;
}

.tournament-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tournament-card:hover .tournament-thumbnail img {
    transform: scale(1.1);
}

.tournament-content {
    padding: 20px;
}

.tournament-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tournament-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.tournament-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.tournament-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.team {
    text-align: center;
}

.team-name {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

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

.vs {
    font-size: 16px;
    color: var(--text-secondary);
}

.watch-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.remind-btn {
    width: 100%;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.remind-btn:hover {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.ranking-section {
    padding: 50px 0;
}

.ranking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

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

.ranking-table {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

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

.ranking-table th {
    background: var(--bg-hover);
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 14px;
}

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

.rank-num {
    width: 30px;
    height: 30px;
    background: var(--bg-hover);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.rank-num.top {
    background: var(--gradient-primary);
    color: white;
}

.rank-num.gold { background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); color: #000; }
.rank-num.silver { background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%); color: #000; }
.rank-num.bronze { background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%); color: #000; }

.team-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-icon {
    font-size: 24px;
}

.team-detail {
    display: flex;
    flex-direction: column;
}

.team-name {
    font-weight: 500;
}

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

.points {
    font-weight: bold;
    color: var(--primary-color);
}

.win-rate {
    font-weight: 500;
}

.win-rate.high { color: #10B981; }
.win-rate.low { color: #EF4444; }

.status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    background: rgba(148, 163, 184, 0.2);
    color: var(--text-secondary);
}

.status.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.news-section {
    padding: 50px 0;
    background: rgba(26, 26, 46, 0.5);
}

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

.news-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.news-thumbnail {
    height: 120px;
    overflow: hidden;
}

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

.news-card h3 {
    font-size: 14px;
    margin: 12px;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0 12px 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: var(--text-secondary);
    margin: 0 12px 12px;
}

.features-section {
    padding: 50px 0;
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

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

.feature-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.page-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-desc {
    font-size: 16px;
    color: var(--text-secondary);
}

.filter-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

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

.game-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.game-filter {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.game-filter.active,
.game-filter:hover {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--secondary-color);
}

.tournaments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tournament-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.tournament-card .tournament-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.tournament-card .tournament-thumbnail {
    width: 200px;
    height: 120px;
    flex-shrink: 0;
}

.live-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
}

.match-status {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

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

.team-score .team-name {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

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

.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upcoming-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.upcoming-time {
    text-align: center;
    width: 100px;
    flex-shrink: 0;
}

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

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

.upcoming-card .upcoming-main {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.upcoming-card .upcoming-thumbnail {
    width: 150px;
    height: 90px;
    flex-shrink: 0;
}

.upcoming-teams {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 14px;
}

.completed-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.completed-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.completed-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.completed-card .completed-thumbnail {
    width: 180px;
    height: 100px;
    flex-shrink: 0;
}

.completed-result {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

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

.completed-result .team-name {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.completed-result .team-score {
    font-size: 20px;
    font-weight: bold;
}

.completed-result .team-score.winner {
    color: #10B981;
}

.completed-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

.replay-btn {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.replay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.4);
}

.top-teams-section {
    padding: 40px 0;
}

.top-teams {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
}

.top-team {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.top-team:hover {
    transform: translateY(-5px);
}

.top-team.first {
    order: 2;
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.top-team.second {
    order: 1;
    border-color: #C0C0C0;
}

.top-team.third {
    order: 3;
    border-color: #CD7F32;
}

.team-position {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.top-team.first .team-position {
    color: #FFD700;
}

.top-team.second .team-position {
    color: #C0C0C0;
}

.top-team.third .team-position {
    color: #CD7F32;
}

.team-crown {
    font-size: 32px;
    margin-bottom: 5px;
}

.team-avatar {
    font-size: 48px;
    margin: 10px 0;
}

.team-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

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

.stats-section {
    padding: 40px 0;
    background: rgba(26, 26, 46, 0.5);
}

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

.stat-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.stat-icon {
    font-size: 36px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

.player-ranking-section {
    padding: 50px 0;
}

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

.player-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.player-rank {
    width: 35px;
    height: 35px;
    background: var(--bg-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

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

.player-info {
    flex: 1;
}

.player-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

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

.player-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.player-score {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.schedule-section {
    padding: 50px 0;
    background: rgba(26, 26, 46, 0.5);
}

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

.schedule-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.schedule-time {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color);
    width: 150px;
}

.schedule-teams {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.schedule-teams .team {
    font-size: 16px;
    font-weight: 500;
}

.schedule-teams .vs {
    color: var(--text-secondary);
}

.schedule-status {
    font-size: 14px;
    color: var(--text-secondary);
    background: rgba(148, 163, 184, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
}

.about-section {
    padding: 60px 0;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

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

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

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

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

.team-section {
    padding: 60px 0;
}

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

.team-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.team-avatar {
    font-size: 64px;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.team-role {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-section {
    padding: 60px 0;
    background: rgba(26, 26, 46, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

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

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

.contact-detail h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

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

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

.contact-form h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
    font-size: 14px;
}

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

.form-textarea {
    height: 120px;
    resize: none;
}

.join-section {
    padding: 60px 0;
    text-align: center;
}

.join-content {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--border-color);
}

.join-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.join-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.join-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer {
    background: #1A1A2E;
    border-top: 1px solid var(--border-color);
    padding: 50px 0 20px;
}

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

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

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

.footer-section h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 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);
}

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

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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

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

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

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

    .live-card.featured .live-thumbnail {
        width: 100%;
    }

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

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

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

    .top-teams {
        flex-direction: column;
        align-items: center;
    }

    .top-team.first {
        order: 1;
    }

    .top-team.second {
        order: 2;
    }

    .top-team.third {
        order: 3;
    }

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

    .tournament-card {
        flex-direction: column;
    }

    .tournament-card .tournament-main {
        flex-direction: column;
        text-align: center;
    }

    .upcoming-card {
        flex-direction: column;
        text-align: center;
    }

    .completed-card {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}