html {
    background: linear-gradient(135deg, #020024 0%, #7a5504 40%, #020024 70%, #7a6804 100%);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    color: white;
  }

body {
    font-family: 'Poppins', sans-serif;
}

path {
    color: #fff;
}

.bg-yellow-500 {
    background: linear-gradient(to right,#675a43 0%,#bda270 100%);
}

.text-title-500 {
    color: #bda270;
}

.text-title2-500 {
    color: #fff;
}

.text-gray-800 {
    color: #fff;
    background: linear-gradient(to right,#675a43 0%,#bda270 100%);
}

.text-yellow-500 {
    color: #ffd700;
}

.text-gray-400 {
    color: #fff;
}

.text-title3-500 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.text-yellow2-500 {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
}

p {
    color: #fff;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .button-wrapper a {
    flex: 1 1 0;
    min-width: 200px;
    max-width: 300px;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(128, 127, 127, 0.3);
    transition: all 0.3s ease;
    position: relative;
  }

  .outline {
    border: 2px solid #ffd700;
    color: #ffd700;
    background: linear-gradient(to bottom, #1a1a1a, #000);
  }

  .outline:hover {
    background-image: linear-gradient(to bottom, #f80202, #700303);
    border-color: #f80202;
    color: #fff;
    text-shadow: #000 1px 1px;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248, 2, 2, 0.5);
  }

  .fill {
    background-image: linear-gradient(to bottom, #bfa87d, #7b6b4a);
    color: white;
    text-shadow: #000 1px 1px;
    border: none;
  }

  .fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 162, 112, 0.5);
  }

  .button-wrapper a:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  @media (max-width: 480px) {
    .button-wrapper {
      flex-direction: column;
      align-items: center;
    }

    .button-wrapper a {
      width: 100%;
      max-width: 100%;
    }
  }

.floating { 
    animation-name: floating; 
    animation-duration: 3s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
} 
.floating-4 { 
    animation-name: floating; 
    animation-duration: 4s; 
    animation-iteration-count: infinite; 
    animation-timing-function: ease-in-out;
} 
@keyframes floating-4 { 
    0% { transform: translate(0, 0px); } 
    50% { transform: translate(0, 8px); } 
    100% { transform: translate(0, -0px); }  
}
.text-darken {
    color: #2F327D;
}

.provider-marquee {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 16px 0;
    position: relative;
  }
  
  .provider-track {
    display: flex;
    width: max-content;
    gap: 32px;
    align-items: center;
    animation: scrollProvider 30s linear infinite;
    will-change: transform;
  }
  
  .provider-marquee:hover .provider-track {
    animation-play-state: paused;
  }
  
  .provider-track img {
    height: 40px;
    opacity: 0.75;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
  }
  
  .provider-track img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 6px #facc15);
  }
  
  .provider-marquee::before,
  .provider-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  
  .provider-marquee::before {
    left: 0;
    background: linear-gradient(to right, #0f172a00 70%, transparent);
  }
  
  .provider-marquee::after {
    right: 0;
    background: linear-gradient(to left, #0f172a00 70%, transparent);
  }
  
  @keyframes scrollProvider {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  @media (max-width: 768px) {
    .provider-track {
      gap: 20px;
    }
  
    .provider-track img {
      height: 32px;
    }
  
    .provider-marquee::before,
    .provider-marquee::after {
      width: 40px;
    }
  }

  .slotgacor-header {
    text-align: center;
    margin: 40px auto 20px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800
  }

  .provider-title {
    color: #fff;
    font-size: 1.2rem;
    margin: 40px 0 15px;
    text-align: center;
    font-weight: 700
  }

  .slotgacor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 900px;
    width: 100%;
    height: auto;
    margin: 0 auto 10px
  }

  @media (max-width:550px) {
    .slotgacor-grid {
      grid-template-columns: repeat(3, 1fr)
    }
  }

  .slotgacor-item {
    background: 0 0;
    border-radius: 5px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 0;
    box-shadow: 0 0 10px rgba(255, 255, 255, .05)
  }

  .slotgacor-item .thumb {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 5px
  }

  .slotgacor-item img {
    width: 100%;
    height: auto;
    object-fit: cover
  }

  .rtp-bar {
    height: 22px;
    width: 100%;
    background: #334155;
    overflow: hidden;
    position: relative
  }

  .rtp-fill {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    transition: width 1.2s ease-in-out
  }

  .rtp-fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .075) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .103) 50%, rgba(255, 255, 255, .082) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    animation: move 2s linear infinite
  }

  @keyframes move {
    from {
      background-position: 0 0
    }

    to {
      background-position: 40px 0
    }
  }

  .rtp-green {
    background: linear-gradient(to bottom, #06e406 0, #033d03 100%)
  }

  .rtp-yellow {
    background: linear-gradient(to bottom, #fe0 0, #757027 100%)
  }

  .button-pola {
    max-width: 900px;
    width: 100%;
    margin-top: 2px;
    padding: 3px 10px;
    border: none;
    background: linear-gradient(to bottom, #675a43, #f1bf60);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease-in-out
  }

  .button-pola:hover {
    background: linear-gradient(to right, #f1bf60 0%, #675a43 100%);
    color: #fff
  }

  .popup-slotgacor {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000
  }

  .popup-slotgacor.show {
    display: flex
  }

  .popup-slotgacor-content {
    background: #00051a;
    padding: 24px;
    border-radius: 16px;
    width: 90%;
    max-width: 380px;
    color: #f8fafc;
    box-shadow: 0 0 25px rgba(250, 204, 21, .4);
    border: 1px solid #bda270
  }

  .popup-slotgacor-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #facc15;
    text-align: center
  }

  .popup-slotgacor-content table {
    width: 100%;
    margin-top: 15px
  }

  .popup-slotgacor-content td {
    padding: 6px 10px
  }

  .popup-slotgacor-buttons {
    margin-top: 16px;
    text-align: center
  }

  .popup-slotgacor-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: #a50202;
    color: #fff;
    font-weight: 700;
    cursor: pointer
  }

  .popup-slotgacor-buttons button:hover {
    background: linear-gradient(to right, #bda270 0%, #675a43 100%);
    color: #fff
  }

  .swiper-wrapper {
    width: 100%;
    height: max-content !important;
    padding-bottom: 64px !important;
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
  }

  .swiper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -100px;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.hero-title {
  text-align: center;
  margin: 0 auto;
  padding-top: 30px;
  color: #fff;

  p {
    color: #fff;
    margin: auto;
    max-width: 900px;
    width: 100%;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  padding-bottom: 20px;
  max-width: 900px;
  margin: 10px auto
}

.grid-item img {
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  border-radius: 10px
}

.grid-item img:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  justify-content: center;
  align-items: center
}

.modal-content {
  width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, .3);
  animation: zoomIn .4s ease
}

@keyframes zoomIn {
  from {
    transform: scale(.6);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

@media screen and (max-width:768px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr)
  }

  .modal-content {
    width: 90vw;
    height: 90vw
  }
}

@media screen and (max-width:500px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr)
  }

  .grid-item img {
    max-width: 100%;
    max-height: 100%
  }
}

a {
  text-decoration: none
}
div.max-w-2xl.w-full {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

div.bg-indigo-600.text-white.px-6.py-4 {
  background-color: #000;
}

.hero-faq {
  max-width: 1500px;
  width: 100%;
  padding: 20px;
}

.faq-content {
  width: 100%;
  transition: max-height 0.3s ease, padding 0.3s ease;
  overflow: hidden;
  max-height: 0;
  padding: 0 1.5rem;
}

.faq-content.show {
  max-height: 500px;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.rotate-180 {
  transform: rotate(180deg);
}


  