 :root {
     --bg: radial-gradient(circle at top, #151420 0%, #09090c 58%, #050507 100%);
     --accent: #f04382;
     --surface: #101014;
     --muted: rgba(255, 255, 255, .55);
 }

 * {
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif
 }

 body {
     margin: 0;
     background: var(--bg);
     color: #fff
 }

 /* ====== HEADER (global) ====== */
 header.topbar {
     position: sticky;
     top: 0;
     z-index: 999;
     background: rgba(7, 7, 9, .75);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(255, 255, 255, .03)
 }

 .topbar-inner {
     max-width: 1180px;
     margin: 0 auto;
     padding: .65rem 1.1rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 1rem
 }

 .brand {
     font-weight: 600;
     font-size: 1.25rem
 }

 .brand span {
     color: var(--accent)
 }

 .main-nav {
     display: flex;
     gap: 1rem;
     align-items: center
 }

 .main-nav a {
     color: rgba(255, 255, 255, .75);
     text-decoration: none;
     font-size: .78rem
 }

 .main-nav a:hover,
 .main-nav a.active {
     color: var(--accent)
 }

 .right-icons {
     display: flex;
     gap: .6rem;
     align-items: center
 }

 .icon-btn {
     width: 32px;
     height: 32px;
     background: transparent;
     border: none;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     color: rgba(255, 255, 255, .9)
 }

 .icon-btn svg {
     width: 21px;
     height: 21px;
     stroke: currentColor;
     stroke-width: 1.7;
     fill: none
 }

 .burger {
     display: none
 }

 /* Search popup */
 .search-pop {
     position: fixed;
     inset: 0;
     display: none;
     justify-content: center;
     align-items: center;
     background: rgba(7, 7, 9, .5);
     backdrop-filter: blur(8px);
     z-index: 1100
 }

 .search-pop.show {
     display: flex
 }

 .search-box {
     width: min(92%, 700px);
     background: rgba(12, 12, 14, .98);
     border: 1px solid rgba(255, 255, 255, .04);
     border-radius: 1.3rem;
     padding: .9rem 1.1rem;
     display: flex;
     gap: .7rem;
     align-items: center;
     box-shadow: 0 16px 40px rgba(0, 0, 0, .35)
 }

 .search-box input {
     flex: 1;
     background: transparent;
     border: none;
     outline: none;
     color: #fff;
     font-size: .82rem
 }

 .close-search {
     border: none;
     background: transparent;
     color: rgba(255, 255, 255, .6);
     font-size: 1.3rem;
     cursor: pointer
 }

 /* Mobile sheet */
 .mobile-panel {
     position: fixed;
     inset: 0;
     background: rgba(6, 6, 8, .45);
     backdrop-filter: blur(12px);
     z-index: 1050;
     display: none
 }

 .mobile-panel.show {
     display: block
 }

 .mobile-panel .sheet {
     background: rgba(10, 10, 13, .96);
     height: 100%;
     width: 100%;
     max-width: 420px;
     margin-left: auto;
     padding: 1rem 1.2rem 2rem;
     display: flex;
     flex-direction: column;
     gap: 1rem;
     box-shadow: -12px 0 40px rgba(0, 0, 0, .25)
 }

 .m-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 1px solid rgba(255, 255, 255, .03);
     padding-bottom: .6rem
 }

 .close-sheet {
     width: 34px;
     height: 34px;
     border-radius: .7rem;
     border: 1px solid rgba(255, 255, 255, .085);
     background: rgba(255, 255, 255, .02);
     color: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 1.25rem;
     cursor: pointer
 }

 .m-list {
     display: flex;
     flex-direction: column;
     gap: .6rem
 }

 .m-item {
     display: flex;
     gap: .6rem;
     align-items: center;
     color: rgba(255, 255, 255, .9);
     text-decoration: none;
     font-size: .9rem;
     padding: .55rem .35rem;
     border-radius: .5rem
 }

 .m-item:hover {
     background: rgba(240, 67, 130, .08)
 }

 /* ====== HERO ====== */
 .hero-head {
     max-width: 1200px;
     margin: 2.1rem auto 1rem;
     padding: 0 1.2rem;
     text-align: center
 }

 .hero-head h1 {
     font-size: 2rem;
     margin: .1rem 0 .35rem;
     color: #ff4d93
 }

 .hero-head p {
     font-size: .72rem;
     color: var(--muted)
 }

 /* ====== SLIDER 5-CARD ====== */
 .slider-section {
     width: 100%;
     padding: 0 1.2rem;
     margin-bottom: 2.2rem
 }

 .slider-container {
     width: 100%;
     height: 640px;
     position: relative;
     display: flex;
     justify-content: center;
     align-items: center;
     perspective: 1800px
 }

 .slider-slot {
     position: absolute;
     width: 360px;
     height: 600px;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: transform .35s ease, opacity .35s ease, z-index .35s ease;
     pointer-events: none
 }

 .card {
     width: 100%;
     height: 100%;
     background: var(--surface);
     border: 1px solid rgba(255, 255, 255, .015);
     border-radius: 26px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     position: relative;
     box-shadow: 0 25px 55px rgba(0, 0, 0, .35);
     pointer-events: auto
 }

 .thumb {
     position: relative;
     width: 100%;
     height: 445px;
     background: #000;
     overflow: hidden
 }

 .thumb img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: .25s ease
 }

 .thumb::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .6) 85%), radial-gradient(circle at top, rgba(240, 67, 130, .25) 0%, rgba(240, 67, 130, 0) 65%)
 }

 .ep-pill {
     position: absolute;
     top: 16px;
     right: 16px;
     background: rgba(19, 17, 16, .9);
     border: 1px solid rgba(255, 255, 255, .05);
     border-radius: 999px;
     padding: .35rem .9rem;
     font-size: .62rem;
     z-index: 3
 }

 .play-overlay {
     position: absolute;
     inset: 0;
     display: flex;
     justify-content: center;
     align-items: center;
     background: radial-gradient(circle, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .65) 100%);
     opacity: 0;
     transition: .15s;
     z-index: 4;
     pointer-events: none
 }

 .play-circle {
     width: 66px;
     height: 66px;
     border-radius: 999px;
     background: radial-gradient(circle, #f04382 0%, #b51662 100%);
     display: flex;
     justify-content: center;
     align-items: center;
     box-shadow: 0 12px 30px rgba(240, 67, 130, .45)
 }

 .play-circle svg {
     width: 26px;
     height: 26px;
     fill: #fff;
     margin-left: 3px
 }

 .body {
     flex: 1;
     padding: 1rem 1.1rem 1.05rem;
     display: flex;
     flex-direction: column;
     gap: .5rem
 }

 .title {
     font-size: 1rem;
     font-weight: 600;
     line-height: 1.1
 }

 .desc {
     font-size: .68rem;
     color: rgba(255, 255, 255, .65);
     line-height: 1.35;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden
 }

 .tags {
     display: flex;
     flex-wrap: wrap;
     gap: .35rem
 }

 .tag {
     background: rgba(247, 247, 247, .01);
     border: 1px solid rgba(255, 255, 255, .02);
     border-radius: 999px;
     padding: .22rem .6rem .28rem;
     font-size: .55rem
 }

 .foot {
     margin-top: auto;
     display: flex;
     align-items: center;
     gap: .35rem;
     font-size: .62rem;
     color: rgba(255, 255, 255, .42)
 }

 .card:hover .play-overlay {
     opacity: 1
 }

 .card:hover .thumb img {
     transform: scale(1.045)
 }

 .card:hover {
     border-color: rgba(240, 67, 130, .22)
 }

 /* Posisi */
 .pos-center {
     transform: translateX(0) rotateY(0) scale(1);
     z-index: 5;
     opacity: 1
 }

 .pos-right {
     transform: translateX(360px) rotateY(-16deg) scale(.92);
     z-index: 4;
     opacity: .75
 }

 .pos-far-right {
     transform: translateX(640px) rotateY(-32deg) scale(.78);
     z-index: 3;
     opacity: .35
 }

 .pos-left {
     transform: translateX(-360px) rotateY(16deg) scale(.92);
     z-index: 4;
     opacity: .75
 }

 .pos-far-left {
     transform: translateX(-640px) rotateY(32deg) scale(.78);
     z-index: 3;
     opacity: .35
 }

 .slider-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 34px;
     height: 90px;
     background: rgba(0, 0, 0, .42);
     border: 1px solid rgba(255, 255, 255, .02);
     border-radius: 14px;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     z-index: 20;
     pointer-events: auto
 }

 .slider-btn:hover {
     background: rgba(0, 0, 0, .7)
 }

 .slider-btn svg {
     width: 20px;
     height: 20px;
     fill: #fff
 }

 .slider-btn.left {
     left: 1.2rem
 }

 .slider-btn.right {
     right: 1.2rem
 }

 /* Announce */
 .announce {
     max-width: 1200px;
     margin: 0 auto 2.2rem;
     padding: 0 1.2rem
 }

 .announce-box {
     background: linear-gradient(90deg, rgba(240, 67, 130, .25) 0%, rgba(6, 6, 8, 0) 90%);
     border: 1px solid rgba(255, 255, 255, .025);
     border-radius: 14px;
     padding: .7rem 1rem;
     display: flex;
     gap: .5rem;
     align-items: center
 }

 .announce-pill {
     width: 26px;
     height: 26px;
     border-radius: 999px;
     background: rgba(240, 67, 130, .9);
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: .7rem
 }

 .announce-text {
     font-size: .7rem
 }

 /* ====== ALL DRAMAS (card konsisten: cover rounded only top) ====== */
 .page {
     width: 100%;
     margin: 0 auto 3.2rem;
     padding: 0 1.25rem
 }

 .page-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1rem;
     max-width: 1650px;
     margin-left: auto;
     margin-right: auto
 }

 .page-head small {
     color: rgba(255, 255, 255, .42);
     font-size: .66rem
 }

 .grid {
     width: 100%;
     max-width: 1650px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
     gap: 1rem
 }

 .grid-card {
     background: var(--surface);
     border: 1px solid rgba(255, 255, 255, .015);
     overflow: hidden;
     display: flex;
     flex-direction: column;
     position: relative;
     box-shadow: 0 16px 36px rgba(0, 0, 0, .28)
 }

 .grid-card .thumb {
     height: 370px;
     border-top-left-radius: 22px;
     border-top-right-radius: 22px;
     overflow: hidden
 }

 .grid-card .body {
     gap: .45rem;
     padding: .85rem .9rem 1rem
 }

 .grid-card .title {
     font-size: .86rem
 }

 .grid-card .desc {
     -webkit-line-clamp: 3;
     font-size: .65rem
 }

 .grid-card:hover .play-overlay {
     opacity: 1
 }

 .grid-card:hover .thumb img {
     transform: scale(1.04)
 }

 .grid-card:hover {
     border-color: rgba(240, 67, 130, .25)
 }

 /* CTA */
 .cta-sec {
     max-width: 1200px;
     margin: 0 auto 3rem;
     padding: 0 1.2rem
 }

 .cta-box {
     background: radial-gradient(circle at top, rgba(240, 67, 130, .25) 0%, rgba(12, 0, 17, .85) 65%);
     border: 1px solid rgba(255, 255, 255, .045);
     border-radius: 26px;
     padding: 2.6rem 2.2rem 2.2rem;
     text-align: center;
     box-shadow: 0 26px 40px rgba(0, 0, 0, .35)
 }

 .cta-icon {
     width: 56px;
     height: 56px;
     border-radius: 999px;
     border: 1px solid rgba(255, 255, 255, .25);
     display: inline-flex;
     justify-content: center;
     align-items: center;
     margin-bottom: 1.1rem
 }

 .cta-icon svg {
     width: 28px;
     height: 28px;
     fill: #fff
 }

 .cta-box h2 {
     margin: 0 0 .6rem;
     font-size: 1.6rem
 }

 .cta-box p {
     margin: 0 0 1.5rem;
     font-size: .75rem;
     color: rgba(255, 255, 255, .78)
 }

 .cta-actions {
     display: flex;
     gap: .9rem;
     flex-wrap: wrap;
     justify-content: center
 }

 .btn-primary {
     background: linear-gradient(90deg, #ff4d93 0%, #ff6f7b 100%);
     border: none;
     color: #fff;
     border-radius: 12px;
     padding: .55rem 1.35rem;
     font-size: .78rem;
     display: flex;
     align-items: center;
     gap: .4rem;
     cursor: pointer;
     box-shadow: 0 10px 25px rgba(255, 77, 147, .35)
 }

 .btn-outline {
     background: transparent;
     border: 1px solid rgba(255, 255, 255, .35);
     color: #fff;
     border-radius: 12px;
     padding: .55rem 1.35rem;
     font-size: .78rem;
     display: flex;
     align-items: center;
     gap: .4rem;
     cursor: pointer
 }

 /* Footer */
 footer {
     background: #0a0a0c;
     border-top: 1px solid rgba(255, 255, 255, .03);
     margin-top: 2.3rem
 }

 .footer-top {
     max-width: 1200px;
     margin: 0 auto;
     padding: 2.5rem 1.2rem 2.2rem;
     display: grid;
     grid-template-columns: 1.1fr .7fr .7fr .7fr;
     gap: 2.4rem
 }

 .footer-brand {
     font-weight: 600;
     margin-bottom: .6rem;
     color: #ff4d93
 }

 .footer-text {
     font-size: .7rem;
     color: rgba(255, 255, 255, .55);
     line-height: 1.4
 }

 .footer-title {
     font-size: .72rem;
     font-weight: 600;
     margin-bottom: .7rem
 }

 .footer-links a {
     display: block;
     color: rgba(255, 255, 255, .48);
     text-decoration: none;
     font-size: .67rem;
     margin-bottom: .4rem
 }

 .footer-links a:hover {
     color: #fff
 }

 .footer-social {
     display: flex;
     gap: .5rem;
     margin-bottom: .7rem
 }

 .footer-social a {
     width: 30px;
     height: 30px;
     border-radius: 9px;
     background: rgba(255, 255, 255, .02);
     border: 1px solid rgba(255, 255, 255, .05);
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: .7rem text-decoration: none;
     color: #fff;
 }

 .lang-wrap {
     display: flex;
     flex-direction: column;
     gap: .35rem
 }

 .lang-select {
     background: rgba(0, 0, 0, .25);
     border: 1px solid rgba(255, 255, 255, .06);
     border-radius: 10px;
     padding: .35rem .6rem;
     color: #fff;
     font-size: .67rem;
     outline: none;
     appearance: none;
     min-width: 145px
 }

 .footer-bottom {
     text-align: center;
     padding: .9rem 1rem 1.1rem;
     border-top: 1px solid rgba(255, 255, 255, .02);
     font-size: .65rem;
     color: rgba(255, 255, 255, .3)
 }

 /* Responsive */
 @media(max-width:1200px) {
     .footer-top {
         grid-template-columns: 1fr 1fr
     }
 }

 @media(max-width:992px) {}

 @media(max-width:850px) {
     .main-nav {
         display: none
     }

     .burger {
         display: inline-flex
     }

     .slider-btn {
         display: none
     }

     .slider-container {
         height: 600px
     }

     .slider-slot {
         width: 88%;
         max-width: 360px
     }

     .pos-left,
     .pos-right,
     .pos-far-left,
     .pos-far-right {
         opacity: 0;
         pointer-events: none
     }

     .grid {
         grid-template-columns: repeat(2, 1fr);
         padding: 0 .5rem
     }

     .page {
         padding: 0 .5rem
     }

     .cta-box {
         padding: 2.4rem 1.2rem
     }

     .cta-actions {
         flex-direction: column
     }

     .footer-top {
         grid-template-columns: 1fr
     }
 }

 @media(max-width:576px) {
     .grid {
         grid-template-columns: 1fr
     }
 }

 .brand img {
     height: 28px;
     width: auto;
     display: block;
 }

 @media(max-width:768px) {
     .brand img {
         height: 24px;
     }
 }

 /* anchor wrapper aman */
 .card-link {
     display: block;
     text-decoration: none;
     color: inherit;
     -webkit-tap-highlight-color: transparent
 }

 .card-link:focus-visible {
     outline: 2px solid rgba(255, 255, 255, .35);
     outline-offset: 4px
 }

 /* ribbon */
 .ribbon {
     position: absolute;
     top: 12px;
     left: 0;
     z-index: 6;
     font-size: .58rem;
     font-weight: 700;
     line-height: 1;
     padding: .32rem .68rem .36rem .9rem;
     color: #fff;
     border-top-right-radius: 10px;
     border-bottom-right-radius: 10px;
     box-shadow: 0 8px 18px rgba(0, 0, 0, .28);
     user-select: none
 }

 .ribbon::after {
     content: "";
     position: absolute;
     left: 0;
     top: 100%;
     border-top: 6px solid rgba(0, 0, 0, .28);
     border-left: 6px solid transparent
 }

 /* variasi warna */
 .ribbon-popular {
     background: linear-gradient(90deg, #ff4d93 0%, #f04382 100%)
 }

 .ribbon-new {
     background: linear-gradient(90deg, #ffd166 0%, #f9a826 100%)
 }

 .ribbon-trending {
     background: linear-gradient(90deg, #a78bfa 0%, #7c3aed 100%)
 }

 .ribbon-default {
     background: linear-gradient(90deg, #64748b 0%, #475569 100%)
 }

 /* jika API sudah membawa warna di inline-style */
 .ribbon-inline-color {
     /* biarkan style=background:... dari inline */
 }

 /* pastikan elemen lain tak menutupi ribbon */
 .thumb .ep-pill {
     z-index: 7
 }

 .play-overlay {
     pointer-events: none
 }

 *======GRID WRAPPER======*/ .page {
     width: 100%;
     margin: 0 auto 3rem;
     padding: 0 1.25rem
 }

 .page-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1650px;
     margin: .25rem auto 1rem
 }

 .grid {
     width: 100%;
     max-width: 1650px;
     margin: 0 auto;
     display: grid;
     gap: 16px;
     grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
 }

 /* ====== CARD (ANCHOR) ====== */
 .grid-card {
     display: flex;
     flex-direction: column;
     background: #0f172a;
     border: 1px solid rgba(255, 255, 255, .06);
     border-radius: 16px;
     overflow: hidden;
     text-decoration: none;
     color: inherit;
     box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
     transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
 }

 .grid-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 18px 36px rgba(0, 0, 0, .28);
     border-color: rgba(240, 67, 130, .25)
 }

 /* cover konsisten */
 .grid-card .thumb {
     position: relative;
     aspect-ratio: 2/3;
     overflow: hidden
 }

 .grid-card .thumb img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .25s ease
 }

 .grid-card:hover .thumb img {
     transform: scale(1.04)
 }

 /* overlay & ep tag */
 .grid-card .play-overlay {
     position: absolute;
     inset: 0;
     display: grid;
     place-items: center;
     opacity: 0;
     transition: opacity .18s ease;
     background: radial-gradient(transparent 42%, rgba(0, 0, 0, .55))
 }

 .grid-card:hover .play-overlay {
     opacity: 1
 }

 .grid-card .ep-pill {
     position: absolute;
     right: 10px;
     /* bottom: 10px; */
     padding: 6px 10px;
     border-radius: 10px;
     font-size: 12px;
     line-height: 1;
     background: rgba(17, 24, 39, .85);
     color: #fff;
     z-index: 2
 }

 /* body */
 .grid-card .body {
     padding: 12px 12px 14px;
     display: flex;
     flex-direction: column;
     gap: 6px
 }

 .grid-card .title {
     font-weight: 700;
     color: #fff;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis
 }

 .grid-card .desc {
     color: #a3a3a3;
     font-size: 13px;
     line-height: 1.35;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden
 }

 .grid-card .tags {
     display: flex;
     flex-wrap: wrap;
     gap: 6px;
     margin-top: 2px
 }

 .grid-card .tag {
     font-size: 11px;
     color: #e5e7eb;
     background: #1f2937;
     border-radius: 999px;
     padding: 4px 8px
 }

 .grid-card .foot {
     margin-top: 4px;
     font-size: 12px;
     color: #cbd5e1
 }

 /* ribbon opsional */
 .grid-card .ribbon {
     position: absolute;
     top: 10px;
     left: 0;
     z-index: 3;
     font-size: .62rem;
     font-weight: 700;
     color: #fff;
     line-height: 1;
     padding: .36rem .7rem .4rem .9rem;
     border-top-right-radius: 10px;
     border-bottom-right-radius: 10px;
     background: linear-gradient(90deg, #ff4d93 0%, #f04382 100%);
     /* default */
     box-shadow: 0 8px 18px rgba(0, 0, 0, .28)
 }

 /* responsive touch */
 @media(max-width:850px) {
     .grid {
         grid-template-columns: repeat(2, 1fr);
         padding: 0 .5rem
     }
 }

 @media(max-width:576px) {
     .grid {
         grid-template-columns: 1fr
     }
 }

 .page.dramabox-populer .grid {
     width: 100%;
     max-width: 1650px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
     gap: 1rem;
 }

 .page.dramabox-populer .grid-card {
     position: relative;
     display: block;
     background: #0f172a;
     border: 1px solid rgba(255, 255, 255, .015);
     border-radius: 14px;
     overflow: hidden;
     text-decoration: none;
     box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
     transition: transform .2s, box-shadow .2s, border-color .2s;
 }

 .page.dramabox-populer .grid-card:hover {
     border-color: rgba(240, 67, 130, .25);
     box-shadow: 0 18px 40px rgba(0, 0, 0, .34);
 }

 .page.dramabox-populer .grid-card .thumb {
     position: relative;
     height: 370px;
     /* match desain referensi */
     border-top-left-radius: 22px;
     border-top-right-radius: 22px;
     overflow: hidden;
 }

 .page.dramabox-populer .grid-card .thumb img {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .28s ease;
 }

 .page.dramabox-populer .grid-card:hover .thumb img {
     transform: scale(1.04);
 }

 /* --- EP PILL: paksa selalu kecil & pojok kanan-atas --- */
 .page.dramabox-populer .grid-card .thumb .ep-pill {
     position: absolute;
     top: 12px;
     right: 12px;
     z-index: 3;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 6px 10px;
     height: auto;
     width: auto;
     white-space: nowrap;
     border-radius: 999px;
     background: rgba(19, 17, 16, .9);
     border: 1px solid rgba(255, 255, 255, .06);
     font-size: 12px;
     line-height: 1;
     color: #fff;
 }

 /* overlay play */
 .page.dramabox-populer .grid-card .play-overlay {
     pointer-events: none;
     position: absolute;
     inset: 0;
     display: grid;
     place-items: center;
     opacity: 0;
     transition: opacity .2s;
     background: radial-gradient(transparent 40%, rgba(0, 0, 0, .35));
     z-index: 2;
 }

 .page.dramabox-populer .grid-card:hover .play-overlay {
     opacity: 1;
 }

 .page.dramabox-populer .grid-card .play-circle {
     width: 48px;
     height: 48px;
     border-radius: 999px;
     display: grid;
     place-items: center;
     background: rgba(255, 255, 255, .9);
     box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
 }

 /* body */
 .page.dramabox-populer .grid-card .body {
     padding: .85rem .9rem 1rem;
 }

 .page.dramabox-populer .grid-card .title {
     font-size: .86rem;
     font-weight: 700;
     color: #fff;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .page.dramabox-populer .grid-card .desc {
     margin-top: 6px;
     color: #a3a3a3;
     font-size: .8rem;
     line-height: 1.35;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .page.dramabox-populer .grid-card .tags {
     margin-top: 8px;
     display: flex;
     gap: 6px;
     flex-wrap: wrap;
 }

 .page.dramabox-populer .grid-card .tag {
     font-size: 11px;
     color: #e5e7eb;
     background: #1f2937;
     border-radius: 999px;
     padding: 4px 8px;
 }

 .page.dramabox-populer .grid-card .foot {
     margin-top: 8px;
     font-size: 12px;
     color: #cbd5e1;
 }

 /* ribbon opsional (kalau suatu saat dipakai) */
 .page.dramabox-populer .grid-card .ribbon {
     position: absolute;
     top: 12px;
     left: 12px;
     z-index: 4;
     padding: 6px 10px;
     line-height: 1;
     border-radius: 999px;
     font-weight: 600;
     font-size: 12px;
     color: #fff;
     background: #4D65ED;
 }

 /* responsive kecil */
 @media(max-width:576px) {
     .page.dramabox-populer .grid {
         grid-template-columns: 1fr;
     }
 }

 .topbar-inner {
     max-width: 1180px;
     margin: 0 auto;
     padding: .65rem 1.1rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 1rem;
 }

 .brand {
     font-weight: 600;
     font-size: 1.25rem
 }

 .brand span {
     color: var(--accent)
 }

 .main-nav {
     display: flex;
     gap: 1rem;
     align-items: center
 }

 .main-nav a {
     color: rgba(255, 255, 255, .75);
     text-decoration: none;
     font-size: .78rem
 }

 .main-nav a:hover,
 .main-nav a.active {
     color: var(--accent)
 }

 .right-icons {
     display: flex;
     gap: .6rem;
     align-items: center
 }

 .icon-btn {
     width: 32px;
     height: 32px;
     background: transparent;
     border: none;
     display: inline-flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     color: rgba(255, 255, 255, .85)
 }

 .icon-btn svg {
     width: 21px;
     height: 21px;
     stroke: currentColor;
     stroke-width: 1.7;
     fill: none
 }

 .burger {
     display: none
 }

 /* search popup global */
 .search-pop {
     position: fixed;
     inset: 0;
     display: none;
     justify-content: center;
     align-items: center;
     background: rgba(7, 7, 9, .45);
     backdrop-filter: blur(8px);
     z-index: 1100
 }

 .search-pop.show {
     display: flex
 }

 .search-box {
     width: min(92%, 700px);
     background: rgba(12, 12, 14, .98);
     border: 1px solid rgba(255, 255, 255, .04);
     border-radius: 1.3rem;
     padding: .85rem 1.1rem;
     display: flex;
     gap: .7rem;
     align-items: center;
     box-shadow: 0 16px 40px rgba(0, 0, 0, .35)
 }

 .search-box input {
     flex: 1;
     background: transparent;
     border: none;
     outline: none;
     color: #fff;
     font-size: .8rem
 }

 .close-search {
     border: none;
     background: transparent;
     color: rgba(255, 255, 255, .55);
     font-size: 1.3rem;
     cursor: pointer
 }

 /* mobile menu */
 .mobile-panel {
     position: fixed;
     inset: 0;
     background: rgba(6, 6, 8, .45);
     backdrop-filter: blur(12px);
     z-index: 1050;
     display: none
 }

 .mobile-panel.show {
     display: block
 }

 .mobile-panel .sheet {
     background: rgba(10, 10, 13, .96);
     height: 100%;
     width: 100%;
     max-width: 420px;
     margin-left: auto;
     padding: 1rem 1.2rem 2rem;
     display: flex;
     flex-direction: column;
     gap: 1rem;
     box-shadow: -12px 0 40px rgba(0, 0, 0, .25)
 }

 .m-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-bottom: 1px solid rgba(255, 255, 255, .03);
     padding-bottom: .6rem
 }

 .close-sheet {
     width: 34px;
     height: 34px;
     border-radius: .7rem;
     border: 1px solid rgba(255, 255, 255, .085);
     background: rgba(255, 255, 255, .02);
     color: #fff;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 1.25rem;
     cursor: pointer
 }

 .m-list {
     display: flex;
     flex-direction: column;
     gap: .6rem
 }

 .m-item {
     display: flex;
     gap: .6rem;
     align-items: center;
     color: rgba(255, 255, 255, .85);
     text-decoration: none;
     font-size: .85rem;
     padding: .55rem .35rem;
     border-radius: .5rem
 }

 .m-item:hover {
     background: rgba(240, 67, 130, .08)
 }

 /* PAGE */
 .search-wrap {
     max-width: 1180px;
     margin: 1.6rem auto 2.3rem;
     padding: 0 1.1rem;
 }

 .page-title {
     font-size: 1.25rem;
     font-weight: 600;
     margin-bottom: .35rem;
 }

 .page-sub {
     font-size: .64rem;
     color: var(--muted);
     margin-bottom: 1rem;
 }

 /* local search form */
 .local-search {
     background: rgba(255, 255, 255, .01);
     border: 1px solid rgba(255, 255, 255, .015);
     border-radius: 14px;
     padding: .45rem .6rem .5rem;
     display: flex;
     gap: .5rem;
     align-items: center;
     margin-bottom: 1.4rem;
 }

 .local-search input {
     flex: 1;
     background: transparent;
     border: none;
     outline: none;
     color: #fff;
     font-size: .7rem
 }

 .local-search button {
     background: linear-gradient(90deg, #f04382 0%, #ff6f7b 100%);
     border: none;
     border-radius: 10px;
     color: #fff;
     font-size: .68rem;
     padding: .35rem .7rem .4rem;
     cursor: pointer
 }

 /* grid results */
 .results-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
     gap: 1rem;
 }

 /* card portrait (sama) */
 .tall-card {
     background: var(--surface);
     border: 1px solid rgba(255, 255, 255, .03);
     border-radius: 18px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     min-height: 380px;
     transition: .15s ease-out;
     position: relative;
 }

 .tall-top {
     position: relative;
     height: 230px;
     overflow: hidden;
     border-top-left-radius: 18px;
     border-top-right-radius: 18px;
 }

 .tall-top img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .28s
 }

 .tall-card:hover .tall-top img {
     transform: scale(1.05);
 }

 .tall-badge {
     position: absolute;
     top: .7rem;
     right: .7rem;
     background: rgba(14, 14, 18, .85);
     border-radius: 999px;
     font-size: .6rem;
     padding: .35rem .7rem .4rem;
 }

 .tall-bottom {
     padding: 1rem 1rem 1rem;
     display: flex;
     flex-direction: column;
     gap: .45rem;
     flex: 1 1 auto;
     background: linear-gradient(180deg, rgba(255, 255, 255, .01) 0%, rgba(0, 0, 0, .1) 100%);
 }

 .tall-title {
     font-size: .78rem;
     font-weight: 600;
 }

 .tall-desc {
     font-size: .6rem;
     color: rgba(255, 255, 255, .45);
     line-height: 1.35;
 }

 .tall-tags {
     display: flex;
     gap: .35rem;
     flex-wrap: wrap;
 }

 .tag-pill {
     background: rgba(255, 255, 255, .02);
     border: 1px solid rgba(255, 255, 255, .03);
     border-radius: 999px;
     padding: .2rem .6rem .25rem;
     font-size: .53rem;
     color: rgba(255, 255, 255, .7);
 }

 .tall-views {
     margin-top: auto;
     font-size: .58rem;
     color: rgba(255, 255, 255, .27);
     display: flex;
     gap: .26rem;
     align-items: center;
 }

 .tall-card:hover {
     transform: translateY(-4px);
     border: 1px solid rgba(240, 67, 130, .35);
 }

 /* pagination simple */
 .pager {
     display: flex;
     gap: .6rem;
     align-items: center;
     justify-content: flex-end;
     margin-top: 1.4rem;
 }

 .pager-btn {
     background: rgba(255, 255, 255, .01);
     border: 1px solid rgba(255, 255, 255, .035);
     border-radius: 999px;
     color: #fff;
     font-size: .65rem;
     padding: .3rem .9rem;
     cursor: pointer;
     text-decoration: none;
 }

 .pager-btn[disabled] {
     opacity: .35;
     cursor: not-allowed;
 }

 .pager-current {
     background: rgba(240, 67, 130, .15);
     border: 1px solid rgba(240, 67, 130, .45);
     border-radius: 999px;
     padding: .32rem .75rem;
     font-size: .62rem;
 }

 /* FOOTER */
 footer {
     background: #0f0f12;
     border-top: 1px solid rgba(255, 255, 255, .03);
     padding: 2.1rem 0 1.1rem;
     font-size: .65rem;
     color: rgba(255, 255, 255, .35)
 }

 .footer-inner {
     max-width: 1180px;
     margin: 0 auto;
     padding: 0 1.1rem;
     display: flex;
     gap: 2.5rem;
     flex-wrap: wrap
 }

 .footer-title {
     font-weight: 600;
     color: #fff;
     margin-bottom: .5rem;
     font-size: .7rem
 }

 .footer-links a {
     display: block;
     color: inherit;
     text-decoration: none;
     margin-bottom: .35rem
 }

 .lang-select {
     background: rgba(255, 255, 255, .03);
     border: 1px solid rgba(255, 255, 255, .03);
     border-radius: 8px;
     color: #fff;
     padding: .3rem .4rem;
     font-size: .6rem
 }

 .footer-bottom {
     text-align: center;
     margin-top: 1.5rem;
     font-size: .6rem;
     color: rgba(255, 255, 255, .23)
 }

 @media(max-width:850px) {
     .main-nav {
         display: none
     }

     .burger {
         display: inline-flex
     }

     .results-grid {
         grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
     }

     .pager {
         justify-content: center;
     }
 }

 .rank-wrap {
     max-width: 1180px;
     margin: 1.6rem auto 2.2rem;
     padding: 0 1.1rem;
 }

 .page-title {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: .25rem;
 }

 .page-sub {
     color: var(--muted);
     font-size: .64rem;
     margin-bottom: 1.1rem;
 }

 .tab-row {
     display: flex;
     gap: .6rem;
     margin-bottom: 1.2rem;
     background: rgba(255, 255, 255, .008);
     border: 1px solid rgba(255, 255, 255, .02);
     border-radius: 999px;
     padding: .35rem;
 }

 .tab-btn {
     background: transparent;
     border: none;
     color: rgba(255, 255, 255, .55);
     font-size: .65rem;
     padding: .4rem 1rem .45rem;
     border-radius: 999px;
     cursor: pointer;
     transition: .12s
 }

 .tab-btn.active {
     background: linear-gradient(90deg, #f04382 0%, #ff6f7b 100%);
     color: #fff;
     box-shadow: 0 8px 25px rgba(240, 67, 130, .35)
 }

 /* list rank */
 .rank-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
     gap: 1rem;
 }

 /* card style sesuai yg kamu suka */
 .tall-card {
     background: var(--surface);
     border: 1px solid rgba(255, 255, 255, .03);
     border-radius: 18px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     min-height: 380px;
     transition: .15s ease-out;
     position: relative;
 }

 .tall-top {
     position: relative;
     height: 230px;
     overflow: hidden;
     border-top-left-radius: 18px;
     border-top-right-radius: 18px;
 }

 .tall-top img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform .28s
 }

 .tall-card:hover .tall-top img {
     transform: scale(1.05);
 }

 .tall-badge {
     position: absolute;
     top: .7rem;
     right: .7rem;
     background: rgba(14, 14, 18, .85);
     border-radius: 999px;
     font-size: .6rem;
     padding: .35rem .7rem .4rem;
 }

 .tall-bottom {
     padding: 1rem 1rem 1rem;
     display: flex;
     flex-direction: column;
     gap: .45rem;
     flex: 1 1 auto;
     background: linear-gradient(180deg, rgba(255, 255, 255, .01) 0%, rgba(0, 0, 0, .1) 100%);
 }

 .tall-title {
     font-size: .78rem;
     font-weight: 600;
 }

 .tall-desc {
     font-size: .6rem;
     color: rgba(255, 255, 255, .45);
     line-height: 1.35;
 }

 .tall-tags {
     display: flex;
     gap: .35rem;
     flex-wrap: wrap;
 }

 .tag-pill {
     background: rgba(255, 255, 255, .02);
     border: 1px solid rgba(255, 255, 255, .03);
     border-radius: 999px;
     padding: .2rem .6rem .25rem;
     font-size: .53rem;
     color: rgba(255, 255, 255, .7);
 }

 .tall-views {
     margin-top: auto;
     font-size: .58rem;
     color: rgba(255, 255, 255, .27);
     display: flex;
     gap: .26rem;
     align-items: center;
 }

 .tall-card:hover {
     transform: translateY(-4px);
     border: 1px solid rgba(240, 67, 130, .35);
 }

 /* rank number circle */
 .rank-num {
     position: absolute;
     top: .7rem;
     left: .7rem;
     width: 32px;
     height: 32px;
     border-radius: 999px;
     background: rgba(5, 5, 6, .6);
     border: 1px solid rgba(255, 255, 255, .05);
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: .59rem;
     font-weight: 600;
 }

 /* FOOTER */
 footer {
     background: #0f0f12;
     border-top: 1px solid rgba(255, 255, 255, .03);
     padding: 2.1rem 0 1.1rem;
     font-size: .65rem;
     color: rgba(255, 255, 255, .35)
 }

 .footer-inner {
     max-width: 1180px;
     margin: 0 auto;
     padding: 0 1.1rem;
     display: flex;
     gap: 2.5rem;
     flex-wrap: wrap
 }

 .footer-title {
     font-weight: 600;
     color: #fff;
     margin-bottom: .5rem;
     font-size: .7rem
 }

 .footer-links a {
     display: block;
     color: inherit;
     text-decoration: none;
     margin-bottom: .35rem
 }

 .lang-select {
     background: rgba(255, 255, 255, .03);
     border: 1px solid rgba(255, 255, 255, .03);
     border-radius: 8px;
     color: #fff;
     padding: .3rem .4rem;
     font-size: .6rem
 }

 .footer-bottom {
     text-align: center;
     margin-top: 1.5rem;
     font-size: .6rem;
     color: rgba(255, 255, 255, .23)
 }

 @media(max-width:850px) {
     .main-nav {
         display: none
     }

     .burger {
         display: inline-flex
     }

     .rank-grid {
         grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
     }
 }

 /* ========== HERO DETAIL ========== */
 .detail-hero {
     max-width: 1200px;
     margin: 1.5rem auto 2rem;
     padding: 0 1.2rem;
     display: grid;
     grid-template-columns: 260px 1fr;
     gap: 1.3rem;
 }

 .poster-wrap {
     background: rgba(0, 0, 0, .4);
     border: 1px solid rgba(255, 255, 255, .02);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 20px 30px rgba(0, 0, 0, .4);
 }

 .poster-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     max-height: 405px;
     display: block;
 }

 .detail-body {
     display: flex;
     flex-direction: column;
     gap: .55rem;
 }

 .tag-row {
     display: flex;
     gap: .4rem;
     flex-wrap: wrap;
 }

 .tag-pill {
     background: rgba(255, 255, 255, .01);
     border: 1px solid rgba(255, 255, 255, .035);
     border-radius: 999px;
     padding: .18rem .55rem .24rem;
     font-size: .58rem;
 }

 .detail-title {
     font-size: 1.55rem;
     font-weight: 600;
     line-height: 1.1;
 }

 .detail-meta {
     display: flex;
     gap: .7rem;
     flex-wrap: wrap;
     font-size: .6rem;
     color: rgba(255, 255, 255, .48);
 }

 .detail-desc {
     font-size: .68rem;
     color: rgba(255, 255, 255, .7);
     line-height: 1.5;
     max-width: 620px;
 }

 .detail-actions {
     display: flex;
     gap: .6rem;
     flex-wrap: wrap;
     margin-top: .4rem;
 }

 .btn-watch {
     background: linear-gradient(90deg, #f04382 0%, #ff6f7b 100%);
     border: none;
     color: #fff;
     border-radius: 11px;
     padding: .5rem 1.1rem .55rem;
     font-size: .7rem;
     display: flex;
     gap: .35rem;
     align-items: center;
     cursor: pointer;
     box-shadow: 0 15px 30px rgba(240, 67, 130, .35);
 }

 .btn-alt {
     background: transparent;
     border: 1px solid rgba(255, 255, 255, .12);
     color: #fff;
     border-radius: 11px;
     padding: .5rem 1.1rem .55rem;
     font-size: .7rem;
     cursor: pointer;
 }

 /* ========== CONTENT ========== */
 .detail-content {
     max-width: 1200px;
     margin: 0 auto 2.6rem;
     padding: 0 1.2rem;
     display: flex;
     flex-direction: column;
     gap: 1.4rem;
 }

 .section-title {
     font-size: .78rem;
     font-weight: 600;
     margin-bottom: .65rem;
 }

 /* EPISODES BOX (vertikal scroll) */
 .episodes-box {
     background: rgba(4, 4, 6, .25);
     border: 1px solid rgba(255, 255, 255, .02);
     border-radius: 16px;
     padding: 1rem .9rem 1rem;
 }

 .episode-list {
     max-height: 360px;
     overflow-y: auto;
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
     gap: .55rem;
     scrollbar-width: thin;
 }

 .episode-list::-webkit-scrollbar {
     width: 5px;
 }

 .episode-list::-webkit-scrollbar-thumb {
     background: rgba(255, 255, 255, .08);
     border-radius: 999px;
 }
.episode-item {
    background: rgba(255, 255, 255, .012);
    border: 1px solid rgba(255, 255, 255, .015);
    border-radius: 12px;
    padding: .4rem .5rem .5rem;
    min-height: 62px;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    cursor: pointer;
    transition: .1s;
}

.episode-item strong {
    font-size: .62rem;
}

.episode-item small {
    font-size: .53rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.25;
}

.episode-item:hover {
    border-color: rgba(240, 67, 130, .4);
    background: rgba(240, 67, 130, .06);
}

.episode-item.active {
    border-color: rgba(240, 67, 130, .85);
    background: rgba(240, 67, 130, .14);
}
/* ===== NAV: perbaikan struktur UL/LI + dropdown ===== */
.topbar .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar .main-nav>ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar .main-nav>ul>li {
    position: relative;
    /* anchor untuk dropdown */
}

.topbar .main-nav a {
    display: inline-block;
    padding: .45rem .6rem;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: .78rem;
    border-radius: .5rem;
    transition: color .2s, background .2s;
}

.topbar .main-nav a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, .04);
}

