:root {
    --primary-color: #4A8F6D; /* 吉卜力风格的主色调，绿色 */
    --secondary-color: #F0B27A; /* 次要色，温暖的橙色 */
    --text-color: #333333; /* 主文本颜色 */
    --light-color: #F5F8F7; /* 浅色背景 */
    --accent-color: #DE6449; /* 强调色，用于按钮和重点突出 */
    --border-radius: 8px; /* 边框圆角 */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    --transition: all 0.3s ease; /* 过渡效果 */
}

body {
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    /* 吉卜力风格的背景 */
    background-color: #f0f7f4;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 70%),
        linear-gradient(to bottom, #e8f4ed 0%, #f0f7f4 100%);
    background-attachment: fixed;
    background-size: 100% 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* 添加吉卜力风格的云朵装饰 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.8) 0%, transparent 20%),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 25%),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.7) 0%, transparent 30%),
        radial-gradient(circle at 90% 40%, rgba(255, 255, 255, 0.7) 0%, transparent 20%);
    opacity: 0.7;
    z-index: -1;
}

/* 添加轻柔的动画效果 */
@keyframes float-clouds {
    0% { background-position: 0% 0%; }
    50% { background-position: 2% 2%; }
    100% { background-position: 0% 0%; }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%234a8f6d' fill-opacity='0.03' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    animation: float-clouds 60s ease-in-out infinite;
    opacity: 0.6;
    z-index: -2;
    pointer-events: none;
}

.ghibli-header {
    padding: 0 !important;
}

.ghibli-logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ghibli-logo img {
    height: 120px !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
}

.ghibli-logo:hover img {
    transform: scale(1.05);
}

.ghibli-search {
    display: flex;
}

.ghibli-search form {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ghibli-search input {
    border: none;
    padding: 10px 15px;
    width: 250px;
    font-size: 16px;
    outline: none;
}

.ghibli-search button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* 导航菜单 */
.ghibli-nav {
    background-color: white;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.ghibli-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghibli-nav li {
    padding: 15px;
    position: relative;
}

.ghibli-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ghibli-nav a:hover {
    color: var(--primary-color);
}

.ghibli-nav li.active a {
    color: var(--primary-color);
    font-weight: bold;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .ghibli-logo-wrapper {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }
    
    .ghibli-logo {
        margin-bottom: 10px;
    }
    
    .ghibli-logo img {
        height: 80px !important;
    }
    
    .ghibli-search input {
        width: 180px;
    }
    
    .ghibli-nav {
        overflow-x: auto;
        white-space: nowrap;
        padding: 0 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        margin-bottom: 10px;
    }
    
    .ghibli-nav::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .ghibli-nav ul {
        display: inline-flex;
        width: max-content;
    }
    
    .ghibli-nav li {
        flex: 0 0 auto;
        padding: 12px 15px;
    }
}

/* 调整容器样式以配合新背景 */
.ghibli-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(74, 143, 109, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
    margin-bottom: 20px;
}

.ghibli-container::before,
.ghibli-container::after,
.ghibli-news-item::after,
.ghibli-video-list::before,
.ghibli-date-nav::before {
    display: none; /* 暂时隐藏无法加载的装饰图 */
}

/* 双栏布局 */
.ghibli-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

/* 卡片样式 */
.ghibli-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
    transition: var(--transition);
}

.ghibli-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* 按钮样式 */
.ghibli-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

.ghibli-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.ghibli-btn:hover::before {
    left: 100%;
}

.ghibli-btn:hover {
    background-color: #3c7359;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* 改进标题样式 */
.ghibli-section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.ghibli-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.ghibli-sidebar {
    margin-top: 20px;
}
/* 侧边栏小组件 */
.ghibli-sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
    transition: var(--transition);
}

.ghibli-sidebar-widget-title {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    margin: 0;
    font-size: 18px;
    position: relative;
}

.ghibli-sidebar-widget-content {
    padding: 15px;
}

/* 文章标题链接样式 */
.ghibli-article-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin-bottom: 10px;
}

.ghibli-article-title a:hover {
    color: var(--accent-color);
}

/* 热门资讯布局 */
.ghibli-hot-news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 修正标题溢出 */
.ghibli-article-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 50px;
    margin-top: 10px;
}

/* 热门资讯项目样式 */
.ghibli-hot-news-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

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

.ghibli-hot-news-item .ghibli-article-content {
    padding: 15px;
}

