.c2-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 14px;
    color: #666;
}
.c2-breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.c2-breadcrumb a:hover {
    color: #e50914;
}
.c2-breadcrumb span {
    color: #999;
}

.c2-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    margin-bottom: 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}
.c2-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    filter: blur(30px) brightness(0.6) saturate(1.5);
    transform: scale(1.15);
}
.c2-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102,126,234,0.7) 0%, rgba(118,75,162,0.6) 50%, rgba(240,147,251,0.4) 100%);
}
.c2-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    min-height: 420px;
    gap: 32px;
}
.c2-hero-poster {
    flex-shrink: 0;
    width: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    align-self: center;
}
.c2-hero-poster img {
    width: 100%;
    display: block;
    aspect-ratio: 2/3;
    object-fit: cover;
}
.c2-hero-info {
    flex: 1;
    color: #fff;
    align-self: center;
}
.c2-hero-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}
.c2-hero-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.c2-hero-meta .c2-tag {
    background: rgba(255,255,255,0.12);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
}
.c2-hero-meta .c2-score {
    color: #ffd700;
    font-size: 18px;
    font-weight: 700;
}
.c2-hero-meta .c2-score em {
    font-style: normal;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    margin-left: 2px;
}
.c2-hero-des {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}
.c2-hero-des p,
.c2-hero-des span,
.c2-hero-des * {
    background: transparent !important;
    margin: 0;
    padding: 0;
}
.c2-hero-staff {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.c2-hero-staff-item {
    display: flex;
    gap: 6px;
}
.c2-hero-staff-item .label {
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.c2-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.c2-body-left {
    flex: 1;
    min-width: 0;
}
.c2-body-right {
    width: 340px;
    flex-shrink: 0;
}

.c2-section {
    background: var(--c2-card-bg, #fff);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.c2-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--c2-border, #f0f0f0);
}
.c2-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--c2-text, #1a1a2e);
    display: flex;
    align-items: center;
    gap: 8px;
}
.c2-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #e50914, #ff6b35);
    border-radius: 2px;
}
.c2-section-title-en {
    font-size: 11px;
    color: #bbb;
    font-weight: 400;
    margin-left: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.c2-play-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px;
}
.c2-play-source {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid var(--c2-border, #e8e8e8);
    background: var(--c2-card-bg, #fafafa);
    color: var(--c2-text-sub, #666);
    transition: all 0.25s ease;
}
.c2-play-source:hover,
.c2-play-source.active {
    background: linear-gradient(135deg, #e50914, #ff6b35);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(229,9,20,0.3);
}

.c2-play-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 4px 20px 20px;
}
.c2-play-list li {
    list-style: none;
}
.c2-play-list li a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--c2-text, #444);
    background: var(--c2-card-bg, #f7f8fa);
    border: 1px solid var(--c2-border, #eef0f4);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    min-width: 50px;
    text-align: center;
}
.c2-play-list li a:hover {
    background: #e50914;
    color: #fff;
    border-color: #e50914;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(229,9,20,0.25);
}

.c2-info-card {
    padding: 20px;
}
.c2-info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed var(--c2-border, #f0f0f0);
    font-size: 13px;
}
.c2-info-row:last-child {
    border-bottom: none;
}
.c2-info-row .c2-label {
    color: var(--c2-text-sub, #999);
    width: 60px;
    flex-shrink: 0;
}
.c2-info-row .c2-value {
    color: var(--c2-text, #333);
    flex: 1;
    line-height: 1.6;
}
.c2-info-row .c2-value a {
    color: #e50914;
    text-decoration: none;
}
.c2-info-row .c2-value a:hover {
    text-decoration: underline;
}
.c2-info-score {
    color: #e50914;
    font-weight: 700;
    font-size: 16px;
}

.c2-topic-list {
    padding: 0 20px 16px;
}
.c2-topic-item {
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
}
.c2-topic-item:last-child {
    border-bottom: none;
}
.c2-topic-item a {
    font-size: 14px;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    margin-bottom: 6px;
}
.c2-topic-item a:hover {
    color: #e50914;
}
.c2-topic-item p {
    font-size: 12px;
    color: #999;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.c2-rec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 16px 20px 20px;
}
@media (min-width: 1025px) {
    .c2-rec-grid .c2-rec-item:nth-child(n+9) {
        display: none;
    }
}
.c2-rec-item {
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c2-rec-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.c2-rec-item .c2-rec-cover {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: 10px;
    background: #eee;
}
.c2-rec-item .c2-rec-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.c2-rec-item:hover .c2-rec-cover img {
    transform: scale(1.08);
}
.c2-rec-item .c2-rec-note {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}
.c2-rec-item .c2-rec-name {
    font-size: 13px;
    color: #333;
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mxone-pannel-compact {
    padding: 10px;
}

@media (max-width: 1024px) {
    .c2-body {
        flex-direction: column;
    }
    .c2-body-right {
        width: 100%;
    }
    .c2-hero-content {
        padding: 24px;
        min-height: 320px;
    }
    .c2-hero-poster {
        width: 160px;
    }
    .c2-hero-info h1 {
        font-size: 24px;
    }
    .c2-rec-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .c2-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        min-height: auto;
    }
    .c2-hero-poster {
        width: 140px;
    }
    .c2-hero-meta {
        justify-content: center;
    }
    .c2-hero-staff {
        justify-content: center;
    }
    .c2-hero-info h1 {
        font-size: 20px;
    }
    .c2-rec-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 12px 16px 16px;
    }
    .c2-rec-grid .c2-rec-item:nth-child(n+10) {
        display: none;
    }
    .c2-play-list {
        padding: 4px 16px 16px;
    }
    .c2-topic-list {
        padding: 0 16px 12px;
    }
}