/* aktif: support .active di <li> atau di <a> */
.topbar .main-nav li.active>a,
.topbar .main-nav a.active {
    color: var(--accent);
}

/* --- Submenu --- */
.topbar .main-nav .submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    background: rgba(12, 12, 14, .98);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: .5rem;
    display: none;
    /* hidden default */
    flex-direction: column;
    gap: .15rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    z-index: 1000;
}

/* tampil saat hover/focus dalam */
.topbar .main-nav li:hover>.submenu,
.topbar .main-nav li:focus-within>.submenu {
    display: flex;
}

/* link di submenu */
.topbar .main-nav .submenu a {
    display: block;
    padding: .5rem .65rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .85);
    border-radius: .45rem;
}

.topbar .main-nav .submenu a:hover {
    background: rgba(240, 67, 130, .08);
    color: #fff;
}

/* jaga dropdown tetap di viewport kanan */
.topbar .main-nav>ul>li:last-child .submenu {
    right: 0;
    left: auto;
}

@media (max-width:850px) {

    /* biarkan menu utama tetap disembunyikan (kamu sudah punya mobile sheet) */
    .topbar .main-nav {
        display: none;
    }
}
/* --- Submenu: hilangkan gap hover --- */
.topbar .main-nav .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    /* <— dulu calc(100% + 10px) */
    min-width: 220px;
    background: rgba(12, 12, 14, .98);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    padding: .5rem;
    display: none;
    flex-direction: column;
    gap: .15rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    z-index: 1000;
    margin-top: 8px;
    /* jarak visual */
}

