* {
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.5px;
}
@font-face {
  font-family: dongle;
  src: url(font/Dongle-Regular.ttf);
}
@font-face {
  font-family: seenonim;
  src: url(font/seenonim-v1.otf); /* https://www.behance.net/margaritt1 */
}

@font-face {
  font-family: royalty;
  src: url(font/Royalty\ Free.otf); /* https://www.behance.net/khurasan */
}
@font-face {
  font-family: fredoka;
  src: url(font/Fredoka.ttf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:focus {
  outline: none;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  background: rgba(0, 0, 0, 0.2);

  z-index: 9999;
  will-change: opacity;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#loading.hide {
  opacity: 0;
  pointer-events: none;
}
.welcome-note {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
}

.note-box {
  background: rgba(0, 0, 0, 0.6);
  color: rgb(245, 245, 255);
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 300px;
  text-align: center;
  transform: scale(0.9);
  opacity: 0;
  animation: popIn 0.3s ease forwards;
}

.note-box button {
  margin-top: 15px;
  padding: 5px 15px;
  font-family: dongle;
  background: rgb(0, 157, 58);
  border: none;
  color: white;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
  align-self: center;
}
.note-box button:hover {
  background: rgb(0, 130, 48);
}

@keyframes popIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.dont-show {
  display: flex;
  margin-top: 10px;
  font-size: 12px;
  opacity: 0.8;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.dont-show input {
  margin-right: 5px;
}
body {
  color: rgb(245, 245, 255);
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 215, 130, 0.22),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(210, 170, 80, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 85%,
      rgba(140, 105, 30, 0.15),
      transparent 60%
    ),
    linear-gradient(160deg, #000000 0%, #0b0b0b 35%, #141414 70%, #000000 100%);
  background-blend-mode: screen, screen, screen, normal;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  min-height: 100vh;
  background-size: 100% 200%;
}
html, body {
  background-color: #000;
}

:root {
  --gold: #d4af37;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(180, 180, 180, 0.1);
  color: rgb(233, 176, 53);
  --text-color: rgb(225, 164, 33);
}

a {
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6);
}

img {
  width: 100%;
}

.page {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.text-gabut {
  text-align: center;
  position: absolute;
  top: -27px;
  width: 100%;
  font-family: royalty;
  font-size: 1.8rem;
  opacity: 0.5;
  color: rgb(225, 164, 33);
}

.nav-text {
  font-family: dongle;
  text-decoration: none;
  color: rgb(225, 164, 33);
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 1px;
  pointer-events: auto;
  text-underline-offset: 6px;
  cursor: pointer;
}
.nav-bar a {
  display: inline-block;
  transition: 300ms ease, color 250ms ease;
  position: relative;
  text-decoration: none;
}

.nav-bar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: calc(100% - 8px);
  height: 1px;
  background: currentColor;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 300ms ease, opacity 300ms ease;
  opacity: 0;
  border-radius: 2px;
}

.nav-bar a:hover {
  transform: scale(1.06);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.45);
}

.nav-bar a:hover::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}
.nav-bar a:active {
  transform: scale(0.95);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  padding: 5px 25px;
  align-items: center;
  position: sticky;
  top: 10px;
  background-color: var(--glass-bg);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 999;
  border-radius: 10px;
  border: 1px solid rgb(233, 176, 53, 0.15);
}
.bar {
  display: flex;
  gap: 20px;
  margin: 0 15px 0 0;
}

.group {
  border: 1px solid var(--glass-border);
  padding: 15px;
  border-radius: 10px;
  background-color: rgba(53, 55, 58, 0.3);
  margin: 0px;
}

.text-kategori {
  font-family: seenonim;
  font-size: 1.4rem;
  color: rgb(225, 164, 33, 0.5);
  margin-bottom: 8px;
  opacity: 1;
}

.info-acc {
  display: flex;
  flex-direction: column;
  font-family: dongle;
  font-size: 1.2rem;
  width: 100%;
}

.image-acc {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

#zzz-container,
#hsr-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.click {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  justify-self: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.overlay-content {
  border: 1px solid rgba(180, 180, 180, 0.1);
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 15px;
  max-width: 90%;
  margin: 20px auto;
}

