
html {
    scroll-behavior: smooth;
  }
/* Preloader-start */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #0F172A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.3s ease;
}

.bars-loader {
    display: flex;
    align-items: end;
    gap: 5px;
}

.bars-loader span {
    display: block;
    width: 8px;
    height: 24px;
    background: #EAB308;
    border-radius: 4px;
    animation: barBounce 1s infinite ease-in-out;
}

.bars-loader span:nth-child(2) {
    animation-delay: 0.1s;
}

.bars-loader span:nth-child(3) {
    animation-delay: 0.2s;
}

.bars-loader span:nth-child(4) {
    animation-delay: 0.3s;
}

.bars-loader span:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes barBounce {

    0%,
    100% {
        height: 24px;
        transform: translateY(0);
    }

    50% {
        height: 40px;
        transform: translateY(-10px);
    }
}


.container-conten {
  max-width: 1000px;
  margin: 0 auto;
}
/* Preloader-end */
body {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', sans-serif;
    background: #0c0c0c;
    color: #fff;
}
/* =======================
   Utility Classes
======================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.text-center {
    text-align: center;
}
/* =======================
   Header - Global
======================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to bottom, #1e1e1e 0%, #1e1e1e 100%);
    box-shadow: inset 0 2px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* =======================
   Header - Desktop
======================= */
.header-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .header {
        height: 80px;
    }

    .header-desktop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
        max-width: 1200px;
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }

    .header-desktop .logo {
        display: flex;
        align-items: center;
        height: 100%;
    }
}
/* =======================
   Header - Mobile
======================= */
.header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 2rem;
}

.header-mobile .logo {
    flex: 1;
    display: flex;
    justify-content: center;
}


.mobile-menu-button {
    width: 45px;
    height: 45px;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #EAB308;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
}


.telegram-icon {
    width: 45px;
    height: 45px;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #0084ff;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.telegram-icon:hover {

    color: #facc15;
    transform: scale(1.05);
}


.mobile-menu-button:hover,
.telegram-icon:hover {
    color: #CA8A04;
}
/* =======================
   Logo Responsive
======================= */
.logo-img {
    display: block;
    max-height: 100%;
    object-fit: contain;
}

.logo-desktop {
    height: 44px;
}
.logo-mobile {
    height: 50px;
}

@media (min-width: 1024px) {
    .logo-mobile {
        display: none;
    }
}

@media (max-width: 1023px) {
    .logo-desktop {
        display: none;
    }
}
/* =======================
   Navigation Links
======================= */
.nav {
    display: none;
}
@media (min-width: 1024px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        height: 100%;
        padding-left: 1.5rem;
        border-left: 1px solid rgba(248, 250, 252, 0.1);
    }
    .nav-link {
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
        position: relative;
        color: #F8FAFC;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #EAB308;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    .nav-link:hover {
        color: #EAB308;
    }
    .nav-link:hover::after {
        transform: scaleX(1);
    }
    .nav .btn {
        margin-left: 2rem;
        padding: 0.75rem 2rem;
    }
    .header-mobile,
    .mobile-menu {
        display: none !important;
    }
}


/* =======================
   Mobile Menu
======================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.close-menu-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F8FAFC;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
}

.close-menu-button:hover {
    color: #EAB308;
}

.mobile-nav {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

}

.mobile-nav-link {
    display: block;
    font-size: 1.125rem;
    color: #F8FAFC;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.mobile-nav-link:hover {
    color: #EAB308;
}
/* =======================
   Mobile Buttons
======================= */
.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
}

.mobile-nav-buttons .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
}