/* jembatan hover agar tak “putus” saat gerak mouse */
.topbar .main-nav .submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    top: -8px;
}

/* tampil saat hover atau saat .open dari JS */
.topbar .main-nav li:hover>.submenu,
.topbar .main-nav li.open>.submenu {
    display: flex;
}

/* pointer untuk menu yang punya dropdown */
.topbar .main-nav>ul>li:has(.submenu)>a {
    cursor: pointer;
}

/* tetap jaga kanan */
.topbar .main-nav>ul>li:last-child .submenu {
    right: 0;
    left: auto;
}
/* ============================
   FOOTER NAV WIDGET – DRACIN STYLE
   ============================ */

/* Bungkus umum footer (opsional, sesuaikan dengan class footer kamu) */
.site-footer,
.footer-area,
.footer-widgets {
    background: #020617;
    /* hampir hitam */
    color: #e5e7eb;
}

/* Widget container */
.widget.nav-widget {
    margin-bottom: 32px;
    padding: 16px 18px;
    border-radius: 12px;
    background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.06), transparent 55%);
    border: 1px solid rgba(148, 163, 184, 0.15);
}

/* Title widget */
.widget.nav-widget .widget-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

/* Reset list */
.widget.nav-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item menu */
.widget.nav-widget ul li {
    margin: 2px 0;
}

