.jdlrx h1, .infozin .sinopc, .alert-info, .sharing, #otakudesu-comments {
    display: none!important;
}
.infozin .jdlrx h1 {
    display: block!important;
    margin-top: 15px!important;
}
p {
    margin-top: 0;
    margin-bottom: 0px;
}




/* ===== JUDUL HALAMAN ===== */
.jdlrx {
    margin-bottom: 2rem;
}


.jdlrx h1 span {
    float: right !important;
    font-size: 0.9rem !important;
    background: #141a24;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    color: #9ca3af;
    border: 1px solid #232b38;
}

/* ===== SUBHEADING ===== */
.subheading {
    margin: 2rem 0 1.5rem;
}

.subheading h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.subheading h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3b82f6;
    border-radius: 3px;
}

/* ===== FOTO DAN INFO ANIME ===== */
.fotoanime {
    background: #141a24;
    border: 1px solid #232b38;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.fotoanime::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.fotoanime > img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.fotoanime > img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

/* Info container */
.infozin {
    flex: 1;
    min-width: 300px;
}


.infozingle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.infozingle p {
    margin: 0;
    padding: 0.8rem 1.2rem;
    background: #1a1f2b;
    border: 1px solid #232b38;
    border-radius: 12px;
    transition: all 0.2s ease;
    color: #d1d5db;
    font-size: 0.95rem;
}

.infozingle p:hover {
    border-color: #3b82f6;
    background: #1e2636;
    transform: translateX(5px);
}

.infozingle p b {
    color: #3b82f6;
    margin-right: 8px;
    font-weight: 600;
}

/* Genre links */
.infozingle p a {
    color: #3b82f6;
    text-decoration: none;
    display: inline-block;
    padding: 0.2rem 0.5rem;
    margin: 0 2px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.infozingle p a:hover {
    color: white;
    background: #3b82f6;
}

/* ===== SINopsis ===== */
.sinopc {
    width: 100%;
    margin-top: 1rem;
    padding: 1.5rem;
    background: #1a1f2b;
    border: 1px solid #232b38;
    border-radius: 16px;
    color: #d1d5db;
    line-height: 1.8;
}

.sinopc p {
    margin: 1rem 0;
    text-align: justify;
}

.sinopc p:first-child {
    margin-top: 0;
}

.sinopc p:last-child {
    margin-bottom: 0;
}

/* ===== EPISODE LIST ===== */
.episodelist {
    background: #141a24;
    border: 1px solid #232b38;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.smokelister {
    background: linear-gradient(90deg, #1e2636, #141a24);
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #232b38;
}

.smokelister .monktit {
    color: white!important;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

.smokelister .monktit span {
    color: #9ca3af!important;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.episodelist ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.episodelist ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.episodelist ul li:hover {
    background: rgba(59, 130, 246, 0.1);
    padding-left: 2.5rem;
}

.episodelist ul li:last-child {
    border-bottom: none;
}

.episodelist ul li p {
    margin: 0;
}

.episodelist ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.episodelist ul li a:hover {
    color: white;
}

.episodelist ul li a::before {
    content: '▶';
    color: #3b82f6;
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.episodelist ul li:hover a::before {
    opacity: 1;
    left: -15px;
}

.zeebr {
    color: #9ca3af;
    font-size: 0.9rem;
    background: #1a1f2b;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    border: 1px solid #232b38;
}


/* ===== KEYWORD / DESKRIPSI ===== */
.keyword {
    background: #1a1f2b;
    border: 1px solid #232b38;
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.keying {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: justify;
}

/* ===== ALERT INFO ===== */
.alert.alert-info {
    background: #1a1f2b;
    border: 1px solid #3b82f6;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    color: #d1d5db;
}

.alert.alert-info b {
    color: #3b82f6;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.alert.alert-info li {
    margin: 0.5rem 0;
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
}

.alert.alert-info li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.alert.alert-info a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.alert.alert-info a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== SHARING BUTTONS ===== */
.sharing {
    margin: 2rem 0;
}

.sharing ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sharing ul li {
    flex: 1 1 auto;
    min-width: 150px;
}

.sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
    background: #141a24;
    border: 1px solid #232b38;
    border-radius: 50px;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.sharing ul li a:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.sharing ul li a span.fa {
    font-size: 1.2rem;
}

.sharing ul li a .sharecount {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

/* ===== RECOMMENDATIONS ===== */
#recommend-anime-series {
    background: #141a24;
    border: 1px solid #232b38;
    border-radius: 20px;
    padding: 2rem;
    margin: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.judul-recommend-anime-series h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.judul-recommend-anime-series h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3b82f6;
    border-radius: 3px;
}

.isi-recommend-anime-series {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.isi-konten {
    background: #1a1f2b;
    border: 1px solid #232b38;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.isi-konten:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.gambar-konten {
    position: relative;
    overflow: hidden;
}

.gambar-konten img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.isi-konten:hover .gambar-konten img {
    transform: scale(1.1);
}

.isi-anime {
    padding: 1rem;
}

.isi-anime .judul-anime {
    margin: 0;
}

.isi-anime .judul-anime a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    transition: all 0.2s ease;
}

.isi-anime .judul-anime a:hover {
    color: #3b82f6;
}

/* ===== COMMENTS BUTTON ===== */
#show-comments {
    font-family: inherit !important;
    font-size: 1rem !important;
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
    color: white !important;
    border: none !important;
    width: 100%;
    padding: 1rem !important;
    margin: 1rem 0 !important;
    border-radius: 50px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

#show-comments:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4) !important;
}

/* ===== CLEAR FIX ===== */
.clear {
    clear: both;
    height: 1px;
}






/* ===== SINopsis DENGAN DESAIN BARU ===== */
.sinopc {
    margin: 2rem 0 !important;
    padding: 1.8rem !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
    border-radius: 24px !important;
    color: #d1d5db !important;
    line-height: 1.8 !important;
    position: relative;
    overflow: hidden;
}

.sinopc::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 8rem;
    color: rgba(59, 130, 246, 0.1);
    font-family: serif;
    pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .jdlrx h1 {
        font-size: 1.8rem;
    }
    
    .subheading h2 {
        font-size: 1.5rem;
    }
    
    .fotoanime {
        flex-direction: column;
        align-items: center;
    }
    
    .fotoanime > img {
        width: 200px;
        height: 280px;
    }
    
    .infozingle {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .jdlrx h1 {
        font-size: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .jdlrx h1 span {
        float: none !important;
        width: fit-content;
    }
    
    .subheading h2 {
        font-size: 1.3rem;
    }
    
    .fotoanime {
        padding: 1.5rem;
    }
    
    .smokelister {
        padding: 1rem 1.5rem;
    }
    
    .smokelister .monktit {
        font-size: 1.1rem;
    }
    
    .episodelist ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .zeebr {
        align-self: flex-start;
    }
    
    .sharing ul li {
        min-width: 100%;
    }
    
    .sharing ul li a {
        justify-content: center;
    }
    
    .isi-recommend-anime-series {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .jdlrx h1 {
        font-size: 1.3rem;
    }
    
    .subheading h2 {
        font-size: 1.1rem;
    }
    
    .fotoanime {
        padding: 1rem;
    }
    
    .infozingle p {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .sinopc {
        font-size: 0.9rem;
        height: 200px!important;
        overflow: overlay!important;
        padding: 10px 15px !important;
        margin : 10px 0px!important;
    }
    
    .smokelister .monktit {
        font-size: 1rem;
    }
    
    .episodelist ul li a {
        font-size: 0.9rem;
    }
    
    .zeebr {
        font-size: 0.8rem;
    }
    
    .isi-recommend-anime-series {
        grid-template-columns: 1fr;
    }
}


/* ===== HERO SECTION ===== */
.fotoanime {
    position: relative;
    background: transparent !important;
    border: none !important;
    padding: 2rem !important;
    margin: 20px 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    background: linear-gradient(145deg, #0f1219 0%, #1a1f2b 100%) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
}

/* ===== POSTER COVER ===== */
.fotoanime > img {
    width: 260px !important;
    height: auto !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 40px -10px black !important;
    border: 3px solid rgba(59, 130, 246, 0.2) !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0;
}

.fotoanime > img:hover {
    transform: translateY(-5px);
    border-color: #3b82f6 !important;
    box-shadow: 0 30px 50px -10px #3b82f6 !important;
}

/* ===== INFO CONTAINER ===== */
.infozin {
    flex: 1;
    min-width: 350px;
}

/* ===== JUDUL UTAMA (TANPA TITIK DUA) ===== */
.jdlrx {
    margin-bottom: 0.5rem;
}

.jdlrx h1 {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    color: white !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px;
}

/* Hilangkan semua titik dua di judul */
.jdlrx h1::before,
.jdlrx h1::after {
    display: none !important;
}

/* Japanese Title (di bawah judul) - TANPA TITIK DUA */
.japanese-title {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-top: 0.3rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

/* Hilangkan titik dua di Japanese title */
.japanese-title::before,
.japanese-title::after {
    display: none !important;
}

/* ===== META LABELS (Episode, Rating, Rilis) ===== */
.meta-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-label-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
}

.meta-label-key {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 400;
}

.meta-label-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.meta-label-value.rating {
    color: #fbbf24;
}

/* ===== INFO LIST DENGAN TITIK DUA RATA ===== */
.info-list {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.info-list-item {
    display: flex;
    align-items: baseline;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-list-item:last-child {
    border-bottom: none;
}

.info-list-key {
    width: 100px;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 400;
    flex-shrink: 0;
}

/* Tambahkan titik dua secara manual */
.info-list-key::after {
    content: ':';
    margin-left: 0.2rem;
    color: #9ca3af;
}

.info-list-value {
    color: white;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    flex: 1;
    word-break: break-word;
}

/* ===== GENRE SECTION ===== */
.genre-section {
    margin: 2rem 0 1rem;
}

.genre-title {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.genre-tag {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.genre-tag:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}



/* ===== HIDE ORIGINAL ELEMENTS ===== */
.infozin p,
.infozin p p,
.infozingle,
.infozingle p,
.infozingle p p,
.subheading {
    display: none !important;
}

/* Sembunyikan elemen kosong */
p:empty,
p:blank,
p:not(:has(*)) {
    display: none !important;
}

/* ===== RESPONSIVE UNTUK TABLET/MOBILE ===== */

/* Tablet (768px - 992px) */
@media (max-width: 992px) {
    .fotoanime {
        flex-direction: column;
        align-items: center;
        gap: 0rem;
        padding: 1.5rem !important;
    }
    
    .fotoanime > img {
        width: 220px !important;
    }
    
    .infozin {
        width: 100%;
        min-width: auto;
    }
    
    .jdlrx h1 {
        font-size: 2rem !important;
        text-align: center;
    }
    
    .japanese-title {
        text-align: center;
        font-size: 1rem;
    }
    
    /* Episode, Rating, Rilis dalam satu baris */
    .meta-labels {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 0rem;
    }
    
    .meta-label-item {
        padding: 0.3rem 0.8rem !important;
        gap: 0.3rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .meta-label-key {
        font-size: 0.75rem;
    }
    
    .meta-label-value {
        font-size: 0.8rem;
    }
    
    /* Info list dengan titik dua rata */
    .info-list {
        margin: 0px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .info-list-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline;
        padding: 0.5rem 0;
    }
    
    .info-list-key {
        width: 80px !important;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .info-list-key::after {
        content: ':';
        margin-left: 0.2rem;
    }
    
    .info-list-value {
        font-size: 0.85rem;
        flex: 1;
        white-space: normal;
        word-break: break-word;
    }
    
    /* Genre section */
    .genre-section {
        margin: 1.5rem 0;
    }
    
    .genre-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        float: left;
    }
    
    .genre-tags {
        display: flex !important;
        flex-wrap: wrap;
        gap: 0.4rem;
        padding-left: 30px;
    }
    
    .genre-tag {
        padding: 0.25rem 0.8rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
    }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
    .fotoanime {
        padding: 1.2rem !important;
    }
    
    .fotoanime > img {
        width: 200px !important;
    }
    
    .jdlrx h1 {
        font-size: 1.6rem !important;
    }
    
    .japanese-title {
        font-size: 0.9rem;
    }
    
    /* Episode, Rating, Rilis - tetap satu baris */
    .meta-labels {
        gap: 0.3rem;
    }
    
    .meta-label-item {
        padding: 0.2rem 0.6rem !important;
    }
    
    .meta-label-key {
        font-size: 0.7rem;
    }
    
    .meta-label-value {
        font-size: 0.75rem;
    }
    
    /* Info list */
    .info-list-key {
        width: 75px !important;
        font-size: 0.8rem;
    }
    
    .info-list-value {
        font-size: 0.8rem;
    }
    
    /* Produser yang panjang */
    .info-list-item:has(.info-list-key:contains("Produser")) .info-list-value {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .genre-tag {
        padding: 0.2rem 0.7rem !important;
        font-size: 0.7rem !important;
    }
}

/* Mobile Portrait (max 576px) */
@media (max-width: 576px) {
    .fotoanime {
        padding: 1rem !important;
    }
    
    .fotoanime > img {
        width: 180px !important;
    }
    
    .jdlrx h1 {
        font-size: 1.4rem !important;
    }
    
    .japanese-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    /* Episode, Rating, Rilis - tetap satu baris dengan font lebih kecil */
    .meta-labels {
        gap: 0.2rem;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .meta-label-item {
        padding: 0.2rem 0.5rem !important;
        flex-shrink: 0;
    }
    
    .meta-label-key {
        font-size: 0.65rem;
    }
    
    .meta-label-value {
        font-size: 0.7rem;
    }
    
    /* Info list - tetap dengan titik dua rata */
    .info-list-item {
        padding: 0.4rem 0;
    }
    
    .info-list-key {
        width: 70px !important;
        font-size: 0.75rem;
    }
    
    .info-list-value {
        font-size: 0.75rem;
    }
    
    /* Genre tags lebih kecil */
    .genre-tag {
        padding: 0.2rem 0.6rem !important;
        font-size: 0.65rem !important;
    }
}

/* Small Mobile (max 400px) */
@media (max-width: 400px) {
    .fotoanime > img {
        width: 160px !important;
    }
    
    .jdlrx h1 {
        font-size: 1.2rem !important;
    }
    
    .japanese-title {
        font-size: 0.8rem;
    }
    
    /* Episode, Rating, Rilis - scroll horizontal jika perlu */
    .meta-labels {
        justify-content: flex-start;
    }
    
    .meta-label-item {
        padding: 0.15rem 0.4rem !important;
    }
    
    .meta-label-key {
        font-size: 0.6rem;
    }
    
    .meta-label-value {
        font-size: 0.65rem;
    }
    
    /* Info list */
    .info-list-key {
        width: 65px !important;
        font-size: 0.7rem;
    }
    
    .info-list-value {
        font-size: 0.7rem;
    }
    
    /* Produser di mobile kecil */
    .info-list-item:has(.info-list-key:contains("Produser")) .info-list-value {
        font-size: 0.65rem;
    }
    
    .genre-tag {
        padding: 0.15rem 0.5rem !important;
        font-size: 0.6rem !important;
    }
}

/* ===== PERBAIKAN UNTUK PRODUSER YANG PANJANG ===== */
.info-list-item:has(.info-list-key:contains("Produser")) {
    flex-wrap: wrap;
}

.info-list-item:has(.info-list-key:contains("Produser")) .info-list-value {
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
}

/* ===== MEMASTIKAN TITIK DUA RATA ===== */
.info-list-key {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.info-list-key::after {
    content: ':';
    margin-left: 0.2rem;
    color: #9ca3af;
}

/* ===== HIDE ELEMEN YANG TIDAK PERLU ===== */
.infozin p,
.infozin p p,
.infozingle,
.infozingle p,
.infozingle p p,
.subheading {
    display: none !important;
}

/* ===== REKOMENDASI ANIME LAINNYA - SAMA SEPERTI HOME ===== */
#recommend-anime-series {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.judul-recommend-anime-series {
    margin-bottom: 2rem;
}

.judul-recommend-anime-series h3 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #1a1f2b, #0f1219);
    border-left: 4px solid #3b82f6;
    padding: 0.8rem 2rem !important;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.judul-recommend-anime-series h3::after {
    display: none;
}

.isi-recommend-anime-series {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Card style sama seperti .list-movie di home */
.isi-konten {
    background: #141a24;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    height: 100%;
    border: 1px solid #232b38;
    position: relative;
}

/* Hover card - naik dan border biru */
.isi-konten:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px #3b82f6;
}

.gambar-konten {
    position: relative;
    overflow: hidden;
}

.gambar-konten img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover image - zoom */
.isi-konten:hover .gambar-konten img {
    transform: scale(1.1);
}

/* Container untuk judul anime */
.isi-anime {
    position: relative;
    padding: 0;
}

/* Judul anime - style sama seperti .thumb h2 di home */
.isi-anime .judul-anime {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent) !important;
    color: white !important;
    padding: 2rem 0.8rem 0.8rem !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.isi-anime .judul-anime a {
    color: white !important;
    text-decoration: none;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    pointer-events: auto;
    display: block;
}

/* Hover title - ganti background gradient */
.isi-konten:hover .isi-anime .judul-anime {
    background: linear-gradient(to top, #1e3a8a, transparent) !important;
}

/* Overlay play button - sama seperti di home */
.isi-konten .gambar-konten::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.8);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.isi-konten:hover .gambar-konten::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ===== RESPONSIVE UNTUK REKOMENDASI ===== */
@media (max-width: 992px) {
    .judul-recommend-anime-series h3 {
        font-size: 1.5rem !important;
        padding: 0.7rem 1.5rem !important;
    }
    
    .isi-recommend-anime-series {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .judul-recommend-anime-series h3 {
        font-size: 1.3rem !important;
        padding: 0.6rem 1.2rem !important;
        width: 100%;
        text-align: center;
        border-left: none;
        border-radius: 8px;
    }
    
    .isi-recommend-anime-series {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .isi-anime .judul-anime,
    .isi-anime .judul-anime a {
        font-size: 0.8rem !important;
        padding: 1.5rem 0.5rem 0.5rem !important;
    }
    
    .isi-konten .gambar-konten::before {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .isi-recommend-anime-series {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .judul-recommend-anime-series h3 {
        font-size: 1.2rem !important;
    }
    
    .isi-anime .judul-anime,
    .isi-anime .judul-anime a {
        font-size: 0.75rem !important;
        padding: 1.2rem 0.4rem 0.4rem !important;
    }
    
    .isi-konten:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 380px) {
    .isi-recommend-anime-series {
        grid-template-columns: 1fr;
    }
}
/* ===== RATING DENGAN ICON STAR ===== */
.meta-label-item:has(.meta-label-value.rating) {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.meta-label-item:has(.meta-label-value.rating) .meta-label-key {
    color: #fbbf24;
}

.meta-label-value.rating {
    color: #fbbf24 !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

/* Tambah icon star sebelum nilai rating */
.meta-label-value.rating::before {
    content: '★';
    font-size: 1rem;
    color: #fbbf24;
    margin-right: 0.2rem;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}

/* Untuk mobile */
@media (max-width: 768px) {
    .meta-label-value.rating::before {
        font-size: 0.9rem;
    }
    .isi-recommend-anime-series {
    display: table;!important;
  }
  .isi-konten {
        width: 45% !important;
        float: left;
        margin: 8px;
    }
}

@media (max-width: 576px) {
    .meta-label-value.rating::before {
        font-size: 0.8rem;
    }
}