/* Reset and base styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px; /* 为固定导航栏预留空间 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.z20572body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden; /* 防止水平滚动 */
}

.z20572container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.z20572header {
    background-color: #1a1a1a;
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.z20572header .z20572container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.z20572logo {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    white-space: nowrap;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.z20572menu-toggle {
    display: none;
}

.z20572main-nav {
    display: flex;
    align-items: center;
}

.z20572main-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.z20572main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
}

.z20572main-nav a:hover {
    color: #ffd700;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Desktop specific styles */
@media (min-width: 993px) {
    .z20572header .z20572container {
        padding: 0 1.5rem;
    }

    .z20572logo {
        font-size: 1.3rem;
        max-width: 500px;
    }

    .z20572main-nav {
        flex: 1;
        justify-content: flex-end;
        margin-left: 1.5rem;
    }

    .z20572main-nav ul {
        justify-content: flex-end;
        gap: 0.8rem;
    }

    .z20572main-nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Large desktop styles */
@media (min-width: 1400px) {
    .z20572header .z20572container {
        padding: 0 2rem;
    }

    .z20572logo {
        font-size: 1.4rem;
        max-width: 600px;
    }

    .z20572main-nav a {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Extra large desktop styles */
@media (min-width: 1600px) {
    .z20572header .z20572container {
        padding: 0 4rem;
    }

    .z20572logo {
        font-size: 1.5rem;
        max-width: 700px;
    }
}

/* Mobile navigation styles */
@media (max-width: 992px) {
    .z20572header {
        padding: 0.5rem 0;
    }

    .z20572header .z20572container {
        padding: 0 1rem;
    }

    .z20572logo {
        font-size: 1.2rem;
    }

    .z20572menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: relative;
    }

    .z20572menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .z20572menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .z20572menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .z20572menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .z20572main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #1a1a1a;
        padding: 70px 1rem 1rem;
        transition: right 0.3s ease;
        z-index: 1001;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .z20572main-nav.active {
        right: 0;
    }

    .z20572main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .z20572main-nav a {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        border-radius: 6px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .z20572main-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffd700;
    }

    .z20572nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .z20572nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .z20572header .z20572container {
        padding: 0 0.8rem;
    }

    .z20572logo {
        font-size: 1.1rem;
    }

    .z20572menu-toggle {
        width: 22px;
        height: 16px;
    }

    .z20572main-nav {
        width: 85%;
        padding: 65px 0.8rem 0.8rem;
    }

    .z20572main-nav a {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Hero section */
.z20572hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.z20572hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.z20572hero-text {
    flex: 1;
    max-width: 600px;
}

.z20572hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z20572hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.z20572hero-buttons {
    display: flex;
    gap: 20px;
}

.z20572hero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: flex-end;
}

.z20572hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.z20572hero-image img:hover {
    transform: translateY(-5px);
}

.z20572btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.z20572btn-primary {
    background-color: #ffd700;
    color: #1a1a1a;
}

.z20572btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.z20572btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.z20572btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: #ffd700;
    color: #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.z20572btn-small:hover {
    background-color: #e6c200;
}

/* Live matches section */
.z20572live-matches {
    padding: 4rem 0;
    background-color: #fff;
}

.z20572section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.z20572section-header h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
}

.z20572section-nav {
    display: flex;
    gap: 1rem;
}

.z20572nav-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.z20572nav-btn.active {
    background: #ffd700;
    color: #1a1a1a;
}

.z20572nav-btn:hover {
    background: #e6c200;
    color: #1a1a1a;
}

.z20572match-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.z20572match-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.z20572date-selector, .z20572league-filter {
    margin-bottom: 2rem;
}

.z20572date-selector h4, .z20572league-filter h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.z20572date-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z20572date-item {
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.z20572date-item.active {
    background: #ffd700;
    color: #1a1a1a;
}

.z20572date-item:hover {
    background: #f0f0f0;
}

.z20572filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z20572filter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.z20572match-content {
    flex: 1;
}

.z20572match-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z20572match-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.z20572match-card:hover {
    transform: translateY(-5px);
}

.z20572match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.z20572match-time {
    font-size: 1.2rem;
    color: #666;
}

.z20572match-league {
    font-size: 0.9rem;
    color: #666;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.z20572match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.z20572team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.z20572team img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.z20572team span {
    font-size: 1.1rem;
    font-weight: bold;
}

.z20572vs {
    color: #666;
    font-size: 1.2rem;
    font-weight: bold;
}

.z20572match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.z20572match-round {
    font-size: 0.9rem;
    color: #666;
}

.z20572match-status {
    color: #28a745;
    font-weight: bold;
}

.z20572match-stats {
    margin-bottom: 1.5rem;
}

.z20572stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.z20572stat-label {
    color: #666;
}

.z20572stat-value {
    font-weight: bold;
    color: #1a1a1a;
}

.z20572match-actions {
    display: flex;
    gap: 1rem;
}

.z20572match-actions .z20572btn {
    flex: 1;
    text-align: center;
}

/* News section */
.z20572news-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.z20572news-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.z20572news-main .z20572news-card.featured {
    margin-bottom: 0;
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.z20572news-category {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.z20572news-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.z20572news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.z20572news-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    height: 100%;
}

.z20572news-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.z20572news-item-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.z20572news-item-content .z20572news-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.z20572news-item-content .z20572news-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.z20572news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z20572news-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.z20572news-card:hover {
    transform: translateY(-5px);
}

.z20572news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.z20572news-content h4 {
    margin: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.z20572news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.z20572news-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.z20572news-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.z20572tag {
    background-color: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Highlights section */
.z20572highlights-section {
    padding: 4rem 0;
    background-color: #fff;
}

.z20572highlights-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.z20572highlights-main .z20572highlight-card.featured {
    margin-bottom: 0;
}

.z20572highlight-card.z20572featured .z20572highlight-image {
    height: 450px;
    position: relative;
}

.z20572highlight-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 2;
}

.z20572highlights-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.z20572highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.z20572highlight-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.z20572highlight-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.z20572highlight-item-image {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.z20572highlight-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z20572highlight-item-content {
    flex: 1;
}

.z20572highlight-item-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.z20572highlight-item-content .z20572highlight-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.z20572highlight-item-content .z20572highlight-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.z20572highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.z20572highlight-stats .z20572stat {
    text-align: center;
}

.z20572highlight-stats .z20572stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.z20572highlight-stats .z20572stat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.z20572highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z20572highlight-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.z20572highlight-card:hover {
    transform: translateY(-5px);
}

.z20572highlight-image {
    position: relative;
    height: 250px;
}

.z20572highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z20572play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.z20572play-button.small {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.z20572play-button:hover {
    background-color: #ffd700;
    transform: translate(-50%, -50%) scale(1.1);
}

.z20572highlight-content {
    padding: 1.5rem;
}

.z20572highlight-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.z20572highlight-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.z20572highlight-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features section */
.z20572features {
    background-color: #fff;
    padding: 4rem 0;
}

.z20572section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.z20572features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.z20572feature-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.z20572feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.z20572feature-icon {
    width: 80px;
    height: 80px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.z20572feature-content {
    flex: 1;
}

.z20572feature-content h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.z20572feature-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.z20572feature-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.z20572feature-list li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.z20572feature-list li:before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.z20572features-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.z20572stat-item {
    text-align: center;
    padding: 1rem;
}

.z20572stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.z20572stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Schedule section */
.z20572schedule-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.z20572schedule-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.z20572schedule-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.z20572date-selector, .z20572league-filter {
    margin-bottom: 2rem;
}

.z20572date-selector h4, .z20572league-filter h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.z20572date-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z20572date-item {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.z20572date-item.active {
    background: #ffd700;
    color: #1a1a1a;
}

.z20572date-item:hover {
    background: #f0f0f0;
}

.z20572filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z20572filter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.z20572schedule-content {
    flex: 1;
}

.z20572schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z20572schedule-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.z20572schedule-card:hover {
    transform: translateY(-5px);
}

.z20572schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.z20572schedule-time {
    font-size: 1.2rem;
    color: #666;
}

.z20572schedule-league {
    font-size: 0.9rem;
    color: #666;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.z20572schedule-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.z20572schedule-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.z20572schedule-round {
    font-size: 0.9rem;
    color: #666;
}

.z20572schedule-status {
    color: #28a745;
    font-weight: bold;
}

.z20572schedule-actions {
    display: flex;
    gap: 1rem;
}

.z20572schedule-actions .btn {
    flex: 1;
    text-align: center;
}

/* Stats section */
.z20572stats-section {
    padding: 4rem 0;
    background-color: #fff;
}

.z20572stats-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.z20572stats-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.z20572stats-filter, .z20572stats-summary {
    margin-bottom: 2rem;
}

.z20572stats-filter h4, .z20572stats-summary h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.z20572filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z20572filter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.z20572summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.z20572summary-item:last-child {
    border-bottom: none;
}

.z20572summary-label {
    color: #666;
}

.z20572summary-value {
    font-weight: bold;
    color: #1a1a1a;
}

.z20572stats-content {
    flex: 1;
}

.z20572stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z20572stats-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.z20572stats-card:hover {
    transform: translateY(-5px);
}

.z20572team-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.z20572team-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.z20572team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.z20572team-record {
    color: #666;
    font-size: 0.9rem;
}

.z20572team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.z20572stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.z20572stat-label {
    color: #666;
    font-size: 0.9rem;
}

.z20572stat-value {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.z20572team-trend {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z20572trend-label {
    color: #666;
    font-size: 0.9rem;
}

.z20572trend-value {
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.z20572trend-value.positive {
    background: #e8f5e9;
    color: #2e7d32;
}

.z20572trend-value.negative {
    background: #ffebee;
    color: #c62828;
}

/* Responsive design for stats section */
@media (max-width: 992px) {
    .z20572stats-container {
        grid-template-columns: 1fr;
    }

    .z20572stats-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .z20572stats-grid {
        grid-template-columns: 1fr;
    }

    .z20572team-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .z20572stats-card {
        padding: 1rem;
    }

    .z20572team-header {
        flex-direction: column;
        text-align: center;
    }

    .z20572team-header img {
        width: 80px;
        height: 80px;
    }
}

/* Players section */
.z20572players-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.z20572players-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.z20572players-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.z20572players-filter, .z20572players-summary {
    margin-bottom: 2rem;
}

.z20572players-filter h4, .z20572players-summary h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.z20572filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z20572filter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.z20572summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.z20572summary-item:last-child {
    border-bottom: none;
}

.z20572summary-label {
    color: #666;
}

.z20572summary-value {
    font-weight: bold;
    color: #1a1a1a;
}

.z20572players-content {
    flex: 1;
}

.z20572players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z20572player-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.z20572player-card:hover {
    transform: translateY(-5px);
}

.z20572player-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.z20572player-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.z20572player-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.z20572player-team {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.z20572player-position {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.z20572player-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.z20572stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.z20572stat-label {
    color: #666;
    font-size: 0.9rem;
}

.z20572stat-value {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.z20572player-trend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.z20572trend-label {
    color: #666;
    font-size: 0.9rem;
}

.z20572trend-stats {
    display: flex;
    gap: 1rem;
}

.z20572trend-value {
    background: #f8f9fa;
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Responsive design for players section */
@media (max-width: 992px) {
    .z20572players-container {
        grid-template-columns: 1fr;
    }

    .z20572players-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .z20572players-grid {
        grid-template-columns: 1fr;
    }

    .z20572player-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .z20572player-card {
        padding: 1rem;
    }

    .z20572player-header {
        flex-direction: column;
        text-align: center;
    }

    .z20572player-header img {
        width: 100px;
        height: 100px;
    }

    .z20572trend-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Footer */
.z20572footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.z20572footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.z20572footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.z20572footer-links {
    list-style: none;
}

.z20572footer-links li {
    margin-bottom: 0.5rem;
}

.z20572footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.z20572footer-links a:hover {
    color: #ffd700;
}

.z20572footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 1200px) {
    .z20572container {
        max-width: 960px;
    }

    .z20572hero-content {
        gap: 30px;
    }

    .z20572hero-text {
        max-width: 500px;
    }

    .z20572hero-image {
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .z20572container {
        max-width: 720px;
    }

    .z20572header .z20572container {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .z20572main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .z20572main-nav a {
        padding: 0.5rem;
        font-size: 1rem;
    }

    .z20572hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .z20572hero-text {
        max-width: 100%;
    }

    .z20572hero-buttons {
        justify-content: center;
    }

    .z20572hero-image {
        max-width: 100%;
        justify-content: center;
    }

    .z20572match-container,
    .z20572schedule-container,
    .z20572stats-container,
    .z20572players-container {
        grid-template-columns: 1fr;
    }

    .z20572match-sidebar,
    .z20572schedule-sidebar,
    .z20572stats-sidebar,
    .z20572players-sidebar {
        display: none;
    }

    .z20572news-container,
    .z20572highlights-container {
        grid-template-columns: 1fr;
    }

    .z20572features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .z20572container {
        max-width: 540px;
        padding: 0 15px;
    }

    .z20572section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .z20572section-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .z20572nav-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .z20572match-grid,
    .z20572schedule-grid,
    .z20572stats-grid,
    .z20572players-grid,
    .z20572news-grid,
    .z20572highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z20572features-container {
        grid-template-columns: 1fr;
    }

    .z20572features-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .z20572match-actions,
    .z20572schedule-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .z20572match-teams,
    .z20572schedule-teams {
        flex-direction: column;
        gap: 1rem;
    }

    .z20572team {
        flex-direction: row;
        gap: 1rem;
    }

    .z20572vs {
        margin: 0.5rem 0;
    }

    .z20572player-stats,
    .z20572team-stats {
        grid-template-columns: 1fr;
    }

    .z20572trend-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .z20572container {
        padding: 0 10px;
    }

    .z20572logo {
        font-size: 1.5rem;
    }

    .z20572main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .z20572hero-section {
        padding: 3rem 0;
    }

    .z20572hero-text h2 {
        font-size: 1.8rem;
    }

    .z20572hero-text p {
        font-size: 1rem;
    }

    .z20572hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .z20572btn {
        width: 100%;
        text-align: center;
    }

    .z20572match-card,
    .z20572schedule-card,
    .z20572stats-card,
    .z20572player-card,
    .z20572news-card,
    .z20572highlight-card,
    .z20572feature-card {
        padding: 1rem;
    }

    .z20572features-stats {
        grid-template-columns: 1fr;
    }

    .z20572stat-number {
        font-size: 1.8rem;
    }

    .z20572footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .z20572footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Additional responsive optimizations */
@media (min-width: 1200px) {
    .z20572container {
        max-width: 1140px;
    }

    .z20572hero-content {
        gap: 50px;
    }

    .z20572hero-text {
        max-width: 600px;
    }

    .z20572hero-image {
        max-width: 500px;
    }
}

@media (hover: hover) {
    .z20572match-card:hover,
    .z20572schedule-card:hover,
    .z20572stats-card:hover,
    .z20572player-card:hover,
    .z20572news-card:hover,
    .z20572highlight-card:hover,
    .z20572feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .z20572btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .z20572nav-btn:hover {
        background: #e6c200;
        color: #1a1a1a;
    }
}

/* Add margin to main content to account for fixed header */
.z20572main-content {
    margin-top: 60px;
}

/* Ensure body doesn't scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* 添加滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
} 