/* Link menu */
.widget.nav-widget ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: #d1d5db;
    text-decoration: none;
    position: relative;
    transition: all .18s ease-out;
}

/* Bullet kecil di kiri */
.widget.nav-widget ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(148, 163, 184, .6);
    transform: translateY(1px);
    transition: all .18s ease-out;
}

/* Text span */
.widget.nav-widget .menu-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover state */
.widget.nav-widget ul li a:hover {
    color: #f97316;
    /* oranye lembut */
    padding-left: 4px;
}

/* Hover bullet */
.widget.nav-widget ul li a:hover::before {
    background: #f97316;
    border-color: #f97316;
}

/* Current / active item */
.widget.nav-widget ul li.current>a,
.widget.nav-widget ul li.active>a {
    color: #fbbf24;
    font-weight: 600;
}

/* Current bullet */
.widget.nav-widget ul li.current>a::before,
.widget.nav-widget ul li.active>a::before {
    background: #fbbf24;
    border-color: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
}

/* Spasi sedikit antar widget di mobile */
@media (max-width: 767.98px) {
    .widget.nav-widget {
        margin-bottom: 24px;
        padding: 14px 16px;
    }

    .widget.nav-widget .widget-title {
        font-size: 0.82rem;
    }

    .widget.nav-widget ul li a {
        font-size: 0.85rem;
    }
}
/* ===============================
   DRACIN FOOTER – LINK SECTION
   =============================== */

