/* Reset and base styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px; /* 为固定导航栏预留空间 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.zcb5bebody {
    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; /* 防止水平滚动 */
}

.zcb5becontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.zcb5beheader {
    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;
}

.zcb5beheader .zcb5becontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.zcb5belogo {
    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;
}

.zcb5bemenu-toggle {
    display: none;
}

.zcb5bemain-nav {
    display: flex;
    align-items: center;
}

.zcb5bemain-nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.zcb5bemain-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;
}

.zcb5bemain-nav a:hover {
    color: #ffd700;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Desktop specific styles */
@media (min-width: 993px) {
    .zcb5beheader .zcb5becontainer {
        padding: 0 1.5rem;
    }

    .zcb5belogo {
        font-size: 1.3rem;
        max-width: 500px;
    }

    .zcb5bemain-nav {
        flex: 1;
        justify-content: flex-end;
        margin-left: 1.5rem;
    }

    .zcb5bemain-nav ul {
        justify-content: flex-end;
        gap: 0.8rem;
    }

    .zcb5bemain-nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
    }
}

/* Large desktop styles */
@media (min-width: 1400px) {
    .zcb5beheader .zcb5becontainer {
        padding: 0 2rem;
    }

    .zcb5belogo {
        font-size: 1.4rem;
        max-width: 600px;
    }

    .zcb5bemain-nav a {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Extra large desktop styles */
@media (min-width: 1600px) {
    .zcb5beheader .zcb5becontainer {
        padding: 0 4rem;
    }

    .zcb5belogo {
        font-size: 1.5rem;
        max-width: 700px;
    }
}

/* Mobile navigation styles */
@media (max-width: 992px) {
    .zcb5beheader {
        padding: 0.5rem 0;
    }

    .zcb5beheader .zcb5becontainer {
        padding: 0 1rem;
    }

    .zcb5belogo {
        font-size: 1.2rem;
    }

    .zcb5bemenu-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;
    }

    .zcb5bemenu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .zcb5bemenu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .zcb5bemenu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .zcb5bemenu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .zcb5bemain-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;
    }

    .zcb5bemain-nav.active {
        right: 0;
    }

    .zcb5bemain-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .zcb5bemain-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;
    }

    .zcb5bemain-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffd700;
    }

    .zcb5benav-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;
    }

    .zcb5benav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .zcb5beheader .zcb5becontainer {
        padding: 0 0.8rem;
    }

    .zcb5belogo {
        font-size: 1.1rem;
    }

    .zcb5bemenu-toggle {
        width: 22px;
        height: 16px;
    }

    .zcb5bemain-nav {
        width: 85%;
        padding: 65px 0.8rem 0.8rem;
    }

    .zcb5bemain-nav a {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Hero section */
.zcb5behero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.zcb5behero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.zcb5behero-text {
    flex: 1;
    max-width: 600px;
}

.zcb5behero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.zcb5behero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.zcb5behero-buttons {
    display: flex;
    gap: 20px;
}

.zcb5behero-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: flex-end;
}

.zcb5behero-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;
}

.zcb5behero-image img:hover {
    transform: translateY(-5px);
}

.zcb5bebtn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.zcb5bebtn-primary {
    background-color: #ffd700;
    color: #1a1a1a;
}

.zcb5bebtn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.zcb5bebtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.zcb5bebtn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: #ffd700;
    color: #1a1a1a;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.zcb5bebtn-small:hover {
    background-color: #e6c200;
}

/* Live matches section */
.zcb5belive-matches {
    padding: 4rem 0;
    background-color: #fff;
}

.zcb5besection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.zcb5besection-header h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
}

.zcb5besection-nav {
    display: flex;
    gap: 1rem;
}

.zcb5benav-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: #f0f0f0;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.zcb5benav-btn.active {
    background: #ffd700;
    color: #1a1a1a;
}

.zcb5benav-btn:hover {
    background: #e6c200;
    color: #1a1a1a;
}

.zcb5bematch-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.zcb5bematch-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.zcb5bedate-selector, .zcb5beleague-filter {
    margin-bottom: 2rem;
}

