
/* ===== 全局样式 (保留原风格，只微调原创卡片 + 排行榜多行省略) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", "PingFang SC", sans-serif;
}
body {
    background: linear-gradient(120deg, #0a0a16, #1a1a38);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
}
ul, li {
    list-style: none;
}
.container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}
.btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(90deg, #ff4e50, #f9d423);
    border-radius: 30px;
    color: #000;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,78,80,0.6);
}

/* 导航栏 (保留原样) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(to bottom, rgba(10,10,22,0.95), rgba(10,10,22,0));
    transition: all 0.3s ease;
}
header.active {
    background: rgba(10,10,22,0.98);
    box-shadow: 0 2px 20px rgba(255, 0, 255, 0.2);
}
.header-wrap {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    padding: 20px 0;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #4fc3f7, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
}
.logo span {
    font-size: 24px;
    color: #ff9800;
    margin-left: 8px;
}
.nav-list {
    display: flex;
    gap: 35px;
    margin-left: 80px;
}
.nav-list li a {
    font-size: 18px;
    color: #ccc;
    transition: all 0.3s ease;
    position: relative;
}
.nav-list li a:hover {
    color: #fff;
}
.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4fc3f7, #ff6b6b);
    transition: width 0.3s ease;
}
.nav-list li a:hover::after {
    width: 100%;
}

/* 全屏轮播Banner (保留原有样式) */
.banner {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: -90px;
}
.banner-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.banner-slide.active {
    opacity: 1;
}
.banner-slide:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url(static/picture/banner1.jpg) center/cover;
}
.banner-slide:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url(static/picture/banner2.jpg) center/cover;
}
.banner-slide:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url(static/picture/banner3.jpg) center/cover;
}
.banner-text {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
}
.banner-text h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.banner-text p {
    font-size: 18px;
    color: #eee;
    margin-bottom: 30px;
    max-width: 600px;
}
.banner-dot {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}
.banner-dot li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}
.banner-dot li.active {
    background: #ff6b6b;
    transform: scale(1.2);
}

/* 悬浮广告位 (保留) */
.float-ad {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 120px;
    background: linear-gradient(180deg, #2d1b69, #4a2f9b);
    border-radius: 10px;
    padding: 15px 10px;
    box-shadow: 0 0 30px rgba(131, 56, 236, 0.5);
    z-index: 998;
    text-align: center;
}
.float-ad .anime-img {
    width: 100%;
    height: 80px;
    background: #333;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
}
.float-ad p {
    font-size: 14px;
    color: #f9d423;
    font-weight: bold;
    margin-bottom: 10px;
}
.float-ad .ad-btn {
    font-size: 12px;
    padding: 5px 10px;
    background: #ff6b6b;
    border-radius: 20px;
}

/* 会员特惠悬浮窗 (保留) */
.vip-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(255, 152, 0, 0.6);
    z-index: 998;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.vip-float:hover {
    transform: scale(1.1);
}
.vip-float i {
    font-size: 30px;
    color: #fff;
    margin-bottom: 5px;
}
.vip-float span {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

/* 搜索栏 (保留, 下拉提示已由JS控制) */
.search-bar {
    position: relative;
    z-index: 10;
    background: rgba(10,10,22,0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 90px;
}
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.search-input-wrapper {
    flex: 1;
    max-width: 600px;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 16px 25px;
    border-radius: 50px;
    border: none;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 18px;
    outline: none;
    transition: all 0.3s ease;
    padding-right: 60px;
}
.search-input:focus {
    border-color: #4fc3f7;
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 20px rgba(79,195,247,0.4);
}
.search-input::placeholder {
    color: #aaa;
    font-size: 18px;
}
.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #4fc3f7, #ff6b6b);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #000;
    font-size: 20px;
    font-weight: bold;
}
.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(79,195,247,0.6);
}
.search-hot {
    display: flex;
    gap: 15px;
    color: #ccc;
    font-size: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.search-hot span {
    color: #4fc3f7;
    font-weight: bold;
}
.search-hot a {
    color: #aaa;
    transition: all 0.2s;
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    border: 1px solid transparent;
    cursor: pointer;
}
.search-hot a:hover {
    color: #4fc3f7;
    background: rgba(79,195,247,0.1);
    border-color: #4fc3f7;
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20,20,40,0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-top: 5px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}
.search-suggestions.active {
    display: block;
}
.suggestion-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.suggestion-item:last-child {
    border-bottom: none;
}
.suggestion-item:hover {
    background: rgba(79,195,247,0.1);
}
.suggestion-poster {
    width: 40px;
    height: 53px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}
.suggestion-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.suggestion-info {
    flex: 1;
}
.suggestion-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 3px;
}
.suggestion-category {
    font-size: 12px;
    color: #4fc3f7;
}
.suggestion-score {
    font-size: 12px;
    color: #ffd700;
}

/* 首页板块样式 (保留) */
.section-block {
    padding: 40px 0 20px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.section-header h2 {
    font-size: 24px;
    background: linear-gradient(90deg, #4fc3f7, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: bold;
}
.section-more {
    font-size: 14px;
    color: #aaa;
    transition: color 0.2s;
}
.section-more:hover {
    color: #4fc3f7;
}

/* 完整分类样式 (保留) */
.full-category {
    background: rgba(255,255,255,0.03);
    width: 100%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 20px;
}
.full-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}
.full-category-item {
    color: #ccc;
    transition: color 0.2s;
    font-size: 18px;
}
.full-category-item:hover {
    color: #4fc3f7;
}

/* 特色作品展示框 (保留) */
.featured-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-top: 30px;
    height: 380px;
    width: 100%;
    overflow: hidden;
}
.featured-left {
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}
.featured-left a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.featured-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}
.featured-left img:hover {
    transform: scale(1.05);
}
.featured-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 0;
    overflow: hidden;
}
.featured-top, .featured-bottom {
    flex: 1;
    display: grid;
    gap: 15px;
    min-height: 0;
    overflow: hidden;
}
.featured-top {
    grid-template-columns: repeat(2, 1fr);
}
.featured-bottom {
    grid-template-columns: repeat(3, 1fr);
}
.featured-item {
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}
.featured-item a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}
.featured-item img:hover {
    transform: scale(1.05);
}

