.footer-divider {
    width: 180px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 15px auto;
}
.footer-buttons {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-block;
    padding: 5px 8px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    border: 1px solid #374151;
    border-radius: 4px;
    font-size: 11px;
    transition: all .2s ease;
}

.footer-btn:hover {
    background: #1f2937;
    border-color: #4b5563;
}
.download-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-bottom:20px;

    color:#ffd54f;
    font-size:18px;
    font-weight:700;
}

.download-title::before,
.download-title::after{
    content:"";
    width:60px;
    height:1px;
    background:rgba(255,255,255,.2);
}
.download-options{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.download-top,
.download-bottom,
.download-note-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

.download-top{
    margin-bottom:12px;
}

.download-top .download-btn{
    background:linear-gradient(135deg,#00c853,#69f0ae);
    color:#111;

    box-shadow:
        0 4px 12px rgba(0,200,83,.35),
        0 0 20px rgba(105,240,174,.2);
}

.download-note-wrapper{
    display:flex;
    justify-content:center;
    margin-top:30px;
}

.download-note{
    max-width:500px;

    padding:10px 16px;

    text-align:center;
    font-size:14px;
    line-height:1.5;

    color:#ffdd55;
    background:rgba(255,221,85,.08);

    border:1px solid rgba(255,221,85,.15);
    border-radius:10px;

    font-style:italic;
}
.download-btn{
    min-width:170px;
    padding:12px 24px;

    border:none;
    border-radius:10px;

    cursor:pointer;

    background:linear-gradient(135deg,#ffb300,#ffd54f);
    color:#111;

    font-size:16px;
    font-weight:700;

    transition:.25s;

    box-shadow:
        0 4px 12px rgba(255,179,0,.35),
        0 0 20px rgba(255,213,79,.15);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(255,179,0,.45),
        0 0 30px rgba(255,213,79,.25);
}

.download-btn:active {
    transform: translateY(0);
}
.download-toggle-wrap{
    text-align:center;
    margin:20px 0;
}

.download-toggle{
    width:48px;
    height:48px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:#f8f9fa;
    border:1px solid #e5e7eb;

    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.download-toggle:hover{
    transform:translateY(-2px);

    background:#fff;

    box-shadow:
        0 4px 12px rgba(0,0,0,.08);
}

.download-toggle svg{
    transition:
        transform .45s cubic-bezier(.22,1,.36,1);
}

.download-toggle.active svg{
    transform:rotate(180deg);
}

.download-section{
    max-height:0;
    opacity:0;
    overflow:hidden;

    transform:translateY(-8px);

    transition:
        max-height .55s cubic-bezier(.22,1,.36,1),
        opacity .4s ease,
        transform .4s ease;

    margin-top:0;

    will-change:max-height,opacity,transform;
}

.download-section.show{
    max-height:1200px;
    opacity:1;

    transform:translateY(0);

    margin-top:15px;
}
.download-toggle.active{
    transform:translateY(-1px);

    box-shadow:
        0 0 0 4px rgba(255,213,79,.15),
        0 4px 12px rgba(0,0,0,.08);
}

.nav-switchers {
    display: flex;
    gap: 10px;
    margin-left: auto;
    align-items: center;
}

/* Gunakan style yang sama untuk domain & language wrapper */
.nav-domain-wrapper,
.nav-language-wrapper {
    background: #0d0d0d;
    border: 1px solid #333;
    padding: 3px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    transform: scale(0.9);
    transform-origin: right center;
}

.nav-domain-wrapper label,
.nav-language-wrapper label {
    color: #bbb;
    font-size: 11px;
    white-space: nowrap;
}

#domain-switcher,
#language-switcher {
    background: #111;
    color: #eee;
    border: 1px solid #444;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
}

#domain-switcher:hover,
#language-switcher:hover {
    border-color: #777;
}

@media (max-width: 600px) {
    .nav-switchers {
        flex-direction: column;
        margin: 15px auto !important;
    }
    .nav-domain-wrapper, .nav-language-wrapper {
        transform: scale(1);
        justify-content: center;
        padding: 6px 10px;
        gap: 8px;
    }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #040D21;
  padding: 10px 20px;
  color: #fff;
  font-family: sans-serif;
  position: relative;  
  height: 50px;
  z-index: 10;
}

 
.search-wrapper {
  display: flex;
  align-items: center;
  width: 90px;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.5);  
  backdrop-filter: blur(10px);
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 11;
}

.search-wrapper.active {
  width: 250px;
  background: rgba(0, 0, 0, 0.75);  
}

.search-bar {
  flex: 1;
  padding: 6px 15px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 16px;
}

.search-bar::placeholder {
  color: rgba(255,255,255,0.7);
}

.search-btn {
  border: none;
  cursor: pointer;
  padding: 7px 18px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 0 25px 25px 0;
  background: linear-gradient(90deg, #00d9ff, #0066ff);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  display: none;
}

.search-wrapper.active .search-btn {
  display: block;
}

.search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

 
@media (min-width: 768px) {
  .search-wrapper {
    width: 100px;
  }

  .search-wrapper.active {
    width: 550px;
    border-radius: 25px;
  }

  .search-btn {
    display: block;
  }
}

 
@media (max-width: 767px) {
  .navbar {
    position: relative;  
  }

  .search-wrapper.active {
    position: absolute;
    top: 5px;  
    left: 10px;
    right: 10px;
    width: auto;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 99;
  }

  .search-btn {
    border-radius: 0 15px 15px 0;
    padding: 6px 15px;
  }
}

 
.menu-btn {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 8px;
  cursor: pointer;
  perspective: 600px;
  border-radius: 15px;
  background: linear-gradient(145deg, #1c1c2a, #101025);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6), inset 0 0 8px rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.menu-btn span {
  display: block;
  height: 5px;
  border-radius: 50px;
  background: linear-gradient(145deg, #00d9ff, #66f0ff);
  box-shadow: 0 6px 15px rgba(0,0,0,0.5), inset 0 -1px 2px rgba(255,255,255,0.3);
  transition: all 0.5s ease;
  transform-origin: center;
}

.menu-btn:hover {
  transform: translateY(-3px) rotateX(10deg) rotateY(15deg);
  box-shadow: 0 8px 25px rgba(0,0,0,0.7), inset 0 0 10px rgba(255,255,255,0.2);
}

.menu-btn:hover span {
  transform: rotateY(10deg) rotateX(5deg);
}

 
.menu-btn.active span:nth-child(1) {
  transform: rotateZ(45deg) translateY(14px) translateX(2px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotateZ(-45deg) translateY(-14px) translateX(2px);
}

 
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #090933;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
  z-index: 999;
  padding-left: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.menu-overlay a {
  color: white;
  text-decoration: none;
  padding: 0 20px;
  font-size: 1.2rem;
  transition: color 0.3s, background 0.3s;
  border-radius: 10px;
}

 
.menu-overlay a.active-link {
  color: #00d9ff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: bold;
  box-shadow: inset 0 -2px 0 #00d9ff;
}

.menu-overlay a:hover {
  color: #00d9ff;
}

.close-logo {
  font-size: 1.5rem;
  margin-left: auto;
  margin-right: 20px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

.menu-overlay.active {
  transform: translateX(0);
}

 
@media (max-width: 767px) {
  .menu-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: rgba(9, 9, 51, 0.85);
    backdrop-filter: blur(8px);
  }

  .menu-overlay a {
    display: block;
    padding: 15px 0;
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
  }

  .close-logo {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .menu-overlay {
    top: 0;
    height: 50px;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 20px;
  }
}
.post {
  background: #00000A;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  color: #fff;
}

 
.content-right h1 {
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;  
  border-bottom: 1px solid #222;
  padding-bottom: 8px;
  text-align: left;
}

.post__tag {
  display: inline-block;
  background: #1E1E1E;
  border-radius: 6px;
  padding: 3px 8px;
  margin: 3px;
  font-size: 13px;
  transition: background 0.2s ease;
}

.post__tag:hover {
  background: #333;
}

 
.content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;  
}

 
.post-image {
  flex: 0 0 auto;
  width: 65%;
  max-width: 500px;
  height: auto;
  min-height: 250px;  
  border-radius: 10px;
  display: block;
  margin: 10px 0;
}

 
.content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}

.content-right .text {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: left;
}

 
.content-right .post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

 
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: stretch;
  }

  .post-image {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 0;
  }

  .content-right h1 {
    text-align: left;
    font-size: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
  }

  .content-right .text {
    font-size: 14px;
    padding: 10px 0;
  }

  .content-right .post__tags {
    justify-content: flex-start;
  }
}
 
.post p > a.maker-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;            
  padding: 4px 8px;        
  border-radius: 6px;
  line-height: 1;           
  font-size: 14px;
  width: auto;             
  background-color: transparent;  
  color: #00cccc !important;       
  border: 1px solid #00cccc;       
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.post p > a.maker-btn i {
  color: #00cccc !important;       
}

.post p > a.maker-btn:hover {
  background-color: rgba(0,204,204,0.1);  
  color: #00ffff !important;              
  border-color: #00ffff;                  
}

 
.post p > a.actress-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px 12px;              
  font-size: 13px;
  line-height: 1.2;               
  border-radius: 6px;
  width: auto;
  background-color: transparent;
  color: #ff69b4 !important;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #ff69b4;
  transition: all 0.3s ease-in-out;
}

.post p > a.actress-btn i {
  color: #ff69b4 !important;
}

.post p > a.actress-btn:hover {
  background-color: rgba(255,105,180,0.1);
  color: #ff1493 !important;
  border-color: #ff1493;
}
 
.post p {
  margin: 0.5rem 0;  
}

 
.maker-btn,
.actress-btn {
  margin: 0 0.3rem 0.3rem 0;  
}

 
.post hr {
  margin: 0.6rem 0;  
}
.lang-switcher {
    margin-top: 5px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    color: #fff;
}

 
.lang-switcher label {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}

 
.lang-dropdown {
    position: relative;
    display: inline-block;
    width: 80px;  
    user-select: none;
}

 
.lang-dropdown-selected {
    background-color: #1a1a1a;
    color: #fff;
    padding: 6px 10px; 
    border: 1px solid #444;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px; 
    font-size: 14px;
    transition: background 0.15s ease;
}

.lang-dropdown-selected:hover {
    background-color: #222;
}

 
.lang-dropdown-items {
    display: none;  
    position: absolute;
    background-color: #111;
    border-radius: 6px;
    width: max-content;  
    padding: 6px;
    margin-top: 4px;
    z-index: 100;
    flex-direction: column;  
    gap: 4px;  
}

 
.lang-item {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    background-color: #1a1a1a; 
    border: 1px solid #444;    
    border-radius: 6px;
    transition: background 0.15s ease, transform 0.1s ease;
}

.lang-item:hover {
    background-color: #222;
    transform: scale(1.03);  
}

 
.lang-dropdown.show .lang-dropdown-items {
    display: flex;
}

 
.lang-item img,
.lang-dropdown-selected img {
    pointer-events: none;
}

.content{
  position:relative;
}

.play-btn{
  opacity:0;
  visibility:hidden;

  position:absolute;

  width:90px;
  height:90px;

  border-radius:50%;

  background:rgba(0,0,0,.65);
  backdrop-filter:blur(5px);

  border:2px solid rgba(255,255,255,.85);

  box-shadow:
    0 8px 30px rgba(0,0,0,.4);

  pointer-events:none;
  z-index:5;

  transform:translate(-50%,-50%);

  transition:
    opacity .2s ease,
    transform .2s ease;

  animation:pulse 2.2s infinite;
}

.play-btn::before{
  content:"";
  position:absolute;

  top:50%;
  left:54%;

  transform:translate(-50%,-50%);

  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
  border-left:28px solid #fff;
}

@keyframes pulse{
  0%{
    box-shadow:
      0 8px 30px rgba(0,0,0,.4),
      0 0 0 0 rgba(255,255,255,.35);
  }

  70%{
    box-shadow:
      0 8px 30px rgba(0,0,0,.4),
      0 0 0 18px rgba(255,255,255,0);
  }

  100%{
    box-shadow:
      0 8px 30px rgba(0,0,0,.4),
      0 0 0 0 rgba(255,255,255,0);
  }
}

/* =========================
   FULLSCREEN MODAL PATCH
   ONLY OVERWRITE VIDEO VIEW
========================= */

/* modal background cinematic */
#myModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;

  justify-content: center;
  align-items: center;

  background: radial-gradient(
    circle at center,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.90) 60%,
    rgba(0,0,0,.98) 100%
  ) !important;

  backdrop-filter: blur(12px) !important;

  animation: modalFade .25s ease;
}