.zcb5bedate-selector h4, .zcb5beleague-filter h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.zcb5bedate-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zcb5bedate-item {
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.zcb5bedate-item.active {
    background: #ffd700;
    color: #1a1a1a;
}

.zcb5bedate-item:hover {
    background: #f0f0f0;
}

.zcb5befilter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zcb5befilter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.zcb5bematch-content {
    flex: 1;
}

.zcb5bematch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zcb5bematch-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.zcb5bematch-card:hover {
    transform: translateY(-5px);
}

.zcb5bematch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.zcb5bematch-time {
    font-size: 1.2rem;
    color: #666;
}

.zcb5bematch-league {
    font-size: 0.9rem;
    color: #666;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.zcb5bematch-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.zcb5beteam {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.zcb5beteam img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.zcb5beteam span {
    font-size: 1.1rem;
    font-weight: bold;
}

.zcb5bevs {
    color: #666;
    font-size: 1.2rem;
    font-weight: bold;
}

.zcb5bematch-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.zcb5bematch-round {
    font-size: 0.9rem;
    color: #666;
}

.zcb5bematch-status {
    color: #28a745;
    font-weight: bold;
}

.zcb5bematch-stats {
    margin-bottom: 1.5rem;
}

.zcb5bestat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.zcb5bestat-label {
    color: #666;
}

.zcb5bestat-value {
    font-weight: bold;
    color: #1a1a1a;
}

.zcb5bematch-actions {
    display: flex;
    gap: 1rem;
}

.zcb5bematch-actions .zcb5bebtn {
    flex: 1;
    text-align: center;
}

/* News section */
.zcb5benews-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.zcb5benews-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.zcb5benews-main .zcb5benews-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%;
}

.zcb5benews-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;
}

.zcb5benews-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zcb5benews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zcb5benews-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    height: 100%;
}

.zcb5benews-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.zcb5benews-item-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.zcb5benews-item-content .zcb5benews-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.zcb5benews-item-content .zcb5benews-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.zcb5benews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zcb5benews-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;
}

.zcb5benews-card:hover {
    transform: translateY(-5px);
}

.zcb5benews-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zcb5benews-content h4 {
    margin: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.zcb5benews-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.zcb5benews-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.zcb5benews-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.zcb5betag {
    background-color: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Highlights section */
.zcb5behighlights-section {
    padding: 4rem 0;
    background-color: #fff;
}

.zcb5behighlights-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.zcb5behighlights-main .zcb5behighlight-card.featured {
    margin-bottom: 0;
}

.zcb5behighlight-card.zcb5befeatured .zcb5behighlight-image {
    height: 450px;
    position: relative;
}

.zcb5behighlight-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;
}

.zcb5behighlights-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.zcb5behighlights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zcb5behighlight-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.zcb5behighlight-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.zcb5behighlight-item-image {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.zcb5behighlight-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zcb5behighlight-item-content {
    flex: 1;
}

.zcb5behighlight-item-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #1a1a1a;
}

.zcb5behighlight-item-content .zcb5behighlight-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.zcb5behighlight-item-content .zcb5behighlight-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.zcb5behighlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.zcb5behighlight-stats .zcb5bestat {
    text-align: center;
}

.zcb5behighlight-stats .zcb5bestat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.zcb5behighlight-stats .zcb5bestat-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a;
}

.zcb5behighlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zcb5behighlight-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.zcb5behighlight-card:hover {
    transform: translateY(-5px);
}

.zcb5behighlight-image {
    position: relative;
    height: 250px;
}

.zcb5behighlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zcb5beplay-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;
}

.zcb5beplay-button.small {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.zcb5beplay-button:hover {
    background-color: #ffd700;
    transform: translate(-50%, -50%) scale(1.1);
}

.zcb5behighlight-content {
    padding: 1.5rem;
}

.zcb5behighlight-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.zcb5behighlight-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.zcb5behighlight-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Features section */
.zcb5befeatures {
    background-color: #fff;
    padding: 4rem 0;
}

.zcb5besection-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.zcb5befeatures-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.zcb5befeature-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;
}

.zcb5befeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zcb5befeature-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;
}

.zcb5befeature-content {
    flex: 1;
}