/* ========= 排行榜样式 (原样保留，仅增强 .ranking-score 多行省略) ========= */
.ranking-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.ranking-column {
    flex: 1;
    min-width: 240px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}
.ranking-column h3 {
    font-size: 18px;
    color: #4fc3f7;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ranking-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.ranking-item:hover {
    background: rgba(79, 195, 247, 0.1);
}
.ranking-num {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: linear-gradient(90deg, #4fc3f7, #ff6b6b);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}
.ranking-poster {
    width: 40px;
    height: 53px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}
.ranking-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ranking-info {
    flex: 1;
    min-width: 0;
}
.ranking-name {
    font-size: 14px;
    color: #fff;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ranking-score {
    font-size: 12px;
    color: #ffd700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    line-height: 1.4;
    max-height: 33px;
}

/* ========= 原创精品专用卡片 (星级、热度、切换按钮) ========= */
.original-grid-special {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}
.original-card {
    width: 100%;
    height: 220px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
}
.original-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(79,195,247,0.2);
    border-color: #4fc3f7;
}
.original-poster {
    width: 130px;
    height: 100%;
    flex-shrink: 0;
    background: #222;
    overflow: hidden;
}
.original-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.original-info {
    flex: 1;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
}
.original-name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}
.star {
    width: 16px;
    height: 16px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background: #ccc;
}
.original-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.original-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.original-tag {
    font-size: 11px;
    background: rgba(79,195,247,0.15);
    color: #4fc3f7;
    padding: 4px 10px;
    border-radius: 30px;
    border: 1px solid rgba(79,195,247,0.3);
}
.original-score {
    font-size: 12px;
    color: #ffaa33;
    font-weight: bold;
    white-space: nowrap;
    background: rgba(0,0,0,0.3);
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255,170,51,0.3);
}
.index-original-control {
    text-align: center;
    margin-top: 25px;
}
.index-original-control a {
    height: 10px;
    width: 10px;
    background-color: #d9d9d9;
    border-radius: 5px;
    display: inline-block;
    margin-left: 8px;
    transition: all 0.2s;
    cursor: pointer;
}
.index-original-control a.active {
    width: 23px;
    background-color: #fd113a;
}