/* 热门资讯图片尺寸限制 */
.ghibli-hot-news-item .ghibli-article-image {
    height: 180px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.ghibli-hot-news-item .ghibli-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ghibli-hot-news-item .ghibli-article-image img:hover {
    transform: scale(1.05);
}

/* 文章元数据样式 */
.ghibli-article-meta {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
}

.ghibli-article-meta span {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

.ghibli-article-meta i {
    margin-right: 5px;
    font-size: 14px;
}

/* 文章摘要样式 */
.ghibli-article-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 文章列表页图片尺寸限制 */
.ghibli-article-item .ghibli-article-image {
    height: 160px;
    overflow: hidden;
}

.ghibli-article-item .ghibli-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ghibli-article-item .ghibli-article-image img:hover {
    transform: scale(1.05);
}

/* 相关文章图片尺寸限制 */
.ghibli-article-related-image {
    height: 120px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.ghibli-article-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ghibli-article-related-image img:hover {
    transform: scale(1.05);
}

/* 文章标签 */
.ghibli-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.ghibli-article-tag {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.ghibli-article-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

/* 视频项目图片尺寸限制 */
.ghibli-video-image {
    height: 140px;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
}

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

.ghibli-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

/* 热门标签样式 */
.ghibli-hot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ghibli-hot-tags a {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.ghibli-hot-tags a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* 列表链接样式 */
.ghibli-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghibli-footer-links li {
    border-bottom: 1px dashed #eee;
    padding: 8px 0;
}

.ghibli-footer-links li:last-child {
    border-bottom: none;
}

.ghibli-footer-links a {
    color: var(--text-color);
    text-decoration: none;
    display: block;
    transition: var(--transition);
    font-size: 14px;
}

.ghibli-footer-links a i {
    margin-right: 8px;
    color: var(--primary-color);
}

.ghibli-footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* 赛程区域 - 新设计 */
.ghibli-matches {
    margin-bottom: 30px;
}

/* 日期标签栏 */
.ghibli-date-tabs {
    display: flex;
    gap: 5px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.ghibli-date-tabs::-webkit-scrollbar {
    display: none;
}

.ghibli-date-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    min-width: 65px;
    border: 1px solid transparent;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
}

.ghibli-date-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.7);
}

.ghibli-date-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 6px rgba(74, 143, 109, 0.2);
}

.ghibli-date-day {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}

.ghibli-date-week {
    font-size: 12px;
    opacity: 0.9;
}

/* 赛程内容区域 */
.ghibli-match-container {
    position: relative;
}

.ghibli-match-panel {
    display: none;
    grid-gap: 8px;
}

.ghibli-match-panel.active {
    display: grid;
}

/* 比赛卡片 */
.ghibli-match-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 2fr 80px;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.ghibli-match-card:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 比赛信息区域 */
.ghibli-match-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ghibli-match-time {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

.ghibli-match-name {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 比赛主体区域 */
.ghibli-match-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 5px;
    align-items: center;
}

/* 主队 */
.ghibli-team-home {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    text-align: right;
}

/* 客队 */
.ghibli-team-away {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    text-align: left;
}

/* 团队名称 */
.team-name {
    font-size: 13px;
    color: #333;
    font-weight: 500;
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 队伍图标 */
.ghibli-team-home img,
.ghibli-team-away img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* 比分区域 */
.ghibli-match-score {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    padding: 0 5px;
}

.vs {
    color: #666;
    font-size: 13px;
}

.score-num {
    color: var(--accent-color);
    font-size: 15px;
}

.score-divider {
    margin: 0 3px;
    color: #999;
    font-size: 14px;
}

/* 按钮区域 */
.ghibli-match-btn {
    text-align: center;
}

.ghibli-match-btn .ghibli-btn {
    padding: 5px 10px;
    font-size: 12px;
    min-width: 60px;
}

.ghibli-match-btn .ghibli-btn.live {
    background-color: var(--accent-color);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .ghibli-match-card {
        grid-template-columns: 1fr 2fr 70px;
        padding: 10px;
    }
    
    .team-name {
        max-width: 60px;
        font-size: 12px;
    }
    
    .ghibli-team-home img,
    .ghibli-team-away img {
        width: 20px;
        height: 20px;
    }
    
    .ghibli-match-btn .ghibli-btn {
        padding: 4px 8px;
        font-size: 11px;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .ghibli-match-card {
        grid-template-columns: 60px 1fr 60px;
        gap: 5px;
    }
    
    .ghibli-match-time {
        font-size: 13px;
    }
    
    .ghibli-match-name {
        font-size: 11px;
    }
    
    .team-name {
        max-width: 50px;
        font-size: 11px;
    }
    
    .ghibli-team-home img,
    .ghibli-team-away img {
        width: 18px;
        height: 18px;
    }
    
    .score-num {
        font-size: 14px;
    }
    
    .ghibli-match-btn .ghibli-btn {
        padding: 3px 6px;
        font-size: 10px;
    }
}

/* 新闻列表样式 */
.ghibli-news-list {
    position: relative;
    display: grid;
    gap: 20px;
}

.ghibli-news-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}

.ghibli-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.ghibli-news-item:nth-child(odd)::before {
    content: '🍃';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 16px;
    opacity: 0.2;
    z-index: 1;
}

.ghibli-news-item:nth-child(even)::before {
    content: '🌿';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 16px;
    opacity: 0.2;
    z-index: 1;
}

.ghibli-news-image {
    height: 150px;
    overflow: hidden;
}

.ghibli-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ghibli-news-item:hover .ghibli-news-image img {
    transform: scale(1.05);
}

.ghibli-news-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.ghibli-news-title {
    margin: 0 0 10px;
    font-size: 18px;
}

.ghibli-news-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.ghibli-news-title a:hover {
    color: var(--primary-color);
}

.ghibli-news-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.ghibli-news-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 录像列表样式 */
.ghibli-video-list {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 15px;
    position: relative;
    border-top: 3px solid var(--primary-color);
    border-left: 1px solid rgba(74, 143, 109, 0.1);
    border-right: 1px solid rgba(74, 143, 109, 0.1);
    border-bottom: 1px solid rgba(74, 143, 109, 0.1);
}

.ghibli-video-item {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.ghibli-video-item:hover {
    background: var(--light-color);
    padding-left: 20px;
    border-radius: var(--border-radius);
}

.ghibli-video-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.ghibli-video-item:hover::before {
    height: 70%;
}

.ghibli-video-info {
    display: grid;
    gap: 8px;
}

.ghibli-video-title {
    margin: 0;
}

.ghibli-video-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.ghibli-video-title a:hover {
    color: var(--primary-color);
}

.ghibli-video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.ghibli-video-teams {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ghibli-video-teams span:nth-child(2) {
    color: #999;
    font-size: 12px;
    padding: 0 5px;
}

.ghibli-video-time {
    color: #888;
    font-size: 12px;
}

/* 删除不需要的样式 */
.ghibli-video-image,
.ghibli-video-play,
.ghibli-video-type {
    display: none;
}

/* 侧边栏样式 */
.ghibli-widget {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 25px;
    border-top: 3px solid var(--primary-color);
    border-left: 1px solid rgba(74, 143, 109, 0.1);
    border-right: 1px solid rgba(74, 143, 109, 0.1);
    border-bottom: 1px solid rgba(74, 143, 109, 0.1);
    position: relative;
}

.ghibli-widget-title {
    padding: 15px;
    background: var(--primary-color);
    color: white;
    margin: 0;
    font-size: 18px;
    text-align: center;
    background-image: linear-gradient(to right, var(--primary-color), #5ba67e);
    position: relative;
}

.ghibli-widget-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 8px 8px;
}

.ghibli-hot-leagues {
    padding: 15px;
    display: grid;
    gap: 10px;
    position: relative;
}

.ghibli-league-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--border-radius);
    background: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ghibli-league-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.ghibli-league-item:hover::before {
    width: 100%;
}

.ghibli-league-item:hover {
    color: var(--primary-color);
    font-weight: 500;
}

.ghibli-hot-tags {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ghibli-tag {
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.ghibli-tag:hover {
    background: var(--primary-color);
    color: white;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .ghibli-content {
        grid-template-columns: 1fr;
    }
    
    .ghibli-video-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ghibli-news-item {
        grid-template-columns: 1fr;
    }
    
    .ghibli-news-image {
        height: 200px;
    }
    
    .ghibli-match-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ghibli-match-teams {
        flex-direction: column;
        gap: 10px;
    }
    
    .ghibli-team.home,
    .ghibli-team.away {
        justify-content: center;
    }
}

/* 补充动画效果 */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.ghibli-container::after {
    content: '🌱';
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 24px;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

/* 使用CSS动画和形状替代图片 */
@keyframes clouds {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.ghibli-match-group::before {
    content: '⛅';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    opacity: 0.3;
    z-index: 1;
}

.ghibli-video-list::after {
    content: '🎬';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    opacity: 0.3;
    z-index: 1;
}

.ghibli-news-list::before {
    content: '📰';
    position: absolute;
    top: -30px;
    right: 15px;
    font-size: 22px;
    opacity: 0.3;
    z-index: 1;
}

/* 增强叶子装饰效果 */
.ghibli-leaf {
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    opacity: 0.15;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    transition: all 0.5s ease;
    animation: leaf-float 8s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes leaf-float {
    0% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(50deg) translateY(-10px); }
    100% { transform: rotate(45deg) translateY(0); }
}

.ghibli-leaf:nth-child(2n) {
    animation-duration: 9s;
    animation-delay: 1s;
}

.ghibli-leaf:nth-child(3n) {
    animation-duration: 10s;
    animation-delay: 2s;
}

.ghibli-leaf:nth-child(4n) {
    animation-duration: 11s;
    animation-delay: 3s;
}

/* 页脚样式 */
.ghibli-footer {
    background-color: #d4f5de;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid rgba(74, 143, 109, 0.2);
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.ghibli-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.7;
}

.ghibli-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.ghibli-footer-links h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.ghibli-footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.ghibli-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghibli-footer-links li {
    margin-bottom: 8px;
}

.ghibli-footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding-left: 12px;
}

.ghibli-footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.6;
}

.ghibli-footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.ghibli-footer-bottom {
    border-top: 1px solid rgba(74, 143, 109, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
    position: relative;
}

.update-time {
    color: #888;
    font-size: 13px;
    margin-left: 10px;
}

.ghibli-footer-decoration {
    position: absolute;
    bottom: 10px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.ghibli-footer-leaf {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    display: inline-block;
    animation: leaf-float 8s ease-in-out infinite;
}

.ghibli-footer-leaf:nth-child(2) {
    animation-delay: 1s;
    width: 15px;
    height: 15px;
}

.ghibli-footer-leaf:nth-child(3) {
    animation-delay: 2s;
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .ghibli-footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ghibli-footer-links {
        margin-bottom: 15px;
    }
    
    .ghibli-footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .update-time {
        display: block;
        margin: 5px 0 0;
    }
}

/* 赛程行式布局 */
.ghibli-match-row {
    display: grid;
    grid-template-columns: 60px 80px 1fr 80px;
    align-items: center;
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 8px;
    padding: 12px 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.ghibli-match-row:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.ghibli-match-time {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.ghibli-match-league {
    font-size: 14px;
    color: #666;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.ghibli-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ghibli-team-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.ghibli-team-box.home {
    text-align: right;
    align-items: flex-end;
}

.ghibli-team-box.away {
    text-align: left;
    align-items: flex-start;
}

.team-logo {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.team-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.team-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ghibli-match-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
}

.vs-text {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
}

.score-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-color);
}

.score-home, .score-away {
    font-size: 18px;
}

.score-divider {
    margin: 0 3px;
    color: #999;
}

.ghibli-match-btn {
    text-align: center;
}

.ghibli-btn.match-btn {
    padding: 6px 12px;
    font-size: 13px;
    background-color: #6fc07b;
    min-width: 65px;
    border-radius: 4px;
}

.ghibli-btn.match-btn.live {
    background-color: var(--accent-color);
}

/* 日期导航样式优化 */
.ghibli-date-tabs {
    margin-bottom: 15px;
    border-radius: 8px;
    background: white;
    padding: 10px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.ghibli-date-tab {
    flex: 0 0 auto;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    background: transparent;
    transition: all 0.2s ease;
}

.ghibli-date-tab.active {
    background: var(--primary-color);
    color: white;
}

/* 响应式布局优化 */
@media (max-width: 768px) {
    .ghibli-match-row {
        grid-template-columns: 45px 70px 1fr 70px;
        padding: 10px;
    }
    
    .ghibli-match-time {
        font-size: 14px;
    }
    
    .ghibli-match-league {
        font-size: 12px;
    }
    
    .team-logo {
        width: 30px;
        height: 30px;
    }
    
    .team-name {
        font-size: 12px;
        max-width: 75px;
    }
    
    .ghibli-btn.match-btn {
        padding: 5px 10px;
        font-size: 12px;
        min-width: 55px;
    }
}

@media (max-width: 480px) {
    .ghibli-match-row {
        grid-template-columns: 45px 60px 1fr 60px;
        gap: 5px;
        padding: 8px;
    }
    
    .ghibli-match-league {
        font-size: 11px;
    }
    
    .team-logo {
        width: 25px;
        height: 25px;
    }
    
    .team-name {
        font-size: 11px;
        max-width: 60px;
    }
    
    .vs-text {
        font-size: 14px;
    }
    
    .score-home, .score-away {
        font-size: 16px;
    }
    
    .ghibli-btn.match-btn {
        padding: 4px 8px;
        font-size: 11px;
        min-width: 50px;
    }
}

/* 根据截图添加的简化卡片样式 */
.ghibli-match-card-simple {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 12px;
    overflow: hidden;
    position: relative;
}

.ghibli-match-simple-league {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.ghibli-match-simple-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    padding: 5px 0;
}

.ghibli-team-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.team-logo-simple {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 6px;
}

.team-name-simple {
        font-size: 13px;
    color: #333;
    text-align: center;
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ghibli-match-simple-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-simple {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.time-simple {
    font-size: 14px;
    color: #666;
}

.ghibli-btn-simple {
    display: block;
    width: 65px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background-color: #6fc07b;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.live-simple {
    background-color: var(--accent-color);
}

/* 响应式布局调整 */
@media (max-width: 768px) {
    .ghibli-container {
        padding: 15px 10px;
    }
    
    .ghibli-match-simple-league {
        padding-right: 70px;
        font-size: 12px;
    }
    
    .team-logo-simple {
        width: 25px;
        height: 25px;
    }
    
    .team-name-simple {
        font-size: 12px;
        max-width: 70px;
    }
    
    .score-simple {
        font-size: 18px;
    }
    
    .time-simple {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ghibli-container {
        padding: 10px 8px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .ghibli-btn-simple {
        width: 60px;
        height: 24px;
        line-height: 24px;
        font-size: 12px;
    }
    
    .ghibli-match-simple-league {
        font-size: 11px;
    }
    
    .team-logo-simple {
        width: 22px;
        height: 22px;
        margin-bottom: 4px;
    }
    
    .team-name-simple {
        font-size: 11px;
        max-width: 60px;
    }
    
    .score-simple {
        font-size: 16px;
    }
}

/* 面包屑导航样式 */
.ghibli-breadcrumb {
    margin-bottom: 20px;
    color: #777;
        font-size: 14px;
    display: flex;
    align-items: center;
}

.ghibli-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.ghibli-breadcrumb a:hover {
    color: var(--accent-color);
}

.ghibli-breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

/* 页面标题样式 */
.ghibli-page-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.ghibli-page-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.ghibli-page-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.ghibli-page-subtitle {
    color: #777;
    font-size: 16px;
}

/* 文章列表页样式 */
.ghibli-content {
    margin-top: 20px;
}

.ghibli-articles {
    position: relative;
}

.ghibli-article-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: var(--transition);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ghibli-article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.ghibli-article-image {
    height: 160px;
    overflow: hidden;
}

.ghibli-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ghibli-article-item:hover .ghibli-article-image img {
    transform: scale(1.05);
}

.ghibli-article-content {
    padding: 15px 15px 15px 0;
    display: flex;
    flex-direction: column;
}

.ghibli-article-title {
    margin: 0 0 10px;
    font-size: 18px;
}

.ghibli-article-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.ghibli-article-title a:hover {
    color: var(--primary-color);
}

.ghibli-article-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.ghibli-article-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 分页样式 */
.ghibli-pagination {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.ghibli-pagination a,
.ghibli-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ghibli-pagination a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.ghibli-pagination span.current {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(74, 143, 109, 0.3);
    font-weight: bold;
}

.ghibli-pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.ghibli-pagination .prev,
.ghibli-pagination .next {
    font-weight: bold;
}

/* 响应式分页 */
@media (max-width: 576px) {
    .ghibli-pagination {
        gap: 3px;
    }
    
    .ghibli-pagination a,
    .ghibli-pagination span {
        min-width: 30px;
        height: 30px;
        font-size: 13px;
        padding: 0 8px;
    }
    
    .ghibli-pagination .page-numbers:not(.prev):not(.next):not(.current) {
        display: none;
    }
    
    .ghibli-pagination .current,
    .ghibli-pagination .prev,
    .ghibli-pagination .next,
    .ghibli-pagination .dots {
        display: inline-flex;
    }
}

/* 文章排名列表 */
.ghibli-news-ranking {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghibli-news-ranking-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.ghibli-news-ranking-item:last-child {
    border-bottom: none;
}

.ghibli-news-ranking-item a {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    padding: 5px;
    border-radius: 4px;
}

.ghibli-news-ranking-item a:hover {
    background-color: rgba(255,255,255,0.6);
    color: var(--primary-color);
}

.ghibli-news-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #eee;
    color: #666;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.ghibli-news-ranking-item:nth-child(1) .ghibli-news-rank,
.ghibli-news-ranking-item:nth-child(2) .ghibli-news-rank,
.ghibli-news-ranking-item:nth-child(3) .ghibli-news-rank {
    background-color: var(--primary-color);
    color: white;
}

.ghibli-news-title {
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 侧边栏视频项目 */
.ghibli-sidebar-videos {
    padding: 5px 0;
}

.ghibli-sidebar-video-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.ghibli-sidebar-video-item:last-child {
    border-bottom: none;
}

.ghibli-sidebar-video-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    padding: 5px;
    border-radius: 4px;
}

.ghibli-sidebar-video-link:hover {
    background-color: rgba(255,255,255,0.6);
}

.ghibli-sidebar-video-title {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ghibli-sidebar-video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
}

.ghibli-sidebar-video-icon {
    color: var(--accent-color);
}

/* 文章详情页样式 */
.ghibli-article-detail {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.ghibli-article-detail-title {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.ghibli-article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.ghibli-article-detail-image {
    margin: 0 -30px 20px;
    max-height: 400px;
    overflow: hidden;
}

.ghibli-article-detail-image img {
    width: 100%;
    object-fit: cover;
}

.ghibli-article-detail-content {
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-size: 16px;
}

.ghibli-article-detail-content p {
    margin-bottom: 15px;
}

.ghibli-article-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 4px;
}

.ghibli-article-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    align-items: center;
}

.ghibli-article-detail-tags-title {
    color: #666;
    font-size: 14px;
}

.ghibli-article-detail-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.ghibli-article-detail-tag:hover {
    background-color: var(--primary-color);
    color: white;
}

.ghibli-article-detail-related {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.ghibli-article-detail-related-title {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.ghibli-article-detail-related-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ghibli-article-detail-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.ghibli-article-detail-related-item {
    position: relative;
    padding-left: 15px;
    line-height: 1.6;
}

.ghibli-article-detail-related-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.ghibli-article-detail-related-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ghibli-article-detail-related-item a:hover {
    color: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .ghibli-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ghibli-article-detail-related-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ghibli-article-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .ghibli-article-image {
        height: 200px;
    }
    
    .ghibli-article-content {
        padding: 15px;
    }
    
    .ghibli-page-title {
        font-size: 22px;
    }
    
    .ghibli-article-detail {
        padding: 20px 15px;
    }
    
    .ghibli-article-detail-title {
        font-size: 20px;
    }
    
    .ghibli-article-detail-image {
        margin: 0 -15px 15px;
    }
}

/* 直播列表页样式 */
.ghibli-match-filter {
    margin-bottom: 20px;
}

.ghibli-live-matches {
    margin: 0 auto;
}

.ghibli-match-date-group {
    display: none;
}

.ghibli-match-date-group.active {
    display: block;
}

.ghibli-match-date {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        text-align: center;
    position: relative;
}

.ghibli-match-date::before,
.ghibli-match-date::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
    opacity: 0.3;
}

.ghibli-match-date::before {
    left: 20%;
}

.ghibli-match-date::after {
    right: 20%;
}

.ghibli-live-match-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    padding: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ghibli-live-match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.ghibli-live-match-league {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.ghibli-live-match-league a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.ghibli-live-match-league a:hover {
    color: var(--accent-color);
}

.ghibli-live-match-time {
    color: #666;
    font-size: 14px;
}

.ghibli-live-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.ghibli-live-team {
    display: flex;
        flex-direction: column;
    align-items: center;
    width: 30%;
    max-width: 120px;
}

.ghibli-live-team-logo {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
    object-fit: contain;
}

.ghibli-live-team-name {
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ghibli-live-match-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ghibli-live-vs {
    font-size: 20px;
    font-weight: bold;
    color: #999;
}

.ghibli-live-score {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
}

.ghibli-match-status-tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
    text-align: center;
    min-width: 60px;
}

.ghibli-match-status-tag.upcoming {
    background-color: #8fbc8f;
}

.ghibli-match-status-tag.live {
    background-color: #f44336;
    animation: pulse-animation 1.5s infinite;
}

.ghibli-match-status-tag.replay {
    background-color: #7a8c9b;
}

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

.ghibli-live-match-action {
    text-align: center;
}

.ghibli-live-match-action .ghibli-btn {
    min-width: 100px;
}

.ghibli-live-match-action .ghibli-btn.live {
    background-color: var(--accent-color);
}

.ghibli-live-match-action .ghibli-btn.replay {
    background-color: #7a8c9b;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .ghibli-live-match-teams {
        flex-direction: column;
        gap: 15px;
    }
    
    .ghibli-live-team {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .ghibli-live-team-logo {
        margin-bottom: 0;
    }
    
    .ghibli-live-team-name {
        font-size: 15px;
        white-space: normal;
        text-align: left;
    }
    
    .ghibli-live-match-status {
        order: -1;
        margin-bottom: 10px;
    }
    
    .ghibli-match-date::before,
    .ghibli-match-date::after {
        width: 20px;
    }
    
    .ghibli-match-date::before {
        left: 10%;
    }
    
    .ghibli-match-date::after {
        right: 10%;
    }
}

@media (max-width: 480px) {
    .ghibli-match-date {
        font-size: 14px;
    }
    
    .ghibli-live-match-league {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .ghibli-live-match-time {
        font-size: 12px;
    }
    
    .ghibli-live-team {
        gap: 5px;
    }
    
    .ghibli-live-team-logo {
        width: 35px;
        height: 35px;
    }
    
    .ghibli-live-team-name {
        font-size: 14px;
    }
    
    .ghibli-live-score {
        font-size: 20px;
    }
    
    .ghibli-live-match-action .ghibli-btn {
        min-width: 80px;
        font-size: 13px;
    }
}

/* 轮播图幻灯片样式 */
.ghibli-banner {
    margin-bottom: 30px;
    position: relative;
}

.ghibli-slider {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.ghibli-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 360px;
}

.ghibli-slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
}

.ghibli-slide-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
}

.ghibli-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ghibli-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ghibli-slide:hover .ghibli-slide-image img {
    transform: scale(1.05);
}

.ghibli-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: #fff;
}

.ghibli-slide-title {
    font-size: 22px;
    margin: 0 0 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ghibli-slide-desc {
    font-size: 14px;
    opacity: 0.9;
    max-height: 42px;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ghibli-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ghibli-slider:hover .ghibli-slider-nav {
    opacity: 1;
}

.ghibli-slider-prev,
.ghibli-slider-next {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.ghibli-slider-prev:hover,
.ghibli-slider-next:hover {
    background-color: white;
    transform: scale(1.1);
    color: var(--accent-color);
}

.ghibli-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.ghibli-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ghibli-slider-dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.ghibli-slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* 轮播图响应式样式 */
@media (max-width: 992px) {
    .ghibli-slides {
        height: 300px;
    }
    
    .ghibli-slide-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .ghibli-slides {
        height: 240px;
    }
    
    .ghibli-slide-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .ghibli-slide-desc {
    font-size: 13px;
        max-height: 36px;
    }
    
    .ghibli-slider-nav {
        padding: 0 10px;
    }
    
    .ghibli-slider-prev,
    .ghibli-slider-next {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ghibli-slides {
        height: 200px;
    }
    
    .ghibli-slide-caption {
        padding: 15px;
    }
    
    .ghibli-slide-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .ghibli-slide-desc {
        font-size: 12px;
        max-height: 32px;
    }
    
    .ghibli-slider-prev,
    .ghibli-slider-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .ghibli-slider-dots {
        bottom: 10px;
        gap: 6px;
    }
    
    .ghibli-slider-dot {
        width: 8px;
        height: 8px;
    }
} 

/* 空比赛提示样式 */
.ghibli-empty-notice {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 20px 0;
    box-shadow: var(--shadow);
    border: 1px dashed rgba(74, 143, 109, 0.3);
}

.ghibli-empty-icon {
    font-size: 48px;
        margin-bottom: 15px;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.ghibli-empty-text {
    font-size: 16px;
    color: #666;
}

/* 赛事分类导航Grid样式 */
.ghibli-leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin: 15px 0 25px;
}

.ghibli-league-grid-item {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    padding: 15px 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
        display: flex;
        flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ghibli-league-grid-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.ghibli-league-grid-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.ghibli-league-grid-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ghibli-league-grid-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.ghibli-league-grid-name {
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .ghibli-leagues-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .ghibli-league-grid-item {
        padding: 10px 8px;
    }
    
    .ghibli-league-grid-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
    }
    
    .ghibli-league-grid-icon i {
        font-size: 24px;
    }
    
    .ghibli-league-grid-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ghibli-leagues-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 8px;
    }
}

/* 赛事介绍样式 */
.ghibli-introduce {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.ghibli-introduce-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ghibli-introduce-header img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    object-fit: contain;
}

.ghibli-introduce-header h1 {
    margin: 0;
    font-size: 24px;
    color: var(--primary-color);
}

.ghibli-introduce-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.ghibli-introduce-desc p {
    margin: 0 0 10px;
}

/* 赛事列表样式 (基于index_live_base.html.twig) */
.ghibli-live-container {
    margin-bottom: 30px;
}

.ghibli-schedule-box {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.ghibli-schedule-head {
    margin-bottom: 15px;
    position: relative;
}

.ghibli-schedule-date {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    border-radius: 20px;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(74, 143, 109, 0.2);
}

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

.ghibli-schedule-item {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 15px;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ghibli-schedule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.ghibli-schedule-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ghibli-schedule-item-time {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}

.ghibli-schedule-item-league {
    font-size: 14px;
    color: #666;
}

.ghibli-schedule-item-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ghibli-teams {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.ghibli-team {
    display: flex;
    align-items: center;
    flex: 1;
}

.ghibli-team.home {
    justify-content: flex-end;
    text-align: right;
}

.ghibli-team.away {
    justify-content: flex-start;
    text-align: left;
}

.ghibli-team a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.ghibli-team a:hover {
    color: var(--primary-color);
}

.ghibli-team.home a {
    flex-direction: row;
}

.ghibli-team.away a {
    flex-direction: row-reverse;
}

.ghibli-team img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.ghibli-team.home img {
    margin-left: 10px;
}

.ghibli-team.away img {
    margin-right: 10px;
}

.ghibli-team span {
    font-size: 15px;
    font-weight: 500;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ghibli-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #888;
    font-size: 16px;
    width: 40px;
}

.ghibli-score {
    display: flex;
    gap: 8px;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}

.ghibli-schedule-item-watch {
    display: flex;
    justify-content: flex-end;
}

.ghibli-schedule-item-watch-play {
    display: flex;
    align-items: center;
}

.ghibli-schedule-item-watch-play.start a {
    background-color: var(--accent-color);
}

.ghibli-schedule-item-watch-play.end a {
    background-color: #7a8c9b;
}

/* 已完赛比赛样式 */
.ghibli-finished-matches {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.ghibli-finished-list {
    display: flex;
    flex-direction: column;
}

.ghibli-finished-item {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.ghibli-finished-item:last-child {
    border-bottom: none;
}

.ghibli-finished-item:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
}

.ghibli-finished-item time {
    flex: 0 0 130px;
    font-size: 14px;
    color: #888;
}

.ghibli-finished-score {
    flex: 0 0 80px;
    font-weight: bold;
    color: var(--primary-color);
}

.ghibli-finished-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .ghibli-schedule-item {
        grid-template-columns: 1fr 2fr 1fr;
    }
    
    .ghibli-team span {
        max-width: 90px;
    }
}

@media (max-width: 768px) {
    .ghibli-schedule-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ghibli-schedule-info {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .ghibli-teams {
        flex-direction: column;
        gap: 10px;
    }
    
    .ghibli-team, .ghibli-team.home, .ghibli-team.away {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .ghibli-team a, .ghibli-team.home a, .ghibli-team.away a {
        justify-content: center;
    }
    
    .ghibli-team img, .ghibli-team.home img, .ghibli-team.away img {
        margin: 0 5px;
    }
    
    .ghibli-schedule-item-watch {
        justify-content: center;
    }
    
    .ghibli-finished-item {
        flex-wrap: wrap;
    }
    
    .ghibli-finished-item time {
        flex: 0 0 100%;
        margin-bottom: 5px;
    }
    
    .ghibli-finished-score {
        flex: 0 0 60px;
    }
}

@media (max-width: 480px) {
    .ghibli-introduce-header {
        flex-direction: column;
        text-align: center;
    }
    
    .ghibli-introduce-header img {
        margin: 0 0 10px;
    }
    
    .ghibli-schedule-date {
        text-align: center;
    }
    
    .ghibli-team span {
        font-size: 14px;
    }
}

/* 录像栏目页样式 */
.ghibli-video-archive {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ghibli-video-archive-item {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.ghibli-video-archive-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
}

.ghibli-video-archive-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ghibli-video-archive-title {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.4;
}

.ghibli-video-archive-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.ghibli-video-archive-title a:hover {
    color: var(--accent-color);
}

.ghibli-video-archive-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.ghibli-video-archive-teams {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.ghibli-video-team.home {
    color: #d32f2f;
}

.ghibli-video-team.away {
    color: #1976d2;
}

.ghibli-video-vs {
    color: #888;
    margin: 0 3px;
}

.ghibli-video-archive-match {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.ghibli-btn-video {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.ghibli-btn-video:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.ghibli-btn-video i {
    font-size: 16px;
}

.ghibli-video-ranking {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ghibli-video-ranking-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.ghibli-video-ranking-item:last-child {
    border-bottom: none;
}

.ghibli-video-ranking-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.ghibli-video-ranking-item a:hover {
    color: var(--primary-color);
}

.ghibli-video-rank {
    width: 24px;
    height: 24px;
    background-color: #f0f0f0;
    color: #888;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}

.ghibli-video-ranking-item:nth-child(1) .ghibli-video-rank,
.ghibli-video-ranking-item:nth-child(2) .ghibli-video-rank,
.ghibli-video-ranking-item:nth-child(3) .ghibli-video-rank {
    background-color: var(--primary-color);
    color: white;
}

.ghibli-video-title {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ghibli-sidebar-news {
    display: flex;
    flex-direction: column;
}

.ghibli-sidebar-news-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.ghibli-sidebar-news-item:last-child {
    border-bottom: none;
}

.ghibli-sidebar-news-link {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.ghibli-sidebar-news-link:hover {
    color: var(--primary-color);
}

.ghibli-sidebar-news-title {
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ghibli-sidebar-news-meta {
    font-size: 12px;
    color: #888;
}

@media (max-width: 768px) {
    .ghibli-video-archive-item {
    padding: 15px;
    }
    
    .ghibli-video-archive-title {
        font-size: 18px;
    }
    
    .ghibli-video-archive-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .ghibli-btn-video {
        width: 100%;
        justify-content: center;
    }
}

/* 直播详情页样式 */
.ghibli-live-content {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.ghibli-live-main {
    flex: 1;
    min-width: 0;
}

.ghibli-live-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* 比赛信息卡片 */
.ghibli-match-info-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.ghibli-match-status-bar {
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ghibli-match-league {
    display: flex;
    align-items: center;
}

.ghibli-match-league img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    object-fit: contain;
}

.ghibli-match-league-name {
    font-size: 16px;
    font-weight: 500;
}

.ghibli-match-status {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.ghibli-match-status.live {
    background-color: #f44336;
    animation: pulse-animation 1.5s infinite;
}

.ghibli-match-status.finished {
    background-color: #4caf50;
}

.ghibli-match-status.upcoming {
    background-color: #ff9800;
}

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

.ghibli-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    padding-top: 50px !important;
    background-image: #fff;
}

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

.ghibli-match-team-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: contain;
}

.ghibli-match-team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-text);
}

.ghibli-match-team-score {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.ghibli-match-vs {
    font-size: 20px;
    font-weight: 700;
    color: #888;
    position: relative;
}

.ghibli-match-vs:before,
.ghibli-match-vs:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 25px;
    background-color: rgba(0, 0, 0, 0.1);
    top: 50%;
}

.ghibli-match-vs:before {
    right: 30px;
}

.ghibli-match-vs:after {
    left: 30px;
}

.ghibli-match-time {
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(240, 245, 240, 0.5);
}

.ghibli-match-time-value {
    font-size: 15px;
    color: #666;
}

/* 播放器区域 */
.ghibli-player-section {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.ghibli-player-tabs {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(240, 245, 240, 0.5);
}

.ghibli-player-tab {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.ghibli-player-tab:hover {
    color: var(--primary-color);
}

.ghibli-player-tab.active {
    color: var(--primary-color);
}

.ghibli-player-tab.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.ghibli-player-container {
    background-color: #000;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.ghibli-player-options {
    display: flex;
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(240, 245, 240, 0.5);
}

.ghibli-player-option {
    margin-right: 15px;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.ghibli-player-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.ghibli-player-option.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* 比赛描述 */
.ghibli-match-description,
.ghibli-team-info {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.ghibli-section-title {
    margin: 0;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(240, 245, 240, 0.5);
}

.ghibli-match-description-content {
    padding: 20px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.ghibli-match-description-content p {
    margin: 0 0 15px;
}

.ghibli-match-description-content p:last-child {
    margin-bottom: 0;
}

/* 球队信息 */
.ghibli-team-info-tabs {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(240, 245, 240, 0.5);
}

.ghibli-team-info-tab {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.ghibli-team-info-tab:hover {
    color: var(--primary-color);
}

.ghibli-team-info-tab.active {
    color: var(--primary-color);
}

.ghibli-team-info-tab.active:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.ghibli-team-info-content {
    padding: 20px;
}

.ghibli-team-stats {
        display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ghibli-team-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 15px 10px;
    background-color: rgba(240, 245, 240, 0.5);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ghibli-team-stat-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.ghibli-team-stat-label {
    font-size: 13px;
    color: #666;
}

/* 侧边栏 */
.ghibli-sidebar-widget {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.ghibli-sidebar-widget-title {
    margin: 0;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(240, 245, 240, 0.5);
}

.ghibli-sidebar-widget-content {
    padding: 15px;
}

.ghibli-popular-match-item {
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.ghibli-popular-match-item:last-child {
    margin-bottom: 0;
}

.ghibli-popular-match-item:hover {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.ghibli-popular-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ghibli-popular-match-team {
    display: flex;
    align-items: center;
    max-width: 40%;
}

.ghibli-popular-match-team.home {
    flex-direction: row;
    text-align: right;
    justify-content: flex-end;
}

.ghibli-popular-match-team.away {
    flex-direction: row-reverse;
    text-align: left;
    justify-content: flex-end;
}

.ghibli-popular-match-team span {
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ghibli-popular-match-team.home span {
    margin-right: 8px;
}

.ghibli-popular-match-team.away span {
    margin-left: 8px;
}

.ghibli-popular-match-team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.ghibli-popular-match-score {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
}

.ghibli-popular-match-time {
    font-size: 12px;
    color: #888;
    text-align: center;
}

@media (max-width: 992px) {
    .ghibli-live-content {
        flex-direction: column;
    }
    
    .ghibli-live-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ghibli-match-team-logo {
        width: 50px;
        height: 50px;
    }
    
    .ghibli-match-team-name {
        font-size: 16px;
    }
    
    .ghibli-match-team-score {
        font-size: 24px;
    }
    
    .ghibli-team-stats {
        gap: 10px;
    }
    
    .ghibli-team-stat {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .ghibli-match-league-name {
        font-size: 14px;
    }
    
    .ghibli-player-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .ghibli-player-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* 直播信号区域样式 */
.ghibli-match-signals {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.ghibli-match-signals-content {
    padding: 20px;
}

.ghibli-signal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ghibli-signal-item {
    flex-grow: 0;
}

.ghibli-signal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f44336;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 3px 6px rgba(244, 67, 54, 0.2);
}

.ghibli-signal-link:hover {
    background-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(244, 67, 54, 0.3);
    color: white;
}

.ghibli-signal-link i {
    font-size: 18px;
}

.ghibli-match-tips {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    border-left: 4px solid #ff9800;
}

.ghibli-match-tips p {
    margin: 0 0 10px;
}

.ghibli-match-tips p:last-child {
    margin-bottom: 0;
}

.ghibli-match-tips strong {
    color: #f57c00;
    font-weight: 600;
}

@media (max-width: 768px) {
    .ghibli-signal-list {
        gap: 10px;
    }
    
    .ghibli-signal-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .ghibli-signal-link i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ghibli-signal-list {
    flex-direction: column;
}

    .ghibli-signal-item {
        width: 100%;
    }
    
    .ghibli-signal-link {
        justify-content: center;
    }
    
    /* 小屏幕下比赛信息保持横向布局 */
    .ghibli-match-teams {
        flex-direction: row;
        padding: 20px 15px;
        padding-top: 30px !important;
    }
    
    .ghibli-match-team {
        width: 42%;
    }
    
    .ghibli-match-team-logo {
        width: 45px;
        height: 45px;
    margin-bottom: 10px;
}

    .ghibli-match-team-name {
    font-size: 14px;
        margin-bottom: 5px;
    }
    
    .ghibli-match-vs {
        font-size: 16px;
    }
    
    .ghibli-match-vs:before,
    .ghibli-match-vs:after {
        width: 15px;
    }
    
    .ghibli-match-vs:before {
        right: 20px;
    }
    
    .ghibli-match-vs:after {
        left: 20px;
    }
}

/* 录像详情页样式 */
.ghibli-video-detail {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
    padding: 25px;
}

.ghibli-video-detail-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-text);
    margin: 0 0 15px;
    line-height: 1.4;
    text-align: center;
}

.ghibli-video-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.ghibli-video-detail-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ghibli-video-detail-meta i {
    font-size: 16px;
    color: var(--primary-color);
}

/* 录像播放源样式 */
.ghibli-video-sources {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.ghibli-video-sources-content {
    padding: 20px;
}

.ghibli-video-source-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ghibli-video-source-item {
    flex-grow: 0;
}

.ghibli-video-source-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.ghibli-video-source-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: white;
}

.ghibli-video-source-link i {
    font-size: 18px;
}

/* 相关录像样式 */
.ghibli-related-videos {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.ghibli-related-videos-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.ghibli-related-video-item {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ghibli-related-video-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.ghibli-related-video-link {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: var(--text-color);
}

.ghibli-related-video-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--primary-text);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ghibli-related-video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
}

@media (max-width: 992px) {
    .ghibli-related-videos-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ghibli-video-detail {
        padding: 20px 15px;
    }
    
    .ghibli-video-detail-title {
        font-size: 20px;
    }
    
    .ghibli-video-detail-meta {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .ghibli-video-source-list {
        flex-direction: column;
    }
    
    .ghibli-video-source-item {
        width: 100%;
    }
    
    .ghibli-video-source-link {
        justify-content: center;
    }
    
    .ghibli-related-videos-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}