
.title {
    text-align: center;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(255,255,255,0.5);
    font-family: 'Poppins', sans-serif;
}

.anime-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 1200px;
    padding-top: 0px !important;
}

.anime-card {
    width: 580px;
    background: #000;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    display: flex;
    gap: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.anime-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.thumbnail {
    width: 260px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.anime-card:hover .thumbnail img {
    transform: scale(1.1);
}

.info {
    color: white;
    flex: 1;
}

.anime-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #f5f5f5;
}

.meta-item i {
    color: #7c4dff;
}

.description {
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: bold;
}

.stat-label {
    font-size: 0.8rem;
    color: #ececec;
}

/* 悬浮装饰效果 */
.anime-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%
    );
    transition: 0.5s;
}

.anime-card:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .anime-card {
        flex-direction: column;
    }

    .thumbnail {
        width: 100%;
        height: 200px;
    }
}