/* video iframe fullscreen center box */
#videoFrame {
  width: 85% !important;
  max-width: 1100px !important;
  aspect-ratio: 16 / 9 !important;

  border-radius: 14px !important;

  background: #000 !important;

  box-shadow:
    0 25px 80px rgba(0,0,0,.85),
    0 0 40px rgba(0,0,0,.5) !important;

  border: 1px solid rgba(255,255,255,.08) !important;

  animation: videoPop .25s ease;
}

/* close button */
.close {
  z-index: 10000 !important;
  position: fixed !important;
  top: 20px !important;
  right: 30px !important;

  font-size: 40px;
  color: #fff;
  cursor: pointer;

  text-shadow: 0 0 10px rgba(0,0,0,.7);
}

/* modal */
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* video pop */
@keyframes videoPop {
  from {
    transform: scale(.96);
    opacity: .6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* mobile tuning */
@media (max-width: 768px) {
  #videoFrame {
    width: 95% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 10px !important;
  }
}
.close{
  transition: all .2s ease;
}

.close:hover{
  transform: scale(1.1);
  text-shadow:
    0 0 10px rgba(255,255,255,.5),
    0 0 20px rgba(255,255,255,.3);
}
.post__content {
  font-family: Arial, sans-serif;
  color: #fff;
}

/* Kotak keseluruhan (judul + isi) */
.post-box {
  background: #00000A; /* abu gelap solid */
  border: 1px solid #333; /* garis sedikit lebih terang */
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

/* Judul di dalam kotak */
.post-box .post-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: left; /* ubah jadi rata kiri */
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
  color: #ffffff;
}

/* Isi konten di dalam kotak */
.post-box .post-body {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.6;
}
.dark-banner-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin: 25px auto;
  padding: 15px;
  max-width: 580px;
  background: rgba(25, 25, 25, 0.75);
  border-radius: 14px;
}