/* 其他动漫卡片网格 (保留，但给 .anime-desc 也加上多行省略) */
.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
}
.anime-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
}
.anime-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(79, 195, 247, 0.2);
    border-color: rgba(79, 195, 247, 0.5);
}
.anime-poster {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #222;
}
.anime-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.anime-card:hover .anime-poster img {
    transform: scale(1.05);
}
.anime-info {
    padding: 10px 8px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.anime-name {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}
.anime-desc {
    font-size: 11px;
    color: #aaa;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 30px;
    margin-bottom: 8px;
    word-break: break-word;
}
.anime-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.anime-tag {
    font-size: 10px;
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 15px;
    color: #ccc;
}
.anime-score {
    font-size: 11px;
    color: #ffd700;
}

/* 最近更新专用样式 (保留框架，细节随内容调整) */
.latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1100px;
}
.day-buttons {
    display: flex;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    padding: 6px 15px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-right: 450px;
}
.day-btn {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #aaa;
    background: transparent;
    border: none;
}
.day-btn:hover {
    color: #fff;
    background: rgba(79,195,247,0.15);
}
.day-btn.active {
    background: linear-gradient(90deg, #4fc3f7, #ff6b6b);
    color: #000;
    font-weight: bold;
}
.latest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 20px;
}
.latest-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.latest-card:hover {
    transform: translateY(-5px);
    border-color: #4fc3f7;
    box-shadow: 0 8px 20px rgba(79,195,247,0.15);
}
.latest-poster {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #222;
    /*max-height: 150px;*/
}
.latest-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-info {
    padding: 8px 8px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.latest-name {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.latest-desc {
    font-size: 11px;
    color: #aaa;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 30px;
}

/* 热门分类新样式 (保留不变) */
.category-wrapper {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    min-height: 616px;
}
.category-carousel {
    width: calc(33.333% - 12px);
    background: rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.08);
}
.carousel-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.triple-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 240px;
    margin-bottom: 15px;
}
.cover-side {
    width: 70px;
    height: 100px;
    opacity: 0.6;
    transform: scale(0.8);
    transition: all 0.3s;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    filter: brightness(0.6);
    border: 2px solid transparent;
}
.cover-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cover-side:hover {
    opacity: 0.9;
    filter: brightness(0.8);
    border-color: #4fc3f7;
}
.cover-center {
    width: 184px;
    height: 264px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid #ff6b6b;
    box-shadow: 0 0 20px #ff6b6b;
    transition: transform 0.2s;
    z-index: 2;
}
.cover-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-info {
    padding: 10px 0;
    flex:1;
    display: flex;
    flex-direction: column;
}
.carousel-info .c-name {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 6px;
}
.carousel-info .c-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.carousel-info .c-tag {
    background: rgba(79,195,247,0.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #4fc3f7;
}
.carousel-info .c-desc {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 12px;
    line-height: 1.4;
    /*max-height: 55px;*/
    overflow: hidden;
}
.carousel-info .c-rating {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 12px;
}
.read-btn {
    align-self: flex-start;
    padding: 6px 22px;
    background: linear-gradient(90deg, #4fc3f7, #ff6b6b);
    border-radius: 40px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.read-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #4fc3f7;
}
.category-grid-right {
    width: calc(66.666% - 12px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-content: start;
}
.right-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.2s;
}
.right-card:hover {
    transform: translateY(-4px);
    border-color: #4fc3f7;
}
.right-poster {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
}
.right-poster img {
    width: 100%;
    object-fit: cover;
}
.right-info {
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.right-name {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}
.right-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.right-tag {
    font-size: 10px;
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 10px;
    color: #ccc;
}
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    justify-content: center;
}
.category-tab {
    padding: 6px 22px;
    background: rgba(255,255,255,0.05);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    font-size: 15px;
}
.category-tab:hover, .category-tab.active {
    background: rgba(79, 195, 247, 0.15);
    border-color: #4fc3f7;
    color: #4fc3f7;
}
.category-grid {
    display: none;
}
.category-grid.active {
    display: block;
}
footer {
    background: #050510;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
}
.footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-company {
    font-size: 25px;
    font-weight: bold;
    background: linear-gradient(90deg, #4fc3f7, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}
.footer-contact {
    font-size: 14px;
    color: #ccc;
    line-height: 2;
    margin-bottom: 30px;
}
.footer-icp {
    font-size: 12px;
    color: #666;
}
