/* 篮球集锦页面专用样式 - 优化版 */
.highlights-container {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(50, 50, 50, 0.7));
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlights-container h2 {
    margin: 0;
    padding: 0;
    width: 100%;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
    margin: 0;
    width: 100%;
}

.highlight-item {
    text-decoration: none;
    margin-bottom: 0px;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.6), rgba(60, 60, 60, 0.5));
    padding: 2px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight-item:hover {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.8), rgba(70, 70, 70, 0.6));
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.highlight-item h3 {
    flex: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 5px 5px;
}

.highlight-meta {
    color: #bbb;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.highlight-meta::before {
    content: "📅";
    margin-right: 8px;
    font-size: 14px;
}

/* 分页样式 - 优化版 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.7), rgba(60, 60, 60, 0.6));
    color: #4fc3f7;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-link:hover {
    background: linear-gradient(145deg, rgba(50, 50, 50, 0.9), rgba(70, 70, 70, 0.7));
    color: #fff;
    transform: translateY(-2px);
}

.page-link.active {
    background: linear-gradient(145deg, #4fc3f7, #1e90ff);
    color: #121212;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

.page-link.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.page-ellipsis {
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: #888;
}

.mobile-pages {
    display: flex;
    align-items: center;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .highlights-container {
        padding: 15px;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 5px 15px;
    }
    
    .highlight-item h3 {
        margin-right: 0;
        margin-bottom: 2px;
    }
    
    .pagination {
        justify-content: space-between;
        gap: 0;
    }
    
    .page-link {
        min-width: auto;
        flex-grow: 1;
        margin: 0 2px;
        padding: 0 10px;
    }
    
    .mobile-pages {
        display: none;
    }
    
    .prev, .next {
        flex-grow: 1;
        text-align: center;
    }
}
