* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Songti SC", "SimSun", "STSong", serif;
    background-color: #0a1018;
    color: #f0e6d2;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
.ink-wash-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(20, 40, 60, 0.8), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(30, 20, 40, 0.6), transparent 50%),
        linear-gradient(135deg, #0a1018 0%, #0d1520 40%, #101828 100%);
    background-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}
.ink-wash-layer::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background:
        radial-gradient(circle at 30% 40%, rgba(40, 60, 80, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(60, 40, 60, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(20, 40, 50, 0.2) 0%, transparent 40%);
    filter: blur(8px);
}
.main-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: linear-gradient(to bottom, rgba(10, 16, 24, 0.95), rgba(10, 16, 24, 0.8));
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    gap: 8px;
}
.brand-link {
    font-family: "STKaiti", "KaiTi", serif;
    font-size: 1.6rem;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}
a.brand-link:hover {
    color: #e8c84a;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}
.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}
.runtime-category {
    color: #c8b89a;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 12px;
    border: 1px solid transparent;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.runtime-category:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
}
.hero-stage {
    padding: 40px 0 60px;
    position: relative;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.title-group {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px 0 10px;
}
.drama-title {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    background: linear-gradient(to bottom, #f0d878, #d4af37, #8a6d1f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
    letter-spacing: 2px;
    line-height: 1.4;
    margin-bottom: 6px;
}
.tagline {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 1rem;
    color: #8a7a5a;
    letter-spacing: 8px;
    font-style: italic;
}
.poster-shell {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
    background: linear-gradient(145deg, rgba(20, 30, 45, 0.6), rgba(10, 16, 24, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.poster-shell::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent, rgba(212, 175, 55, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.main-poster-img {
    width: 100%;
    max-width: 280px;
    max-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 2 / 3;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.player-wrapper {
    position: relative;
    background: #050a10;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    min-width: 480px;
}
.main-player {
    display: block;
    background: #000;
}
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 12px;
    background: rgba(5, 10, 16, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    flex-wrap: nowrap;
}
.control-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #c8b89a;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.control-btn:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.08);
}
.control-btn.active {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
}
.control-btn.muted {
    color: #e74c3c;
    border-color: #e74c3c;
}
.control-btn.theater-on {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
}
.control-btn.lights-dim {
    color: #f39c12;
    border-color: #f39c12;
}
.control-btn.pip-active {
    color: #27ae60;
    border-color: #27ae60;
}
.control-progress {
    flex: 1;
    min-width: 60px;
    max-width: 200px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(200, 184, 154, 0.2);
    border-radius: 2px;
    outline: none;
    margin: 0 4px;
}
.control-progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4af37;
    cursor: pointer;
    border: none;
}
.control-progress::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4af37;
    cursor: pointer;
    border: none;
}
.control-progress.interacted {
    background: rgba(212, 175, 55, 0.3);
}
.control-volume {
    width: 60px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(200, 184, 154, 0.2);
    border-radius: 2px;
    outline: none;
    margin: 0 4px;
}
.control-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c8b89a;
    cursor: pointer;
    border: none;
}
.control-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c8b89a;
    cursor: pointer;
    border: none;
}
.control-volume.volume-set {
    background: rgba(212, 175, 55, 0.3);
}
.control-speed {
    background: rgba(5, 10, 16, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #c8b89a;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 0.75rem;
    padding: 2px 4px;
    border-radius: 12px;
    cursor: pointer;
    outline: none;
    max-width: 70px;
}
.control-speed.speed-set {
    border-color: #d4af37;
    color: #d4af37;
}
.player-wrapper.theater-mode {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    z-index: 1000;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.9);
}
.main-container.lights-off {
    filter: brightness(0.3) sepia(0.2);
    transition: filter 0.5s ease;
}
.synopsis-group {
    grid-column: 1 / -1;
    padding: 20px;
    background: rgba(10, 16, 24, 0.4);
    border-radius: 12px;
    border-left: 3px solid rgba(212, 175, 55, 0.5);
}
.section-title {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 1.2rem;
    color: #d4af37;
    letter-spacing: 3px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 8px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    background: linear-gradient(to bottom, #f0d878, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.6), transparent);
}
.synopsis-paragraph {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.95rem;
    color: #c8b89a;
    margin-bottom: 10px;
    text-indent: 2em;
    line-height: 1.8;
}
.cast-scroll-wrapper {
    grid-column: 1 / -1;
    padding: 10px 0;
}
.cast-scroll-wrapper .section-title {
    margin-bottom: 16px;
}
.cast-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
    margin: 6px;
    background: linear-gradient(145deg, rgba(20, 30, 45, 0.6), rgba(10, 16, 24, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50% 50% 12px 12px;
    min-width: 100px;
    transition: all 0.3s ease;
}
.cast-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.actor-name {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 1rem;
    color: #f0e6d2;
    margin-bottom: 4px;
}
.actor-role {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.8rem;
    color: #8a7a5a;
    font-style: italic;
}
.episode-status-meta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 8px 0;
}
.total-episodes, .current-ep {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.9rem;
    color: #c8b89a;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    background: rgba(10, 16, 24, 0.5);
}
.details-group {
    grid-column: 1 / -1;
    padding: 20px;
    background: rgba(10, 16, 24, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px 16px;
}
.detail-item {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.9rem;
    color: #c8b89a;
    padding: 4px 0;
}
.detail-label {
    color: #8a7a5a;
}
.silhouette-scroll {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
    overflow-x: auto;
    flex-wrap: nowrap;
}
.silhouette-item {
    width: 36px;
    height: 72px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), rgba(10, 16, 24, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50% 50% 0 0;
    display: block;
    flex-shrink: 0;
    position: relative;
}
.silhouette-item::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
}
.silhouette-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 16px;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    background: rgba(212, 175, 55, 0.1);
}
.timeline-scroll {
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 40px;
    overflow-x: auto;
}
.timeline-track {
    display: flex;
    gap: 0;
    position: relative;
    padding: 30px 0;
    min-width: min-content;
    justify-content: center;
}
.timeline-track::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.4), transparent);
}
.timeline-item {
    flex: 0 0 auto;
    width: 220px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    background: rgba(10, 16, 24, 0.8);
    border-radius: 50% 50% 8px 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 0 8px;
    transition: all 0.3s ease;
}
.timeline-item::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4af37;
    border: 2px solid #0a1018;
    z-index: 1;
}
.timeline-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.timecode {
    display: block;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.event-desc {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.85rem;
    color: #c8b89a;
    line-height: 1.6;
}
.episodes-accordion {
    padding: 20px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.episode-panel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
}
.episode-item {
    background: rgba(10, 16, 24, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.episode-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.episode-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(15, 25, 40, 0.6);
}
.episode-item:hover::before {
    opacity: 1;
}
.episode-number {
    display: inline-block;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 0.8rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.episode-title {
    display: block;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 1rem;
    color: #f0e6d2;
    margin-bottom: 8px;
}
.episode-summary {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.85rem;
    color: #8a7a5a;
    line-height: 1.6;
}
.user-comments {
    padding: 20px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.comment-wall {
    columns: 4 280px;
    column-gap: 16px;
}
.comment-card {
    break-inside: avoid;
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(10, 16, 24, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50% 50% 12px 12px;
    transition: all 0.3s ease;
}
.comment-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.comment-nick {
    display: block;
    font-family: "Songti SC", "SimSun", serif;
    font-size: 0.95rem;
    color: #d4af37;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.comment-text {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.85rem;
    color: #c8b89a;
    line-height: 1.7;
}
.recommendation-section {
    padding: 20px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.rec-title {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 1.1rem;
    color: #d4af37;
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(to bottom, #f0d878, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.rec-card {
    text-decoration: none;
    color: #c8b89a;
    background: rgba(10, 16, 24, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.rec-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #f0e6d2;
}
.rec-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background: #1a2028;
}
.rec-card span {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.85rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rec-card span:first-of-type {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 0.95rem;
    color: #f0e6d2;
    margin-top: 4px;
}
.rec-card span:last-of-type {
    color: #8a7a5a;
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.site-footer {
    position: relative;
    z-index: 1;
    padding: 30px 20px 40px;
    background: linear-gradient(to top, rgba(5, 10, 16, 0.95), rgba(10, 16, 24, 0.8));
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}
.disclaimer-text {
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.8rem;
    color: #8a7a5a;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.site-footer > a {
    color: #c8b89a;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 12px;
    transition: color 0.3s ease;
}
.site-footer > a:hover {
    color: #d4af37;
}
.friend-links {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.friend-label {
    font-family: "Songti SC", "SimSun", serif;
    font-size: 0.85rem;
    color: #8a7a5a;
}
.runtime-friend-link {
    color: #8a7a5a;
    text-decoration: none;
    font-family: "FangSong", "STFangsong", serif;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.runtime-friend-link:hover {
    color: #d4af37;
}
@media (max-width: 1024px) {.hero-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
.player-wrapper {
        min-width: 480px;
        width: 100%;
    }
.poster-shell {
        justify-content: center;
    }
.main-poster-img {
        max-width: 240px;
    }
.comment-wall {
        columns: 3 240px;
    }}
@media (max-width: 768px) {.site-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 16px;
    }
.brand-link {
        font-size: 1.3rem;
    }
.category-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }
.hero-stage {
        padding: 20px 0 40px;
    }
.drama-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
.tagline {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }
.player-wrapper {
        min-width: 100%;
    }
.player-controls {
        flex-wrap: wrap;
        gap: 4px;
    }
.control-progress {
        order: -1;
        flex-basis: 100%;
        max-width: none;
    }
.control-btn {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
.episode-panel {
        grid-template-columns: 1fr;
        gap: 8px;
    }
.comment-wall {
        columns: 2 200px;
        column-gap: 12px;
    }
.comment-card {
        margin-bottom: 12px;
        padding: 12px;
    }
.rec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
.rec-card {
        padding: 8px;
    }
.rec-card img {
        aspect-ratio: 16 / 10;
    }
.timeline-track {
        justify-content: flex-start;
        padding: 20px 0;
    }
.timeline-item {
        width: 180px;
        margin: 0 6px;
    }}
@media (max-width: 480px) {.main-container {
        padding: 0 12px;
    }
.player-controls {
        gap: 2px;
        padding: 6px 4px;
    }
.control-btn {
        font-size: 0.65rem;
        padding: 2px 4px;
    }
.control-volume {
        width: 40px;
    }
.control-speed {
        max-width: 50px;
        font-size: 0.65rem;
    }
.silhouette-item {
        width: 28px;
        height: 56px;
    }
.details-group {
        grid-template-columns: 1fr 1fr;
        gap: 4px 8px;
        padding: 12px;
    }
.detail-item {
        font-size: 0.8rem;
    }
.cast-card {
        min-width: 80px;
        padding: 12px 14px;
    }
.actor-name {
        font-size: 0.85rem;
    }
.actor-role {
        font-size: 0.7rem;
    }
.comment-wall {
        columns: 1;
    }
.comment-card {
        border-radius: 12px;
    }
.rec-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
.rec-card span:last-of-type {
        -webkit-line-clamp: 2;
    }
.episode-status-meta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
.timeline-scroll {
        padding: 20px 0;
    }
.timeline-item {
        width: 160px;
        padding: 14px 10px;
    }
.friend-links {
        gap: 6px 12px;
    }}
.hero-content, .player-wrapper, .poster-shell, .synopsis-group, .details-group, .cast-card, .episode-item, .comment-card, .rec-card, .timeline-item {
    border-radius: 12px;
}
.silhouette-scroll::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
    margin-bottom: 10px;
}
@supports (-webkit-text-stroke: 1px rgba(212, 175, 55, 0.3)) {.drama-title {
        -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3);
    }}
.main-player {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
a[data-contract="site-name"] {
    color: #d4af37;
    text-decoration: none;
}
a.runtime-category {
    color: #c8b89a;
    text-decoration: none;
}
a.rec-card {
    color: #c8b89a;
    text-decoration: none;
}
a[data-contract="footer-home"] {
    color: #c8b89a;
    text-decoration: none;
}
a[data-contract="footer-sitemap"] {
    color: #c8b89a;
    text-decoration: none;
}
a.runtime-friend-link {
    color: #8a7a5a;
    text-decoration: none;
}
.cast-scroll-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
}
.cast-scroll-wrapper .section-title {
    flex-basis: 100%;
}
.cast-card {
    margin: 0;
}

footer{text-align:center!important}
footer *{justify-content:center!important}
footer :is(div,nav,ul,ol,p,section,address){margin-left:auto!important;margin-right:auto!important}