footer {
    background: #020617;
    color: #e5e7eb;
    padding: 50px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Top area layout */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: flex-start;
    padding: 0 20px;
}

/* Brand/logo */
.footer-brand img {
    width: 140px;
    max-width: 100%;
    filter: brightness(1.1);
}

/* About text */
.footer-text {
    margin-top: 12px;
    font-size: .92rem;
    line-height: 1.55;
    color: #94a3b8;
}

/* Footer section title */
.footer-title {
    font-size: .95rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Links list */
.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

/* Link item */
.footer-links ul li a {
    font-size: .9rem;
    color: #cbd5e1;
    text-decoration: none;
    position: relative;
    padding-left: 0;
    transition: all .18s ease-in-out;
}

/* Hover underline animation */
.footer-links ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #f97316;
    /* warna oranye elegan */
    transition: width .2s ease-in-out;
}

.footer-links ul li a:hover {
    color: #f97316;
    padding-left: 2px;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

/* Social icons */
.footer-social a {
    margin-right: 12px;
    font-size: 1.1rem;
    color: #cbd5e1;
    transition: all .15s ease;
}

.footer-social a:hover {
    color: #fbbf24;
    transform: translateY(-2px);
}

/* Language switcher wrapper */
.lang-wrap {
    margin-top: 18px;
}

/* Copyright area */
.footer-bottom {
    margin-top: 40px;
    padding-top: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: .85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .footer-top {
        gap: 30px;
        grid-template-columns: 1fr;
        text-align: left;
        padding: 0 15px;
    }

    .footer-bottom {
        padding-bottom: 10px;
    }
}
/* ===========================
   FOOTER SOCIAL + LANGUAGE
   =========================== */

/* Container social */
.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

/* Social icon */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: all .18s ease-in-out;
}

