/* 轮播图样式 */
.ghibli-slider {
    margin-bottom: 30px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ghibli-slider-container {
    position: relative;
    height: 400px;
}

.ghibli-slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.ghibli-slider-item.active {
    opacity: 1;
}

.ghibli-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ghibli-slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
}

.ghibli-slider-caption h3 {
    margin: 0 0 5px;
    font-size: 22px;
}

.ghibli-slider-caption p {
    margin: 0;
    font-size: 14px;
}

.ghibli-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.ghibli-slider-arrow {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ghibli-slider-arrow:hover {
    background-color: white;
}

/* 今日比赛样式 */
.ghibli-today-matches {
    margin-bottom: 30px;
}

.ghibli-match-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.ghibli-match-item:hover {
    transform: translateY(-5px);
}

.ghibli-match-time {
    flex: 0 0 80px;
    text-align: center;
}

.ghibli-match-time-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--accent-color);
}

.ghibli-match-status {
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 5px;
}

.ghibli-match-status.upcoming {
    background-color: var(--secondary-color-light);
    color: var(--secondary-color);
}

.ghibli-match-status.live {
    background-color: rgba(255, 69, 58, 0.1);
    color: #ff453a;
}

.ghibli-match-status.finished {
    background-color: rgba(52, 199, 89, 0.1);
    color: #34c759;
}

.ghibli-match-teams {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

.ghibli-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ghibli-team-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

.ghibli-team-name {
    font-weight: bold;
    font-size: 16px;
}

.ghibli-match-score {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    padding: 0 15px;
}

.ghibli-match-actions {
    flex: 0 0 100px;
    text-align: center;
}

/* 热门新闻样式 */
.ghibli-hot-news {
    margin-bottom: 30px;
}

.ghibli-hot-news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.ghibli-hot-news-item {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px 20px;
}

@media (max-width: 992px) {
    .ghibli-hot-news-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .ghibli-hot-news-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .ghibli-slider-container {
        height: 300px;
    }
    
    .ghibli-match-item {
        flex-wrap: wrap;
    }
    
    .ghibli-match-teams {
        order: 1;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .ghibli-match-time {
        order: 2;
    }
    
    .ghibli-match-score {
        order: 3;
    }
    
    .ghibli-match-actions {
        order: 4;
        margin-top: 10px;
        width: 100%;
    }
} 