a[class^="btn-"] {
    text-decoration: none;
    display: inline-block;
}
.btn-reg-mobile {
    background: linear-gradient(to right, #facc15, #eab308);
    color: #1a202c;
    padding: 0.75rem 1.4rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-reg-mobile:hover {
    background: linear-gradient(to right, #eab308, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(234, 179, 8, 0.5);
}

.btn-download-mobile {
    border: #2563eb solid 2px;
    color: #ffffff;
    padding: 0.75rem 1.4rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.btn-download-mobile:hover {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.5);
}

@media (min-width: 1024px) {
    .mobile-nav-buttons {
        display: none;
    }
}
/* =======================
   Desktop Button Daftar
======================= */
.btn-reg-desktop {
    border: silver 2px solid;
    font-family:'Courier New', Courier, monospace;
    color: #ffffff;
    padding: 0.5rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
    transition: all 0.3s ease;
}

.btn-reg-desktop:hover {
    background: linear-gradient(to right, #eab308, #d97706);
    transform: translateY(2px);
    box-shadow: 0 6px 16px rgba(234, 179, 8, 0.5);
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    -ms-transform: translateY(2px);
    -o-transform: translateY(2px);
}

@media (max-width: 1023px) {
    .btn-reg-desktop {
        display: none;
    }
}


/* ===============================
SECTION HERO AGEN108
=============================== */
.section-agen-hero {
    padding: 80px 20px 40px;
    color: #f8fafc;
    text-align: center;
    background: transparent;
  }
  
  .agen-title-container {
    margin: 0 auto;
    padding: 0 10px;
  }
  
  .agen-heading-primary {
    font-family: 'Oxanium', sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: glowUp 1.2s ease forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .highlight-border {
    display: inline-block;
    padding: 10px 20px;
    border-top: 2px solid #facc15;
    border-bottom: 2px solid #facc15;
    background: rgba(250, 204, 21, 0.05);
    color: transparent;
    background-image: linear-gradient(180deg, #facc15, #f59e0b, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

  }
  
  .agen-title-container p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.75;
    color: #e2e8f0;
    text-align: left;
    padding: 0px 120px;
    margin: 28px auto 0;
  }
  
  @media (max-width: 768px) {
    .agen-heading-primary {
      font-size: 24px;
    }
  
    .agen-title-container p {
      font-size: 15.5px;
      line-height: 1.7;
      padding: 0 10px;
    }
  
    .highlight-border {
      padding: 8px 16px;
    }
  }
  
  /* ===============================
  TOMBOL ACTION AGEN108
  =============================== */
  .agen108-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-family: monospace;
  }
  
  .btn-main-sekarang {
    min-width: 220px;
    text-align: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    background: linear-gradient(to right, #facc15, #f59e0b);
    border-radius: 9999px;
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulseBtn 2s infinite ease-in-out;
    -webkit-animation: pulseBtn 2s infinite ease-in-out;
}
  .btn-main-sekarang:hover {
    border: #EAB308;
    color: #e0e0e0;
    background: transparent;
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.5);
  }
  
  .btn-link-alternatif {
    min-width: 220px;
    text-align: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    border: 2px solid #facc15;
    border-radius: 9999px;
    transition: all 0.3s ease;
  }
  
  .btn-link-alternatif:hover {
    background: rgb(253, 203, 0);
    color: #000;
  }
  
  /* Animasi */
  @keyframes pulseBtn {
    0% {
      box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.5);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(250, 204, 21, 0);
    }
  }
  
  @keyframes glowUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* ============================
Banner Image Full Responsive
============================ */
.banner-agen108 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    width: 100%;
  }
  
  .banner-img-only {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
  .banner-img-only:hover {
    transform: scale(1.015);
  }
  @media (max-width: 768px) {
    .banner-img-only {
      max-width:350px;
      border-radius: 3px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
      -webkit-border-radius: 3px;
      -moz-border-radius: 3px;
      -ms-border-radius: 3px;
      -o-border-radius: 3px;
}
    .banner-agen108 {
      padding: 10px 0px;

    }
  }
  /* ===========================
   Section APK AGEN108
=========================== */
.section-apk-agen108 {
    padding: 10px 5px 10px;
    color: #f8fafc;
    text-align: center;
  }
  
  .apk-title-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .agen-subheading {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #facc15;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 1.4;
  }
  
  @media (max-width: 768px) {
    .agen-subheading {
      font-size: 1.4rem;
    }
  }
  
  .apk-title-container p {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #e2e8f0;
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
  }
  
  @media (max-width: 768px) {
    .apk-title-container p {
      font-size: 15.5px;
      line-height: 1.7;
      padding: 0 10px;
    }
  }
/* ==========================
   Tombol Unduh APK AGEN108
========================== */
.btn-apk-container {
    margin-top: 20px;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;

  }
  
  .btn-unduh-apk-animated {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: monospace;
    font-size: 1.0rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, #2563eb, #1d4ed8);
    border-radius: 9999px;
    border: #ffbf00 2px solid;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    animation: shakeColor 2.8s infinite ease-in-out;
  }
  
  .btn-unduh-apk-animated:hover {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
  }

  @keyframes shakeColor {
    0%, 100% {
      transform: translate(0, 0);
      background: linear-gradient(90deg, #2563eb, #1d4ed8);
    }
    25% {
      transform: translate(1px, -1px);
      background: linear-gradient(90deg, #3b82f6, #22d3ee);
    }
    50% {
      transform: translate(-1px, 1px);
      background: linear-gradient(90deg, #0ea5e9, #1d4ed8);
    }
    75% {
      transform: translate(1px, 1px);
      background: linear-gradient(90deg, #2563eb, #3b82f6);
    }
  }

  
/* ===============================
   PG & PP
================================ */
  .slotgacor-header {
    text-align: center;
    margin: 40px auto 20px;
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 800;

  }

  .slotgacor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px auto; 
    cursor: pointer;
    max-width: 600px;
    
  }

  .slotgacor-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
  }

  .slotgacor-bar-wrap {
    flex: 1;
    background: #a1a1a1;
    border-radius: 6px;
    padding: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .slotgacor-bar-wrap {
      font-size: 11px;
      padding: 4px;
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  .slotgacor-bar-high {
    background: repeating-linear-gradient(45deg, #22c55e, #12572b 5px, #16a34a 5px, #16a34a 10px);
    color: #fff;
    background-size: 10px 100%;
    animation: stripeMove 1s linear infinite;
  }

  .slotgacor-bar-mid {
    background: repeating-linear-gradient(45deg, #facc15, #facc15 5px, #eab308 5px, #eab308 10px);
    color: #ffffff;
    background-size: 10px 100%;
    animation: stripeMove 1s linear infinite;
  }

  .slotgacor-bar-low {
    background: repeating-linear-gradient(45deg, #ef4444, #ef4444 5px, #b91c1c 5px, #b91c1c 10px);
    color: #fff;
    background-size: 10px 100%;
    animation: stripeMove 1s linear infinite;
  }

  @keyframes stripeMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
  }

  .popup-slotgacor {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .popup-slotgacor.show {
    display: flex;
  }

  .popup-slotgacor-content {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 24px;
    border-radius: 16px;
    width: 380px;
    max-width: 90%;
    color: #f8fafc;
    box-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
    border: 1px solid #facc15;
    font-family: 'Segoe UI', sans-serif;
  }

  .popup-slotgacor-content h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 700;
    color: #facc15;
    text-align: center;
    margin-bottom: 10px;
  }

  .popup-slotgacor-content p {
    text-align: center;
    font-weight: bold;
    margin-bottom: 16px;
  }

  .popup-slotgacor-content table {
    width: 100%;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .popup-slotgacor-content td {
    padding: 6px 10px;
    color: #f8fafc;
  }

  .popup-slotgacor-buttons {
    display: flex;
    justify-content: space-between;
  }

  .popup-slotgacor-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.2s ease-in-out;
  }

  .btn-close-slotgacor {
    background: linear-gradient(to right, #dc2626, #b91c1c);
    color: #fff;
  }

  .btn-close-slotgacor:hover {
    background: #991b1b;
  }

  .btn-play-slotgacor {
    background: linear-gradient(to right, #facc15, #fbbf24);
    color: #1f2937;
  }

  .btn-play-slotgacor:hover {
    background: #eab308;
  }
  
/* ===============================
   Section Title Game Grid
================================ */
.section-provider-heading {
    text-align: center;

  }
  
  .section-provider-heading h2 {
    font-size: 1.9rem;
    font-weight: 900;
    color: #facc15;
    text-shadow:
      2px 2px 0 #000,
      4px 4px 6px #000,
      0 0 10px #facc15;
    margin: px 0px;
    letter-spacing: 0.5px;
  }

  @media (max-width: 768px) {
    .section-provider-heading h2 {
      font-size: 1.4rem;
    }
  }
  
.provider-buttons {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.provider-buttons button {
    flex: 1 1 120px;
    min-width: 120px;
    max-width: 150px;
    padding: 10px 20px;
    background: transparent;
    color: #ffd700;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease, background 0.3s ease;
}

.provider-buttons button:hover {
    color: #ffffff;

}

.provider-buttons button::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: #ffd700;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.provider-buttons button.active::after {
    transform: scaleX(1);
}


.game-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.game-grid.show {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .game-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.game-card {
    background: #1a1a1c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    position: relative;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: scale(1.03);
}

.card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.card-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.game-card:hover .card-hover {
    opacity: 1;
}

.btn-main,
.btn-popup {
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.card-hover .btn-main,
.card-hover .btn-popup {
    width: 110px;
    text-align: center;
    padding: 5px 0;
    border-radius: 30px;
    font-weight: bold;
    font-size: 12px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #000000;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: block;
}


.btn-main {
    background: linear-gradient(90deg, #ffeb3b, #f57c00);
    color: #000;
}

.btn-popup {
    background: linear-gradient(90deg, #e0e0e0, #bdbdbd);
    color: #000;
}

.rtp-container {
    background: #242424;
    padding: 8px;
    text-align: center;
    font-size: 13px;
}

.rtp-label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffd700;
    font-size: 12px;
}

.rtp-bar {
    height: 13px;
    background: #2b2b2b;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
}

.bar-fill {
    height: 100%;
    width: 0%;
    position: relative;
    border-radius: 35px;
    transition: width 0.4s ease;
    animation: stripeMove 1s linear infinite;
    background-size: 10px 100%;
}

@keyframes stripeMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 0;
    }
}

.badge-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 80px !important;
    height: 35px !important;
    object-fit: contain;
    z-index: 5;
    pointer-events: none;
    border-radius: 4px;
    background: rgb(0, 0, 0);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .badge-icon {
        top: 4px;
        right: 4px;
        width: 48px !important;
        height: 20px !important;
        background: rgb(0, 0, 0);
    }
}


.popup {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.popup.hidden {
    display: none;
}

.popup-content {
    background: linear-gradient(145deg, #1c1c1e, #121212);
    border: 1px solid #ffce0050;
    border-radius: 18px;
    padding: 28px 24px;
    width: 360px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.35);
    position: relative;
    animation: popupUp 0.35s ease;
}

.popup-body p {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 12px;
    border-radius: 10px;
    margin: 12px 0;
    font-size: 15px;
    font-weight: 500;
    gap: 10px;
    color: #fff;
}

.popup-body p strong {
    color: #ffd700;
}

.popup-body svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: #ffffff;
    color: #ffffff;
    filter: drop-shadow(0 0 4px #ffdd00);
    animation: pulseIcon 1.4s infinite ease-in-out;
}

.popup-body svg path {
    fill: #ffffff !important;
    stroke: none;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #ffd700;
    transition: transform 0.2s ease;
}

.popup .close:hover {
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popupUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.section-bukti-wd {
  padding: 40px 20px;
  text-align: center;
}

.bukti-wd-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #facc15;
  text-shadow: 1px 1px 3px #000;
  margin-bottom: 10px;
}

.bukti-wd-subtext {
  font-size: 1rem;
  color: #e2e8f0;
  text-align: center;
  max-width: 800px;
  padding-top: 30px;
  margin: 0 auto 30px;
  line-height: 1.7;
  animation: fadeInText 0.6s ease-in-out;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}


.bukti-wd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.bukti-wd-grid figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.bukti-wd-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.bukti-wd-grid img:hover {
  transform: scale(1.03);
}

.bukti-wd-grid figcaption {
  font-size: 0.85rem;
  color: #94a3b8;
  font-style: italic;
}

.zoom-wd-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.zoom-wd-popup.show {
  display: flex;
}

.zoom-wd-popup img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
  animation: zoomUp 0.3s ease;
  cursor: zoom-out;
}

@keyframes zoomUp {
  from { transform: scale(0.95); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .bukti-wd-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bukti-wd-title {
    font-size: 1.4rem;
  }
}

.bukti-wd-buttons {
  text-align: center;
  margin-top: 30px;
  max-width: 100%;
}

.btn-wd-action,
.btn-wd-outline {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: bold;
  min-width: 200px;
  text-align: center;
  font-size: 1rem;
  margin: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.3);
}

.btn-wd-action {
  background: linear-gradient(90deg, #facc15, #f59e0b);
  color: #1f2937;
  animation: pulseBtn 2.5s infinite;

}

.btn-wd-action:hover {
  background: linear-gradient(90deg, #eab308, #d97706);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(250, 204, 21, 0.6);
}

.btn-wd-outline {
  border: 2px solid #facc15;
  color: #facc15;
  background-color: transparent;
}

.btn-wd-outline:hover {
  background-color: #facc15;
  color: #1f2937;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(250, 204, 21, 0.5);
}

@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(250, 204, 21, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
  }
}

.footer-agen108 {
  border-top: #a1a1a1 1px solid;
  color: #f8fafc;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-col h4 {
  color: #facc15;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #facc15;
}

.brand img.footer-logo {
  width: 200px;
  padding-right: 10px;
  margin-top: 12px;
}

.brand p {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.footer-social i {
  margin-right: 10px;
  color: #facc15;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s;
}

.footer-social i:hover {
  transform: scale(1.2);
  color: #eab308;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom img {
  margin-left: 6px;
  vertical-align: middle;
}
.footer-social i {
  font-size: 16px;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .brand img.footer-logo {
    width: 160px;
    margin-bottom: 10px;
  }

  .footer-col h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer-col a {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .footer-social {
    text-align: center;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 15px 10px;
  }
}
 .scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #facc15;
    border: none;
    border-radius: 9999px;
    padding: 12px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: none;
  }

  .scroll-top-btn:hover {
    background: #eab308;
    transform: scale(1.08);
  }

  .scroll-top-btn svg {
    display: block;
  }