.dark-banner {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 300 / 250;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(100deg, #2a2a2a 40%, #3a3a3a 50%, #2a2a2a 60%);
  background-size: 200% 100%;
  border-radius: 10px;
  color: #888;
  font-size: 13px;
  overflow: hidden;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@media (max-width: 700px) {
  .dark-banner-group {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
  }

  .dark-banner {
    width: 48%;
    aspect-ratio: 300 / 250;
  }
}
.ad-label {
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: #aaa;
  letter-spacing: 1px;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 600px) {
  .rel-grid {
    grid-template-columns: 1fr !important;
  }
}
  #online-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1); /* abu terang transparan */
    padding: 4px 9px;
    border-radius: 16px;
    font-family: "Segoe UI", sans-serif;
    font-size: 13px;
    color: #e0e0e0; /* teks abu terang */
    backdrop-filter: blur(8px);
    box-shadow: 0 0 6px rgba(0,0,0,0.6);
  }

  @media (prefers-color-scheme: light) {
    #online-box {
      background: rgba(21, 159, 207, 0.8);
      color: #000;
    }
  }

  .live-dot {
    width: 7px;
    height: 7px;
    background-color: #00ff6a; /* hijau neon */
    border-radius: 50%;
    box-shadow: 0 0 6px #00ff6a;
    animation: blink 1.2s infinite;
  }

  @keyframes blink {
    50% { opacity: 0.4; }
  }

  #online-count {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    transition: all 0.3s ease-out;
  }

  .footer a {
    color: #aaa;
    text-decoration: underline;
  }