.footer-social a:hover {
    background: rgba(249, 115, 22, 0.12);
    /* oranye tipis */
    border-color: rgba(249, 115, 22, .4);
    color: #f97316;
    transform: translateY(-2px);
}

/* Language wrapper */
.lang-wrap {
    margin-top: 20px;
}

/* Label */
.lang-wrap label {
    display: block;
    margin-bottom: 4px;
    font-size: .65rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Select */
.lang-select {
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, .3);
    color: #e2e8f0;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: .9rem;
    appearance: none;
    outline: none;
    transition: all .2s ease;
}

.lang-select:hover {
    border-color: #f97316;
}

.lang-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, .25);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .footer-social {
        justify-content: flex-start;
        gap: 12px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}
/* ===========================
   FOOTER SOCIAL + LANGUAGE
   =========================== */

/* Container social */
.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

/* Social icon */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 1.1rem;
    transition: all .18s ease-in-out;
}

.footer-social a:hover {
    background: rgba(249, 115, 22, 0.12);
    /* oranye tipis */
    border-color: rgba(249, 115, 22, .4);
    color: #f97316;
    transform: translateY(-2px);
}

/* Language wrapper */
.lang-wrap {
    margin-top: 20px;
}

/* Label */
.lang-wrap label {
    display: block;
    margin-bottom: 4px;
    font-size: .65rem;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Select */
.lang-select {
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, .3);
    color: #e2e8f0;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: .9rem;
    appearance: none;
    outline: none;
    transition: all .2s ease;
}

