body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)),
              url('/images/banners/bg-homebet88.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

/*header-start*/ 
.amp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d0d0d;
  border-bottom: 4px solid #ffd700;
  padding: 8px 15px;
}

.header-left, .header-center, .header-right {
  display: flex;
  align-items: center;
}

.header-left a {
  display: flex;
}

.header-right button {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

amp-sidebar {
  background: #1c1c1c;
  color: #fff;
  width: 260px;
}

.sidebar-content {
  padding: 20px;
}

.sidebar-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  color: #f1c40f;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 14px 0;
  position: relative;
  padding-right: 30px;
}

.nav-list li::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255, 215, 0, 0.3);
  pointer-events: none;
}

.nav-list li a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  gap: 10px;
  padding: 6px 0;
  font-weight: 500;
}

.icon-bg {
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list li a amp-img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-list li a span {
  line-height: 18px;
  font-size: 13px;
}

.nav-list li a:hover {
  opacity: 0.85;
}

.nav-list li:nth-child(1) .icon-bg { background: #ff5722; }
.nav-list li:nth-child(2) .icon-bg { background: #2196f3; }
.nav-list li:nth-child(3) .icon-bg { background: #43a047; }
.nav-list li:nth-child(4) .icon-bg { background: #fbc02d; }

.nav-list:nth-of-type(2) li:nth-child(1) .icon-bg {
  background: #0088cc;
}
.nav-list:nth-of-type(2) li:nth-child(2) .icon-bg {
  background: #000000;
}
.nav-list:nth-of-type(2) li:nth-child(3) .icon-bg {
  background: #ff0000;
}
.nav-list:nth-of-type(2) li:nth-child(4) .icon-bg {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.nav-list:nth-of-type(2) li:nth-child(5) .icon-bg {
  background: #1877f2;
}
.nav-list:nth-of-type(2) li:nth-child(6) .icon-bg {
  background: #e60023;
}
.nav-list:nth-of-type(2) li:nth-child(7) .icon-bg {
  background: #000000;
}

/*header-end*/

/* Content Start */
.section-title {
  color: #ffd700;
  font-weight: 700;
  margin: 20px auto;
  text-align: center;
  font-size: 24px;
  max-width: 500px;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .section-title {
    font-size: 18px;
    padding: 0 12px;
  }
}

@keyframes glowPulse {
  0%   { box-shadow: 0 0 10px #ffd700; }
  50%  { box-shadow: 0 0 25px #ffcc00; }
  100% { box-shadow: 0 0 10px #ffd700; }
}

.banner-wrapper {
  max-width: 450px;
  margin: 5px auto;
  overflow: hidden;
  box-shadow: 0 0 12px #ffd700;
  animation: glowPulse 2s ease-in-out infinite;
  background: #1a1a1a;
  border-radius: 12px;
}

@media (max-width: 480px) {
  .banner-wrapper {
    max-width: 95%;
    margin: 10px auto;
  }
}

.section-desc {
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 14px;
  margin-top: 15px;
  color: #e0e0e0;
  text-align: left;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .section-desc {
    font-size: 13px;
    padding: 0 15px;
  }
}

.section-desc p {
  margin-bottom: 10px;
}

.btn-wiggle {
  display: inline-block;
  font-size: 15px;
  padding: 10px 32px;
  font-weight: 900; 
  text-transform: uppercase;
  color: #000000;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  animation: wiggle 1.5s infinite;
  transform-origin: center;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  letter-spacing: 0.5px;
  text-shadow: 0 0 1px #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: contrast(1.2);
}


.btn-wiggle-delay {
  animation-delay: 0.75s;
}

@keyframes wiggle {
  0%, 80% { transform: rotate(0deg); }
  85%     { transform: rotate(-5deg); }
  95%     { transform: rotate(5deg); }
  100%    { transform: rotate(0deg); }
}
/* Content End */

/*card games start*/
.spin-card {
  max-width: 500px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  margin: 20px auto;
  padding: 20px;
  background: linear-gradient(145deg, #1e1e1e 0%, #2a2a2a 100%);
  border: 1px solid #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  color: #fff;
  animation: flickerShadow 3s infinite alternate ease-in-out;
  border-radius: 12px;
}

@media (max-width: 480px) {
  .spin-card {
    max-width: 300px;
    padding: 12px;
    font-size: 12px;
  }

  .spin-subtitle {
    font-size: 13px;
  }

  .spin-title, p {
    font-size: 12px;
  }

  .spin-button {
    font-size: 12px;
    padding: 10px;
  }

  .spin-rtp-fill span {
    font-size: 10px;
  }

  .spin-table th, .spin-table td {
    font-size: 10px;
  }

  .spin-desc {
    font-size: 11px;
    line-height: 1.5;
  }
}

.spin-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  margin: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.spin-title, p {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0;
  color: #ffffff;
}

.spin-img-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.spin-img-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.5);
  animation: borderFlash 1.5s infinite alternate;
}

@keyframes borderFlash {
  0% {
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 10px #ffd700;
  }
}

.spin-info {
  font-size: 12px;
  margin: 10px 0;
  color: #ccc;
}

.spin-rtp-bar {
  width: 100%;
  height: 24px;
  background: #444;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}

.spin-rtp-fill {
  height: 100%;
  width: 0%;
background: linear-gradient(
  45deg,
  #33cc88 25%,
  #20895e 25%,
  #20895e 50%,
  #33cc88 50%,
  #33cc88 75%,
  #20895e 75%,
  #20895e 100%
);
  background-size: 40px 40px;
  position: relative;
  animation: moveStripe 2s linear infinite;
  transition: width 0.8s ease-in-out;
  border-radius: 6px;
  -webkit-animation: moveStripe 2s linear infinite;
}

@keyframes moveStripe {
  from { background-position: 0 0; }
  to { background-position: 40px 0; }
}

.spin-rtp-fill span {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  font-weight: bold;
  color: #ffffff;
  line-height: 24px;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  letter-spacing: 0.5px;
}

#polaMode {
  font-size: 12px;
  font-weight: 600;
  color: #ffd700;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spin-table {
  width: 100%;
  background: #fff;
  color: #000;
  border: #ffa500 2px solid;
  border-radius: 6px;
  margin: 10px 0;
  overflow: hidden;
  border-collapse: separate;
}

.spin-table th, .spin-table td {
  padding: 8px 10px;
  font-size: 12px;
  border-bottom: 1px solid rgba(122, 122, 122, 0.281);
}

.spin-table td span {
  font-size: 16px;
  font-weight: bold;
}

.spin-status-ok {
  color: #00ff00;
}

.spin-status-no {
  color: #ff3b3b;
}

.spin-table tr:last-child td {
  border-bottom: none;
}

.spin-rungkad {
  color: #ffd700;
  margin: 10px 0;
  font-weight: bold;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 8px;
}

.spin-button {
  background: linear-gradient(to right, #ffd700, #ff9900);
  color: #000;
  padding: 14px;
  text-decoration: none;
  border-radius: 14px;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 12px;
  text-align: center;
  background-size: 200% auto;
  transition: background-position 0.5s ease, transform 0.2s ease;
}

.spin-button:hover {
  background-position: right center;
  transform: translateY(2px) scale(1.02);
}

.spin-desc {
  margin-top: 15px;
  font-size: 14px;
  color: #ffffff;
  text-align: left;
  line-height: 1.7;
  max-width: 450px;
}
/*card games end*/

.homebet-info {
  max-width: 500px;
  margin: 5px auto;
  text-align: left;
  color: #ddd;
  line-height: 1.7;
  padding: 0 20px;
}

.homebet-title {
  text-align: center;
  color: #ffd700;
  font-size: 22px;
  margin-bottom: 16px;

}

.homebet-desc {
  font-size: 14px;
  margin-bottom: 12px;
}

.homebet-highlight {
  color: #ffd700;
  font-weight: 600;
}

.section-title-rtp {
  color: #ffd700;
  margin: 24px auto 16px;
  text-align: center;
  font-size: 22px;
  max-width: 500px;
  padding: 0 20px;

}

.section-desc-p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  text-align: left;

}

.rtp-wrapper {
  display: flex;
  justify-content: center;
  padding: 0 16px;
  margin-bottom: 24px;
}

#rtp-info {
  background: linear-gradient(145deg, #111, #222);
  border: 1px solid #444;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.1);
  padding: 16px 24px;
  border-radius: 14px;
  color: #ffd700;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  max-width: 360px;
  width: 100%;
  backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
}

/* MOBILE VERSION */
@media (max-width: 480px) {
  .homebet-info {
    padding: 0 14px;
  }

  .homebet-title,
  .section-title-rtp {
    font-size: 18px;
    line-height: 1.4;
  }

  .homebet-desc,
  .section-desc-p {
    font-size: 13px;
    padding: 0 12px;
    line-height: 1.6;
  }

  #rtp-info {
    padding: 12px 18px;
    font-size: 13px;
  }
}

/*float-start*/
.float-wrapper {
  position: fixed;
  right: 5px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 8px;
}


.float-label {
  background: linear-gradient(145deg, #ffcc00, #cc9900);
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 18px;
  position: relative;
  cursor: default;
  animation: blink 1.5s infinite;
  display: inline-block;
  text-align: center;

  clip-path: polygon(
    10% 0%, 90% 0%, 
    100% 50%, 
    90% 100%, 10% 100%, 
    0% 50%
  );

  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
} 


.float-toggle {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, #ffcc00, #cc9900);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255, 204, 0, 0.6);
  transition: transform 0.4s ease;
}
.float-toggle span {
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  display: block;
  transition: all 0.4s ease;
}
.float-toggle.active {
  transform: rotate(180deg);
}
.float-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.float-toggle.active span:nth-child(2) { opacity: 0; }
.float-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.float-menu {
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
.float-btn {
  position: absolute;
  width: 54px;
  height: 54px;
  background: #111;
  border: 2px solid #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
}
.float-btn img { width: 40px; }

@keyframes pop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes hide {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

.float-menu.show .float-btn:nth-child(1) {
  top: -15px;
  left: -15px;
  animation: pop 0.4s ease forwards;
  animation-delay: 0.05s;
}
.float-menu.show .float-btn:nth-child(2) {
  top: 30px;
  left: -80px;
  animation: pop 0.4s ease forwards;
  animation-delay: 0.12s;
}
.float-menu.show .float-btn:nth-child(3) {
  top: 100px;
  left: -80px;
  animation: pop 0.4s ease forwards;
  animation-delay: 0.19s;
}
.float-menu.show .float-btn:nth-child(4) {
  top: 145px;
  left: -15px;
  animation: pop 0.4s ease forwards;
  animation-delay: 0.26s;
}

.float-menu.hide .float-btn {
  animation: hide 0.25s ease forwards;
}

@media (max-width: 480px) {
  .float-toggle { width: 52px; height: 52px; gap: 5px; }
  .float-toggle span { width: 24px; }
  .float-btn { width: 48px; height: 48px; }
  .float-label { font-size: 12px; padding: 5px 10px; }
}
/*float-end*/


/*winner start*/
#liveWinnerList {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: rgba(17, 17, 34, 0.75);
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  max-width: 90%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: opacity 0.5s ease;
  opacity: 1;
  display: flex;
  align-items: center;
    letter-spacing: 0.5px;
}

#liveWinnerList img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 4px;
  margin-right: 8px;
  flex-shrink: 0;
}

.winner-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.winner-item b {
  font-weight: 600;
  color: #ffd700;
  font-size: 12px;
}

.winner-item span {
  color: #ccc;
  font-size: 11px;
}

@media (max-width: 480px) {
  #liveWinnerList {
    font-size: 11px;
    padding: 6px 10px;
  }

  #liveWinnerList img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }

  .winner-item b {
    font-size: 11px;
  }
}
a[href*="vpn108.com"]:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 2px rgba(255,255,255,0.1);
}
/*Winner End*/

 :root {
    --accent-color: #ffffff;
    --base-color: #7c00e1;
    --hamburg-gradient: linear-gradient(180deg,#ce00e1 0%,#bb00e1 50%,#2c0041 100%);

  }

.hamburg{
  position: fixed;
  right: 20px;
  bottom: 16%;
  width: 30px;
  padding: .3rem;
  background: var(--hamburg-gradient);
  border-radius: 10px;
  z-index: 80;
}

.ard-sosmed{
  position: fixed;
  right: 20px;
  bottom: 22%;
  display: block;
  cursor: pointer;

  z-index: 79;

}

  .ard-sosmed ul {
    margin: 0;
    padding: 0;
  }

  .ard-sosmed ul li {
    position: absolute;
    text-decoration: none;
    list-style: none;
    transform: translate(0, 0) rotate(360deg);
    transition: all .5s ease;
    opacity: 0;
    border: #0059e1 2px solid;
    border-radius: 35px;
  }

  .ard-sosmed.open ul li:nth-child(1) {
    transform: translate(20px,-300px);
    transition-delay: .20s;
    opacity: 1;
  }

  .ard-sosmed.open ul li:nth-child(2) {
    transform: translate(20px, -225px);
    transition-delay: .16s;
    opacity: 1;
  }

  .ard-sosmed.open ul li:nth-child(3) {
    transform: translate(20px, -150px);
    transition-delay: .12s;
    opacity: 1;
  }

  .ard-sosmed.open ul li:nth-child(4) {
    transform: translate(20px, -75px);
    transition-delay: .08s;
    opacity: 1;
  }

  .ard-sosmed.open ul li:nth-child(5) {
    transform: translate(20px, -65px);
    transition-delay: .04s;
    opacity: 1;
  }

  .ard-sosmed.open ul li:nth-child(6) {
    transform: translateX(200px);
    transition-delay: 0s;
    opacity: 1;
  }

  .ard-sosmed ul li a img {
    width: 80%;
    height: auto;
  }

  .ard-sosmed ul li a {
    display: flex;
    width: 55px;
    height: 55px;
    border: solid 2px var(--accent-color);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in;
    border-radius: 50px;
  }

  .bar1,
  .bar2,
  .bar3 {
    width: 60%;
    height: 5px;
    background-color: var(--accent-color);
    margin: 6px auto;
    transition: .4s;
    position: relative;
    transform: translateY(-1px);
  }

  .open .bar1 {
    transform: translate(0, 10px) rotate(-230deg);
  }

  .open .bar2 {
    opacity: 0;
    transform: translate(0, -6px) rotate(-225deg);
  }

  .open .bar3 {
    transform: translate(0, -12px) rotate(-315deg);
  }

  .ard-sosmed ul li div {
    position: absolute;
    transition: all .3s ease;
    opacity: 0;
    scale: .1;

    font-size: large;
    background: rgba(0, 0, 0, 1);
    color: var(--accent-color);
    text-align: center;
    text-wrap: nowrap;
  }

  .ard-sosmed ul li:hover div {
    opacity: 1;
    scale: 1;
  }

  .ard-sosmed ul li:nth-child(1) div {
    transform: translateY(-240px);
  }

  .ard-sosmed ul li:nth-child(1):hover div {
    transform: translateY(-95px);
  }

  .ard-sosmed ul li:nth-child(2) div {
    transform: translateY(-175px);
  }

  .ard-sosmed ul li:nth-child(2):hover div {
    transform: translate(30px, -95px);
  }

  .ard-sosmed ul li:nth-child(3) div {
    transform: translateY(-150px);
  }

  .ard-sosmed ul li:nth-child(3):hover div {
    transform: translate(50px, -90px);
  }

  .ard-sosmed ul li:nth-child(4) div {
    transform: translateX(160px);
  }

  .ard-sosmed ul li:nth-child(4):hover div {
    transform: translate(50px, -90px);
  }

  .ard-sosmed ul li:nth-child(5) div {
    transform: translate(110px, 70px);
  }

  .ard-sosmed ul li:nth-child(5):hover div {
    transform: translate(62px, -80px);
  }

  .ard-sosmed ul li:nth-child(6) div {
    transform: translate(55px, 135px);
  }

  .ard-sosmed ul li:nth-child(6):hover div {
    transform: translate(65px, -65px);
  }

.ard-sosmed ul li a img:hover {
  filter: drop-shadow(0 0 6px rgb(255, 0, 0));
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.attention {
    position: relative;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 49% 75%, 22% 100%, 22% 75%, 0% 75%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 49% 75%, 50% 100%, 22% 75%, 0% 75%);
    width: 80px;
    text-wrap: nowrap;
    height: 30px;
    margin-bottom: 5px;
    left: 15px;
    background-color: var(--base-color);
    cursor: default;
    color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    opacity: 0;
    font-weight: 800;
  }

  .whore {
    animation: flicker .6s infinite;

    &:hover {
      animation-duration: 10s;
    }
  }

  @keyframes flicker {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @media screen and (max-width: 600px) {
    .ard-sosmed {
      bottom: 22%;
    }
  }




/*rtp start*/
/* ==== GLOBAL LAYOUT ==== */
.grid-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 5px;
}


.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
}

/* ==== SECTION: RTP INFO DI ATAS ==== */
.rtp-live-info {
  max-width: 500px;
  margin: 0 auto 20px;
  text-align: left;
  color: #fff;
}

.rtp-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #21f8ff;
    text-align: center;
}

.rtp-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: #ffffff;
}

/* ==== SECTION: PROVIDER SLIDER ==== */
.provider-slider-wrapper {
  max-width: 1000px;
  margin: 30px auto;
  padding: 5px 15px;
  background: linear-gradient(135deg, #1c1c2b, #10101e);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ffcc00;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
}

.provider-slider {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 0;
  scroll-snap-type: x mandatory;
    scroll-padding-left: 0; 
}

.provider-item {
  flex: 0 0 auto;
  width: 160px;
  height: 90px;
  padding: 6px 10px;
  background: #1a1a2f;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  border: 1px solid #2e2f50;
  transition: all 0.25s ease;
  cursor: pointer;
  scroll-snap-align: start;
  overflow: hidden;
}

.provider-item:hover {
  background: #2b2b3f;
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(255, 204, 0, 0.4);
  border-color: #ffd700;

}

.provider-item img {
  width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
  filter: brightness(1.05);
}

.provider-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.provider-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
}

/* ==== SECTION: GAME GRID & CARD ==== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media (min-width: 480px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.game-card {
  background: #1a1a2f;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
  border: 2px solid #ffd700;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.3);
  border-color: #ffcc00;
}
.game-card:hover .badge {
  color: rgba(0, 0, 0, 0.5);
  text-shadow: none;
  transition: color 0.2s ease;
}
.img-wrapper {
  position: relative;
  overflow: hidden;

}

.img-wrapper img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease-in-out, transform 0.4s ease-in-out;
  will-change: filter, transform;
}

.img-wrapper:hover img {
  filter: brightness(0.6) saturate(1.2);
  transform: scale(1.05);
}

/* Hover Actions (Main, Pola) */
.hover-actions {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
    z-index: 3;
}

.img-wrapper:hover .hover-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.hover-actions a,
.hover-actions button {
  background: linear-gradient(to bottom, #ffd700, #b8860b); 
  border: none;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
  transition: all 0.2s ease-in-out;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

.hover-actions a:hover,
.hover-actions button:hover {
  background: linear-gradient(to bottom, #ffe066, #cc9900);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
}


/* ====== BADGE ====== */
.badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  font-family: 'Segoe UI', 'Arial Black', sans-serif;
  color: #fff;
  background: #ff005d;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.4),
    0 0 6px rgba(255, 255, 255, 0.1);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
      pointer-events: none;


}

.badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shineBadge 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineBadge {
  0%   { left: -75%; }
  100% { left: 125%; }
}



.badge.hot {
  background: linear-gradient(45deg, #ff3e3e, #c70039);
}

.badge.gacor {
  background: linear-gradient(45deg, #ff0099, #7e00c7);
}

.badge.limited {
  background: linear-gradient(45deg, #ffb200, #ff5722);
}

.badge.trend {
  background: linear-gradient(45deg, #00d4ff, #0072ff);
}

@media (min-width: 768px) {
  .badge {
    width: 50px;
    font-size: 11px;
  }
}

.rtp-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  margin-top: 4px;
}

.rtp-label {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
  padding: 2px 6px;
  background: #ffffff10;
  border-radius: 4px;
  width: fit-content;
}
.rtp-bar-container {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.rtp-value {
  font-weight: bold;
  min-width: 40px;
  text-align: right;
  color: #00ff99;
  text-shadow: 0 0 3px #000;
  font-size: 12px;
}

/* ====== CARD FOOTER ====== */
.card-footer {
  padding: 8px;
  background: #121221;
}

.title {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffd700;
  text-shadow: 0 1px 2px #000;
  margin-bottom: 4px;
}

.rtp-bar {
  width: 100%;
  height: 12px;
  background: #2d2d40;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.rtp-bar-fill {
  height: 100%;
  border-radius: 6px;
  position: relative;
  font-size: 11px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}


/* === WARNA HIJAU === */
.rtp-bar-fill.green {
  background: linear-gradient(to right, #009966, #006644, #00b373);
  box-shadow:
    inset 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 3px rgba(0, 255, 0, 0.3);
  color: #ffffff;
}

/* === WARNA ORANGE === */
.rtp-bar-fill.orange {
  background: linear-gradient(to right, #cc9900, #cc6600, #ff6600); /* gelapin tone orange */
  box-shadow:
    inset 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 3px rgba(255, 140, 0, 0.3);
  color: #fff;
}

/* === WARNA MERAH === */
.rtp-bar-fill.red {
  background: linear-gradient(to right, #990000, #cc0000, #ff3333);
  box-shadow:
    inset 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 3px rgba(255, 0, 0, 0.3);
  color: #fff;
}


.rtp-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: rtpShine 2.5s ease-in-out infinite;
  transform: skewX(-20deg);
  pointer-events: none;
}

@keyframes rtpShine {
  0%   { left: -60%; }
  100% { left: 100%; }
}


/* ====== POPUP ====== */


.popup.open {
  display: flex;
}

.popup-content {
  background: linear-gradient(to bottom right, #1f1f2f, #0f0f1f);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #ffcc00;
  box-shadow: 0 0 24px rgba(255, 204, 0, 0.1);
  color: #fff;
  max-width: 360px;
  width: 90%;
  position: relative;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-content h3,
.popup-content h4 {
  margin: 5px 0;
color: #ffcc00;
text-shadow: 0 0 3px rgba(255,204,0,0.3);
  text-align: center;
}

.popup-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
}

.popup-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.popup-content td {
  padding: 6px;
  border-bottom: 1px solid #444;
  vertical-align: top;
  font-size: 13px;
}

.popup-content td:first-child {
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.popup-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 15px;
  flex-direction: row-reverse;

}

.popup-buttons a,
.popup-buttons button {
  flex: 1;
  color: white;
  font-size: 14px;
    text-transform: uppercase;
  font-weight: bold;
  padding: 12px 0;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  border: 1px solid;
}

.popup-buttons a {
    background-image: linear-gradient(to bottom, #ffcc00, #533c00);

}

.popup-buttons button {
  border-color: gold;

  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

/* ====== TABLE POLA ====== */
.pola-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  color: #fff;
}

.pola-table tr td:first-child {
  font-weight: bold;
  white-space: nowrap;
  width: 70px;
}

.pola-table td {
  padding: 6px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.section-title-popup-h3 {
  color: #ffcc00;
  margin: 12px 0 6px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 204, 0, 0.5);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.4);
}

@media (max-width: 480px) {
  .section-title-popup-h3 {
    font-size: 14px;
    margin: 10px 0 5px;
  }
}
/* ====== MAIN BUTTONS ====== */
.btn-main {
  background: limegreen;
  color: #fff;
  padding: 6px 16px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.btn-main-popup {
  flex: 1;
  text-align: center;
  color: white;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.btn-close-popup {
  flex: 1;
  background:linear-gradient(180deg , #ff0000 0%, #440000 100%);
  color:#ffffff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 480px) {
  .provider-item {
    width: 120px;
    padding: 6px 4px;
  }

  .provider-name {
    font-size: 11px;
  }

  .provider-slider-wrapper {
    padding: 10px 10px;
  }

}

@media (max-width: 480px) {
  .rtp-value {
    font-size: 13px;
    color: #00ffcc !important;
  }

  .rtp-label {
    font-size: 11px;
    padding: 2px 8px;
    background: #ffffff15;
  }
}
.title,
.rtp-label,
.rtp-value,
.provider-name {
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
.img-wrapper img {
  max-height: 140px;
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
/* rtp end*/
 
/* ==== BUKTI WD HOMEBET88 ==== */
.jp-h2 {
  text-align: center;
  color: #ffd700;
  text-shadow: 1px 1px 6px rgba(255, 215, 0, 0.5);
  margin-bottom: 20px;
  font-size: 24px;
}

.jp-desc {
  text-align: center;
  color: #ffffff;
  max-width: 500px;
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  padding: 0 20px;
}

.bukti-wd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bukti-wd-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bukti-wd-grid figure {
  margin: 0;
}

.jp-wd-frame {
  background: linear-gradient(180deg, #111, #1e1e2f);
  border: 4px solid #ffd700;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.05);
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.jp-wd-frame::before,
.jp-wd-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(180deg, #ffd700, transparent);
}

.jp-wd-frame::before {
  top: -4px;
  left: -4px;
  border-top-left-radius: 50px;
}

.jp-wd-frame::after {
  bottom: -4px;
  right: -4px;
  border-bottom-right-radius: 12px;
}

.jp-wd-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  cursor: pointer;
}

.bukti-wd-grid figcaption {
  margin-top: 4px;
  font-size: 11px;
  color: #ccc;
  text-align: center;
}

.bukti-wd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bukti-wd-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.bukti-wd-lightbox #zoomedFrame {
  max-width: 80%;
  max-height: 90%;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.bukti-wd-lightbox.active #zoomedFrame {
  transform: scale(1);
}

.bukti-wd-lightbox .jp-wd-frame {
  border: 5px solid #ffd700;
  border-radius: 20px;
  background: linear-gradient(to bottom, #111, #222);
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.4),
    0 0 50px rgba(255, 255, 255, 0.2);
}

.bukti-wd-buttons {
  margin-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-wd-action,
.btn-wd-outline {
  width: 200px;
  padding: 12px 0;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

/* Tombol Aksi - HOMEBET88 */
.btn-wd-action {
  background: linear-gradient(to right, #ffd700, #a67c00);
  color: #000;
  border: none;
}

.btn-wd-action:hover {
  background: #a67c00;
  color: #fff;
  border: 2px solid #ffd700;
}

.btn-wd-outline {
  border: 2px solid #ffd700;
  color: #ffd700;
  background: transparent;
}

.btn-wd-outline:hover {
  background: #ffd700;
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.bukti-wd-subtext {
  text-align: center;
  color: #ccc;
  margin-top: 15px;
  font-size: 12px;
}
/* ==== BUKTI WD HOMEBET88 ==== */

/* ==== FAQ SECTION HOMEBET88 ==== */
.faq-section {
  max-width: 700px;
  margin: 30px auto;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0d0d24, #1a1a30);
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 16px rgba(255, 215, 0, 0.05);
}

.faq-container details {
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.015);
}

.faq-container summary {
  padding: 14px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  color: #ffd700;
  list-style: none;
  background: rgba(255, 215, 0, 0.06);
  text-shadow: 0 1px 2px #000;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-container summary::marker {
  display: none;
}

.faq-container .faq-content {
  padding: 14px 20px;
  color: #eee;
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.faq-container details[open] summary {
  background: linear-gradient(90deg, #ffd700, #ffbb33);
  color: #111;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
/* ==== FAQ SECTION HOMEBET88 END ==== */

/*footer start - HOMEBET88 style*/
.jp-footer {
  background: linear-gradient(to right, #0d0d0d, #070606);
  color: #e0d9ff;
  padding: 20px 20px 10px;
  font-size: 13px;
  line-height: 1.6;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: #ffd700;
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 2px #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #f0eaff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: #ffd700;
  transform: translateX(4px);
}

.footer-desc {
  font-size: 13px;
  color: #c9c9ff;
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 12px;
  color: #bbb;
  margin: 0;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
  color: #ffe066;
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/*footer end - HOMEBET88*/



/*about-site start */
.jp-about-section {
  padding: 40px 20px;
  color: #ffffff;
}

.jp-about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.visi-misi-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}

.visi-item, .misi-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
}

.visi-item h3, .misi-item h3 {
  color: #ffcc00;
  margin-bottom: 10px;
  text-align: center;
}

.visi-item p, .misi-item p {
  color: #ffffff;
  font-size: 13px;
}

.misi-item ul {
  padding-left: 20px;
  font-size: 13px;
}

.misi-item ul li {
  margin-bottom: 8px;
}

.about-buttons {
  margin-top: 20px;
}

.about-buttons a {
  padding: 12px 24px;
  border-radius: 8px;
  margin: 8px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.about-buttons .btn-wd-action {
  background: linear-gradient(to right, #ff0000, #cc0000);
  color: #fff;
}

.about-buttons .btn-wd-outline {
  border: 2px solid #ffcc00;
  color: #ffcc00;
  background: transparent;
}

.about-buttons .btn-wd-action:hover {
  background: #fff;
  color: #cc0000;
}

.about-buttons .btn-wd-outline:hover {
  background: #ffcc00;
  color: #111;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

@media (min-width: 768px) {
  .visi-misi-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*about-site-end */

/*contactus-start*/
.jp-contact-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.95));
  padding: 40px 20px;
  color: #ccc;
  text-align: center;
}

.jp-contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.jp-contact-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  text-align: left;
}

.contact-item h3 {
  color: #ffcc00;
  margin-bottom: 8px;
  font-size: 16px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 6px;
}

.contact-item p {
  font-size: 12px;
  margin-top: 8px;
  color: #aaa;
}

.contact-item a:hover {
  color: #ffcc00;
}

.contact-note {
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: left;
}

.contact-note p {
    font-size: 13px;
    text-align: center;
}

@media (max-width: 480px) {
  .contact-item {
    text-align: center;
  }
} 
/*contactus-end*/

/*linkupdate-start */
.link-update-section {
  background: linear-gradient(145deg, #0e0e25, #1a1a35);
  padding: 40px 20px;
  color: #ddd;
  font-family: 'Poppins', sans-serif;
}
.link-update-container {
  max-width: 720px;
  margin: 0 auto;
}
.link-update-title {
  color: #ffcc00;
  font-size: 24px;
  margin-bottom: 18px;
  text-align: center;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.4);
}
.link-update-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}
.link-sub-title {
  color: #ffcc00;
  font-size: 18px;
  margin: 20px 0 10px;
}
.link-update-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.link-update-list li {
  margin: 10px 0;
}
.link-update-list a {
  display: block;
  padding: 12px 18px;
  background: linear-gradient(145deg, #ffcc00, #cc9900);
  border-radius: 8px;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: transform 0.2s ease;
}
.link-update-list a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.6);
}
.link-update-list small {
  font-size: 12px;
  color: #333;
}
.link-update-note {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  font-size: 13px;
  margin-top: 24px;
  border-radius: 6px;
  text-align: justify;
}
@media (max-width: 480px) {
  .link-update-title { font-size: 20px; }
  .link-update-desc, .link-update-note { font-size: 13px; }
}
/*linkupdate-end */