.zcb5befeature-content h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.zcb5befeature-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.zcb5befeature-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.zcb5befeature-list li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.zcb5befeature-list li:before {
    content: "•";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.zcb5befeatures-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.zcb5bestat-item {
    text-align: center;
    padding: 1rem;
}

.zcb5bestat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.zcb5bestat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Schedule section */
.zcb5beschedule-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.zcb5beschedule-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.zcb5beschedule-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zcb5bedate-selector, .zcb5beleague-filter {
    margin-bottom: 2rem;
}

.zcb5bedate-selector h4, .zcb5beleague-filter h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.zcb5bedate-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zcb5bedate-item {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.zcb5bedate-item.active {
    background: #ffd700;
    color: #1a1a1a;
}

.zcb5bedate-item:hover {
    background: #f0f0f0;
}

.zcb5befilter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zcb5befilter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.zcb5beschedule-content {
    flex: 1;
}

.zcb5beschedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zcb5beschedule-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.zcb5beschedule-card:hover {
    transform: translateY(-5px);
}

.zcb5beschedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.zcb5beschedule-time {
    font-size: 1.2rem;
    color: #666;
}

.zcb5beschedule-league {
    font-size: 0.9rem;
    color: #666;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.zcb5beschedule-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.zcb5beschedule-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.zcb5beschedule-round {
    font-size: 0.9rem;
    color: #666;
}

.zcb5beschedule-status {
    color: #28a745;
    font-weight: bold;
}

.zcb5beschedule-actions {
    display: flex;
    gap: 1rem;
}

.zcb5beschedule-actions .btn {
    flex: 1;
    text-align: center;
}

/* Stats section */
.zcb5bestats-section {
    padding: 4rem 0;
    background-color: #fff;
}

.zcb5bestats-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.zcb5bestats-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.zcb5bestats-filter, .zcb5bestats-summary {
    margin-bottom: 2rem;
}

.zcb5bestats-filter h4, .zcb5bestats-summary h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.zcb5befilter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zcb5befilter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.zcb5besummary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.zcb5besummary-item:last-child {
    border-bottom: none;
}

.zcb5besummary-label {
    color: #666;
}

.zcb5besummary-value {
    font-weight: bold;
    color: #1a1a1a;
}

.zcb5bestats-content {
    flex: 1;
}

.zcb5bestats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zcb5bestats-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.zcb5bestats-card:hover {
    transform: translateY(-5px);
}

.zcb5beteam-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.zcb5beteam-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.zcb5beteam-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.zcb5beteam-record {
    color: #666;
    font-size: 0.9rem;
}

.zcb5beteam-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.zcb5bestat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.zcb5bestat-label {
    color: #666;
    font-size: 0.9rem;
}

.zcb5bestat-value {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.zcb5beteam-trend {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zcb5betrend-label {
    color: #666;
    font-size: 0.9rem;
}

.zcb5betrend-value {
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.zcb5betrend-value.positive {
    background: #e8f5e9;
    color: #2e7d32;
}

.zcb5betrend-value.negative {
    background: #ffebee;
    color: #c62828;
}

/* Responsive design for stats section */
@media (max-width: 992px) {
    .zcb5bestats-container {
        grid-template-columns: 1fr;
    }

    .zcb5bestats-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .zcb5bestats-grid {
        grid-template-columns: 1fr;
    }

    .zcb5beteam-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zcb5bestats-card {
        padding: 1rem;
    }

    .zcb5beteam-header {
        flex-direction: column;
        text-align: center;
    }

    .zcb5beteam-header img {
        width: 80px;
        height: 80px;
    }
}

/* Players section */
.zcb5beplayers-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.zcb5beplayers-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.zcb5beplayers-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zcb5beplayers-filter, .zcb5beplayers-summary {
    margin-bottom: 2rem;
}

.zcb5beplayers-filter h4, .zcb5beplayers-summary h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.zcb5befilter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zcb5befilter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.zcb5besummary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.zcb5besummary-item:last-child {
    border-bottom: none;
}

.zcb5besummary-label {
    color: #666;
}

.zcb5besummary-value {
    font-weight: bold;
    color: #1a1a1a;
}

.zcb5beplayers-content {
    flex: 1;
}

.zcb5beplayers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.zcb5beplayer-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.zcb5beplayer-card:hover {
    transform: translateY(-5px);
}

.zcb5beplayer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.zcb5beplayer-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.zcb5beplayer-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.zcb5beplayer-team {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.zcb5beplayer-position {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.zcb5beplayer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.zcb5bestat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.zcb5bestat-label {
    color: #666;
    font-size: 0.9rem;
}

.zcb5bestat-value {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.zcb5beplayer-trend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.zcb5betrend-label {
    color: #666;
    font-size: 0.9rem;
}

.zcb5betrend-stats {
    display: flex;
    gap: 1rem;
}

.zcb5betrend-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) {
    .zcb5beplayers-container {
        grid-template-columns: 1fr;
    }

    .zcb5beplayers-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .zcb5beplayers-grid {
        grid-template-columns: 1fr;
    }

    .zcb5beplayer-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zcb5beplayer-card {
        padding: 1rem;
    }

    .zcb5beplayer-header {
        flex-direction: column;
        text-align: center;
    }

    .zcb5beplayer-header img {
        width: 100px;
        height: 100px;
    }

    .zcb5betrend-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Footer */
.zcb5befooter {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.zcb5befooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.zcb5befooter-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.zcb5befooter-links {
    list-style: none;
}

.zcb5befooter-links li {
    margin-bottom: 0.5rem;
}

.zcb5befooter-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.zcb5befooter-links a:hover {
    color: #ffd700;
}

.zcb5befooter-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 1200px) {
    .zcb5becontainer {
        max-width: 960px;
    }

    .zcb5behero-content {
        gap: 30px;
    }

    .zcb5behero-text {
        max-width: 500px;
    }

    .zcb5behero-image {
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .zcb5becontainer {
        max-width: 720px;
    }

    .zcb5beheader .zcb5becontainer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .zcb5bemain-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .zcb5bemain-nav a {
        padding: 0.5rem;
        font-size: 1rem;
    }

    .zcb5behero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .zcb5behero-text {
        max-width: 100%;
    }

    .zcb5behero-buttons {
        justify-content: center;
    }

    .zcb5behero-image {
        max-width: 100%;
        justify-content: center;
    }

    .zcb5bematch-container,
    .zcb5beschedule-container,
    .zcb5bestats-container,
    .zcb5beplayers-container {
        grid-template-columns: 1fr;
    }

    .zcb5bematch-sidebar,
    .zcb5beschedule-sidebar,
    .zcb5bestats-sidebar,
    .zcb5beplayers-sidebar {
        display: none;
    }

    .zcb5benews-container,
    .zcb5behighlights-container {
        grid-template-columns: 1fr;
    }

    .zcb5befeatures-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zcb5becontainer {
        max-width: 540px;
        padding: 0 15px;
    }

    .zcb5besection-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .zcb5besection-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .zcb5benav-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }

    .zcb5bematch-grid,
    .zcb5beschedule-grid,
    .zcb5bestats-grid,
    .zcb5beplayers-grid,
    .zcb5benews-grid,
    .zcb5behighlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .zcb5befeatures-container {
        grid-template-columns: 1fr;
    }

    .zcb5befeatures-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .zcb5bematch-actions,
    .zcb5beschedule-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .zcb5bematch-teams,
    .zcb5beschedule-teams {
        flex-direction: column;
        gap: 1rem;
    }

    .zcb5beteam {
        flex-direction: row;
        gap: 1rem;
    }

    .zcb5bevs {
        margin: 0.5rem 0;
    }

    .zcb5beplayer-stats,
    .zcb5beteam-stats {
        grid-template-columns: 1fr;
    }

    .zcb5betrend-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .zcb5becontainer {
        padding: 0 10px;
    }

    .zcb5belogo {
        font-size: 1.5rem;
    }

    .zcb5bemain-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .zcb5behero-section {
        padding: 3rem 0;
    }

    .zcb5behero-text h2 {
        font-size: 1.8rem;
    }

    .zcb5behero-text p {
        font-size: 1rem;
    }

    .zcb5behero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .zcb5bebtn {
        width: 100%;
        text-align: center;
    }

    .zcb5bematch-card,
    .zcb5beschedule-card,
    .zcb5bestats-card,
    .zcb5beplayer-card,
    .zcb5benews-card,
    .zcb5behighlight-card,
    .zcb5befeature-card {
        padding: 1rem;
    }

    .zcb5befeatures-stats {
        grid-template-columns: 1fr;
    }

    .zcb5bestat-number {
        font-size: 1.8rem;
    }

    .zcb5befooter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .zcb5befooter-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Additional responsive optimizations */
@media (min-width: 1200px) {
    .zcb5becontainer {
        max-width: 1140px;
    }

    .zcb5behero-content {
        gap: 50px;
    }

    .zcb5behero-text {
        max-width: 600px;
    }

    .zcb5behero-image {
        max-width: 500px;
    }
}

@media (hover: hover) {
    .zcb5bematch-card:hover,
    .zcb5beschedule-card:hover,
    .zcb5bestats-card:hover,
    .zcb5beplayer-card:hover,
    .zcb5benews-card:hover,
    .zcb5behighlight-card:hover,
    .zcb5befeature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .zcb5bebtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .zcb5benav-btn:hover {
        background: #e6c200;
        color: #1a1a1a;
    }
}

/* Add margin to main content to account for fixed header */
.zcb5bemain-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;
} 