.lang-select:hover {
    border-color: #f97316;
}

.lang-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 2px rgba(249, 115, 22, .25);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .footer-social {
        justify-content: flex-start;
        gap: 12px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}
/* ============================
   DRACIN – HALAMAN PAGE BIASA
   (About / Privacy / Terms)
   ============================ */

.dracin-page {
    padding: 60px 0 80px;
    background: radial-gradient(circle at top, #151420 0%, #050508 60%, #020308 100%);
}

.dracin-page-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* HERO ATAS JUDUL PAGE */
.dracin-page-hero {
    margin-bottom: 24px;
}

.dracin-page-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(240, 67, 130, 0.08);
    border: 1px solid rgba(240, 67, 130, 0.25);
    border-radius: 999px;
    padding: .25rem .6rem .3rem;
    font-size: .58rem;
    color: rgba(255,255,255,.85);
    margin-bottom: .6rem;
}

.dracin-page-title {
    margin: 0 0 .4rem;
    font-size: 1.7rem;
    font-weight: 600;
}

.dracin-page-subtitle {
    margin: 0;
    max-width: 640px;
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}

/* BODY & CARD */
.dracin-page-body {
    display: flex;
    justify-content: center;
}

.dracin-page-card {
    width: 100%;
    max-width: 850px;
    background: rgba(8, 8, 12, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    padding: 1.3rem 1.4rem 1.5rem;
    box-shadow:
        0 22px 45px rgba(15, 23, 42, 0.55),
        0 0 0 1px rgba(15, 23, 42, 0.6);
}

/* STYLE KONTEN DI DALAM CKEDITOR */
.dracin-page-card .ck-inner {
    font-size: .82rem;
    line-height: 1.7;
    color: rgba(241, 245, 249, 0.9);
}

/* Headings di dalam konten */
.dracin-page-card .ck-inner h1,
.dracin-page-card .ck-inner h2,
.dracin-page-card .ck-inner h3,
.dracin-page-card .ck-inner h4 {
    margin-top: 0;
    margin-bottom: .6rem;
    font-weight: 600;
}

.dracin-page-card .ck-inner h1 { font-size: 1.4rem; }
.dracin-page-card .ck-inner h2 { font-size: 1.25rem; }
.dracin-page-card .ck-inner h3 { font-size: 1.05rem; }
.dracin-page-card .ck-inner h4 { font-size: .95rem; }

/* Paragraf & list */
.dracin-page-card .ck-inner p {
    margin: 0 0 .75rem;
}

.dracin-page-card .ck-inner ul,
.dracin-page-card .ck-inner ol {
    padding-left: 1.1rem;
    margin: 0 0 .75rem;
}

.dracin-page-card .ck-inner li {
    margin-bottom: .3rem;
}

/* Link di konten */
.dracin-page-card .ck-inner a {
    color: #f97316;
    text-decoration: none;
    border-bottom: 1px dashed rgba(249, 115, 22, 0.6);
    transition: .18s;
}

.dracin-page-card .ck-inner a:hover {
    color: #fed7aa;
    border-bottom-color: transparent;
}

/* Blockquote */
.dracin-page-card .ck-inner blockquote {
    margin: 0 0 .9rem;
    padding: .6rem .9rem;
    border-left: 3px solid rgba(248, 250, 252, 0.18);
    background: rgba(15, 23, 42, 0.7);
    border-radius: 8px;
    font-size: .78rem;
    color: rgba(226, 232, 240, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
    .dracin-page {
        padding: 40px 0 60px;
    }

    .dracin-page-inner {
        padding: 0 .9rem;
    }

    .dracin-page-title {
        font-size: 1.4rem;
    }

    .dracin-page-card {
        padding: 1.1rem 1.1rem 1.3rem;
        border-radius: 14px;
    }

    .dracin-page-card .ck-inner {
        font-size: .78rem;
    }
}
/* ==============================
   CONTACT FORM DI DRACIN PAGE
   ============================== */

/* Spasi antar blok konten di CK */
.dracin-page-card .ck-inner>div {
    margin-bottom: 1rem;
}

/* MAP / IFRAME */
.dracin-page-card .ck-inner iframe {
    width: 100% !important;
    max-width: 100%;
    border: 0;
    border-radius: 14px;
    display: block;
}

/* Bungkus form */
.dracin-page-card .contact-form {
    margin-top: .75rem;
}

/* Row & column fix */
.dracin-page-card .contact-form-row.row {
    margin-left: -8px;
    margin-right: -8px;
}

.dracin-page-card .contact-form-row .contact-column-6,
.dracin-page-card .contact-form-row .contact-column-12 {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 4px;
}

/* Group input */
.dracin-page-card .contact-form .input-group {
    position: relative;
    background: rgba(15, 23, 42, .96);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .45);
    padding: .55rem .7rem .6rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .4rem .55rem;
}

/* Jarak antar group */
.dracin-page-card .contact-form .mt-30 {
    margin-top: .7rem !important;
}

/* Label */
.dracin-page-card .contact-form .form-label {
    flex: 1 0 100%;
    margin: 0;
    font-size: .72rem;
    font-weight: 500;
    color: rgba(226, 232, 240, .88);
}

/* Icon kecil di kiri */
.dracin-page-card .contact-form .icon,
.dracin-page-card .contact-form .textarea-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(15, 23, 42, .9);
    border: 1px solid rgba(148, 163, 184, .3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    color: #9ca3af;
}

/* Input & textarea */
.dracin-page-card .contact-form input[type="text"],
.dracin-page-card .contact-form input[type="email"],
.dracin-page-card .contact-form input[type="tel"],
.dracin-page-card .contact-form input[type="number"],
.dracin-page-card .contact-form input[type="password"],
.dracin-page-card .contact-form textarea {
    flex: 1 1 auto;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #e5e7eb;
    font-size: .82rem;
    padding: .15rem 0;
}

.dracin-page-card .contact-form input::placeholder,
.dracin-page-card .contact-form textarea::placeholder {
    color: rgba(148, 163, 184, .75);
}

/* Textarea tinggi sedikit */
.dracin-page-card .contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox & terms */
.dracin-page-card .contact-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .75rem;
    color: rgba(226, 232, 240, .8);
}