.overlay-flex {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.overlay-flex img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.overlay {
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 180, 180, 0.3) transparent;
  scroll-behavior: smooth;
}

.overlay::-webkit-scrollbar {
  width: 8px;
}

.overlay::-webkit-scrollbar-thumb {
  background: rgba(180, 180, 180, 0.3);
}

.overlay::-webkit-scrollbar-track {
  background: transparent;
}

#overlay-title {
  font-family: dongle;
  font-size: 2.4rem;
  font-weight: 700;
}

#overlay-price {
  font-family: dongle;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 0.6;
  font-weight: 700;
}

#overlay-desc {
  font-size: 1.2rem;
  line-height: 0.8;
  margin-top: 5px;
}

.image-slider {
  position: relative;
}

.wa-btn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  background: rgb(8, 139, 56);
  opacity: 0.9;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  z-index: 2;
  font-family: dongle;
}

.wa-btn:hover {
  transform: scale(1.05);
  opacity: 1;
}
.wa-btn:active {
  transform: scale(0.95);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.image-slider::before,
.image-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
  pointer-events: none;
}

.image-slider::before {
  left: 0;
}

.image-slider::after {
  right: 0;
}

.image-slider {
  height: 100%;
  position: relative;
  width: 80vw;
  max-width: 500px;
  height: 100%;
  aspect-ratio: 1/1;
  align-self: center;
}

.image-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  font-size: 22px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 2;
}

.arrow.left {
  left: 5px;
}

.arrow.right {
  right: 5px;
}

.arrow:active {
  background: rgba(0, 0, 0, 0.1);
}

.arrow {
  opacity: 0;
  transition: 0.2s;
}

.image-slider:hover .arrow {
  opacity: 1;
}

@media (max-width: 600px) {
  .overlay-flex {
    flex-direction: column !important;
  }

  .currency {
    margin-left: 0;
  }

  #list {
    grid-template-columns: 1fr;
  }
}

.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 10px;
  border-radius: 10px;
  opacity: 0;
  transform: translateX(-20px) scale(1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.card.show {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.card:hover {
  transform: translateX(0) scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.4rem;
}
.card-price {
  font-size: 1.3rem;
}
.acc-box {
  background: linear-gradient(
    160deg,
    rgb(10, 10, 10, 0.5),
    rgba(18, 18, 18, 0.5)
  );
  border: 1px solid var(--glass-border);
  padding: 15px;
  margin: 5px;
  border-radius: 16px;
  color: #eaeaea;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.acc-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  opacity: 0;
  transition: 0.3s;
}

.acc-box:hover::before {
  opacity: 1;
}

.acc-box:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border);
}

.inpo-acc {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.currency {
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  align-items: center;
}

.item-icon {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 5px;
  align-items: center;
}

.status {
  font-size: 1.2rem;
}

#list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

#info p {
  font-size: 1.2rem;
}
.sosmed {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 5px;
  
}
.sosmed-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: dongle;
  font-size: 1.2rem;
  color: rgb(245, 245, 255);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  padding: 5px;
  padding-right: 15px;
  transition: all 0.3s ease;
}
.sosmed-icon:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 5px 1px rgba(0, 0, 0, 0.3);
}
summary {
  background-color: rgba(0, 0, 0, 0.2);
  width: 160px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 8px;
  color: rgb(245, 245, 255);
  padding-left: 20px;
  padding-right: 15px;
  list-style: none;
  font-size: 0.9rem;
  cursor: pointer;
}
.jawaban {
  margin-top: 4px;
  margin-left: 15px;
  font-size: 1.2rem;
  line-height: 0.8;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  color: rgb(245, 245, 255);
}

summary::after {
  content: "?";
  float: right;
  transition: 0.3s;
}
.faq[open] summary::after {
  transform: rotate(180deg);
}
.how-to-click-me {
  position: relative;
  bottom: -20px;
  left: 30px;
  opacity: 0.5;
  z-index: -1;
}

.about {
  position: relative;
  text-align: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgb(245, 245, 255);
}
/*----------------------------------------------------------------*/