.dracin-page-card .contact-form .form-check-input {
    margin-top: .1rem;
}

.dracin-page-card .contact-form .form-check-label a {
    color: #f97316;
    text-decoration: underline;
}

/* Tombol submit */
.dracin-page-card .contact-form .main-btn.btn-filled,
.dracin-page-card .contact-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .55rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #f97316, #fb7185);
    color: #0b1120;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .12s ease-out, box-shadow .12s ease-out, opacity .12s;
}

.dracin-page-card .contact-form .main-btn.btn-filled:hover,
.dracin-page-card .contact-form button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(248, 113, 113, .35);
}

/* Pesan sukses / error */
.dracin-page-card .contact-message {
    font-size: .75rem;
    padding: .5rem .7rem;
    border-radius: 10px;
    margin-top: .5rem;
}

.dracin-page-card .contact-success-message {
    background: rgba(22, 163, 74, .1);
    border: 1px solid rgba(22, 163, 74, .4);
    color: #bbf7d0;
}

.dracin-page-card .contact-error-message {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .45);
    color: #fecaca;
}

/* Mobile */
@media (max-width: 768px) {
    .dracin-page-card .contact-form-row.row {
        margin-left: 0;
        margin-right: 0;
    }

    .dracin-page-card .contact-form-row .contact-column-6,
    .dracin-page-card .contact-form-row .contact-column-12 {
        padding-left: 0;
        padding-right: 0;
    }
}