@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
  --site-bg-image: url('../img/hotwin88-background.webp');
  --site-bg-home-image: url('../img/hotwin88-background.webp');
  --site-bg-products-image: url('../img/hotwin88-background.webp');
  --site-bg-categories-image: url('../img/hotwin88-background.webp');
  --site-bg-articles-image: url('../img/hotwin88-background.webp');
  --site-bg-contact-image: url('../img/hotwin88-background.webp');
  --site-bg-about-image: url('../img/hotwin88-background.webp');
  --mc-bg-1: #2a0800;
  --mc-bg-2: #7a1500;
  --mc-grass: #c2410c;
  --mc-dirt: #4a0d00;
  --mc-stone: #5a1b08;
  --mc-stone-dark: #2b0902;
  --mc-panel: #ffd3bc;
  --mc-panel-dark: #d88f65;
  --mc-panel-light: #fff1e8;
  --mc-ink: #2b0f07;
  --mc-hotwin-1: #ff5a1a;
  --mc-hotwin-2: #ff8c33;
  --mc-hotwin-3: #ffd700;
  --mc-link: #7a1500;
  --mc-border: #5a1b08;
  --maxw: 1160px;
  --pixel-shadow: 0 5px 0 #3b1206;
  --mc-cursor-default: url('../img/cursors/minecraft-cursor-default.svg') 2 2, auto;
  --mc-cursor-pointer: url('../img/cursors/minecraft-cursor-pointer.svg') 6 2, pointer;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: var(--mc-cursor-default);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--mc-ink);
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  line-height: 1.35;
  background:
    linear-gradient(rgba(42, 8, 0, 0.42), rgba(42, 8, 0, 0.42)),
    var(--site-bg-image),
    linear-gradient(160deg, var(--mc-bg-1) 0%, var(--mc-bg-2) 22%, var(--mc-grass) 44%, #ff6a00 60%, var(--mc-grass) 78%, var(--mc-dirt) 100%);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  cursor: var(--mc-cursor-default);
}

body.page-home {
  --site-bg-image: var(--site-bg-home-image);
}

body.page-products {
  --site-bg-image: var(--site-bg-products-image);
}

body.page-categories {
  --site-bg-image: var(--site-bg-categories-image);
}

body.page-articles {
  --site-bg-image: var(--site-bg-articles-image);
}

body.page-contact {
  --site-bg-image: var(--site-bg-contact-image);
}

body.page-about {
  --site-bg-image: var(--site-bg-about-image);
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: var(--mc-cursor-pointer);
}

button,
.btn,
.card,
summary,
[role='button'],
input[type='button'],
input[type='submit'],
input[type='reset'] {
  cursor: var(--mc-cursor-pointer);
}

input[type='text'],
input[type='search'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='number'],
textarea,
[contenteditable='true'] {
  cursor: text;
}

img {
  max-width: 100%;
  display: block;
  image-rendering: pixelated;
}

.container {
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
}

.topbar {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.62rem, 0.95vw, 0.72rem);
  line-height: 1.5;
  color: #ffe7db;
  padding: 0.6rem 0;
  border-bottom: 4px solid var(--mc-border);
  background: repeating-linear-gradient(
    45deg,
    #5b1305 0,
    #5b1305 12px,
    #7a1e08 12px,
    #7a1e08 24px
  );
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 4px solid var(--mc-border);
  background: linear-gradient(180deg, #ffd8c4 0%, #d88c61 100%);
  box-shadow: 0 3px 0 #4a1709;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  color: #3a1206;
  text-shadow: 2px 2px 0 #ffd7bd;
}

.brand img {
  width: clamp(122px, 15vw, 188px);
  height: auto;
  image-rendering: auto;
}

.brand span {
  color: var(--mc-hotwin-3);
  text-shadow: 2px 2px 0 #a83a11;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 4px solid var(--mc-border);
  border-radius: 0;
  background: linear-gradient(180deg, #f4f4f4 0%, #c8c8c8 100%);
  color: #202020;
  box-shadow: var(--pixel-shadow);
  font-size: 1.05rem;
}

.menu-btn-animated {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.menu-btn-line {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3a1206 0%, #7a1500 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
  transform-origin: center;
  transition:
    transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1),
    top 240ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 180ms ease,
    width 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu-btn-line-top {
  top: 13px;
  transform: translateX(-50%);
}

.menu-btn-line-middle {
  top: 20px;
  transform: translateX(-50%);
}

.menu-btn-line-bottom {
  top: 27px;
  transform: translateX(-50%);
}

.menu-btn-animated.is-open .menu-btn-line-top {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-btn-animated.is-open .menu-btn-line-middle {
  opacity: 0;
  width: 12px;
}

.menu-btn-animated.is-open .menu-btn-line-bottom {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

.menu-btn-animated:hover .menu-btn-line,
.menu-btn-animated:focus-visible .menu-btn-line {
  width: 20px;
}

.nav-menu {
  display: flex;
  gap: 0.95rem;
  align-items: center;
}

.nav-menu a {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.6rem, 0.9vw, 0.68rem);
  line-height: 1.45;
  color: #3f1408;
  padding: 0.55rem 0.52rem;
  border: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
  border-color: #5a1b08;
  background: #ffd1a9;
  color: #2d0f06;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 4px solid var(--mc-border);
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.6rem, 0.95vw, 0.68rem);
  line-height: 1.45;
  cursor: pointer;
  box-shadow: var(--pixel-shadow);
  transition: transform 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #2b2b2b;
}

.btn-primary {
  background: linear-gradient(180deg, var(--mc-hotwin-2) 0%, var(--mc-hotwin-1) 68%, #b93b12 100%);
  color: #2e1208;
}

.btn-outline {
  background: linear-gradient(180deg, #ffe6d7 0%, #e7a27d 100%);
  color: #3a1308;
}

.promo-popup-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(22, 6, 2, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 120;
}

.promo-popup-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-popup {
  position: relative;
  width: min(92vw, 720px);
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  transform: translateY(10px) scale(0.985) perspective(900px) rotateX(5deg);
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.promo-popup-backdrop.open .promo-popup {
  transform: translateY(0) scale(1);
}

.promo-popup-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.35));
  pointer-events: none;
  user-select: none;
}

.promo-popup-hotspot {
  position: absolute;
  bottom: 4.5%;
  height: 10.8%;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.01);
  border-radius: 14px;
  cursor: pointer;
}

.promo-popup-hotspot:hover,
.promo-popup-hotspot:focus-visible {
  background: rgba(255, 215, 80, 0.06);
  border-color: rgba(255, 215, 80, 0.35);
  outline: none;
}

.promo-popup-hotspot-login {
  left: 6.2%;
  width: 39.2%;
}

.promo-popup-hotspot-daftar {
  right: 6.2%;
  width: 39.2%;
}

@media (max-width: 520px) {
  .promo-popup {
    width: 96vw;
  }

  .promo-popup-hotspot {
    bottom: 4%;
    height: 11.5%;
  }
}

.hero {
  padding: 2.8rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 4px solid var(--mc-border);
  border-radius: 0;
  box-shadow: var(--pixel-shadow);
  padding: 0.5rem 0.7rem;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.58rem, 0.9vw, 0.66rem);
  line-height: 1.5;
  color: #4a1809;
  background: linear-gradient(180deg, #ffd88a 0%, #ff9a42 100%);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
}

h1,
h2,
h3,
.section-head,
.stat b,
.site-footer h3,
.card h3 {
  font-family: 'Press Start 2P', monospace;
}

h1 {
  font-size: clamp(1.05rem, 2.6vw, 1.45rem);
  margin-top: 0.95rem;
  color: #2b1208;
}

h2 {
  font-size: clamp(0.82rem, 2vw, 1.05rem);
  color: #ffe2d2;
}

h3 {
  font-size: clamp(0.78rem, 1.75vw, 0.92rem);
  color: #3d1409;
}

.lead {
  font-size: 1.34rem;
  color: #ffe0ce;
  max-width: 58ch;
}

.hero h1 {
  color: #fff1e3;
  text-shadow: 1px 1px 0 #5f1d09;
}

.hero-card {
  border: 4px solid var(--mc-border);
  border-radius: 0;
  box-shadow: var(--pixel-shadow);
  padding: 1.05rem;
  background: linear-gradient(180deg, var(--mc-panel-light) 0%, var(--mc-panel) 100%);
  animation: floatIn 380ms steps(6, end) both;
}

.hero-card .price {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.95rem;
  color: #b43b11;
}

.stat-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.stat {
  border: 3px solid var(--mc-border);
  border-radius: 0;
  box-shadow: 0 4px 0 #2b2b2b;
  padding: 0.62rem;
  text-align: center;
  background: linear-gradient(180deg, #fbfbfb 0%, #d5d5d5 100%);
}

.stat b {
  display: block;
  font-size: clamp(0.62rem, 0.95vw, 0.72rem);
  margin-bottom: 0.15rem;
}

.section {
  padding: 3.2rem 0;
}

.section + .section {
  margin-top: 1.5rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.45rem;
}

.section-head p {
  margin: 0;
  color: #ffe8d9;
  text-shadow: 1px 1px 0 rgba(74, 23, 9, 0.45);
  max-width: 56ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card {
  border: 4px solid var(--mc-border);
  border-radius: 0;
  box-shadow: var(--pixel-shadow);
  padding: 1rem 1rem 1.1rem;
  background: linear-gradient(180deg, var(--mc-panel-light) 0%, var(--mc-panel) 100%);
  transition: transform 0.12s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.card p {
  margin: 0 0 0.86rem;
  color: #4a1709;
}

.card .badge {
  margin-bottom: 0.55rem;
}

.card h3 {
  margin: 0.1rem 0 0.55rem;
  line-height: 1.35;
}

.card .btn {
  margin-top: 0.2rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: #ffb24a;
  box-shadow: 0 9px 0 #3b1206, 0 0 0 3px rgba(255, 178, 74, 0.28);
}

.guide-card:focus-visible {
  outline: 3px solid #ffe08f;
  outline-offset: 2px;
  border-color: #ffcf74;
  box-shadow: 0 9px 0 #3b1206, 0 0 0 4px rgba(255, 207, 116, 0.35);
}

@media (hover: none), (pointer: coarse) {
  .guide-card {
    transition: border-color 0.12s ease, box-shadow 0.12s ease;
  }

  .guide-card:hover {
    transform: none;
    border-color: var(--mc-border);
    box-shadow: var(--pixel-shadow);
  }

  .guide-card:active {
    border-color: #ffbf67;
    box-shadow: 0 6px 0 #3b1206;
  }

  .price-tag::after {
    animation-duration: 4.2s;
    opacity: 0.72;
  }
}

.guide-card .price-tag {
  margin-top: auto;
}

.guide-card .price-note {
  margin-bottom: 0;
}

.article-thumb {
  width: calc(100% + 2rem);
  max-width: none;
  margin: -1rem -1rem 0.8rem;
  height: clamp(120px, 18vw, 170px);
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  background: #1f0702;
  border-bottom: 3px solid var(--mc-border);
}

.front-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.front-banner-item {
  display: block;
  border: 4px solid var(--mc-border);
  box-shadow: var(--pixel-shadow);
  background: linear-gradient(180deg, #fff0e5 0%, #ffd0b0 100%);
  overflow: hidden;
}

.front-banner-item img {
  width: 100%;
  height: clamp(140px, 17vw, 190px);
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  background: #1f0702;
  border-bottom: 3px solid var(--mc-border);
}

.front-banner-item span {
  display: block;
  padding: 0.6rem 0.65rem;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.62rem, 1.05vw, 0.76rem);
  line-height: 1.55;
  color: #3b1207;
}

.article-page-banner {
  margin: 0 0 1rem;
  border: 4px solid var(--mc-border);
  box-shadow: var(--pixel-shadow);
  background: linear-gradient(180deg, #fff0e6 0%, #ffd7bd 100%);
}

.article-page-banner img {
  width: 100%;
  height: clamp(200px, 28vw, 360px);
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  background: #1f0702;
  border-bottom: 3px solid var(--mc-border);
}

.article-page-banner figcaption {
  margin: 0;
  padding: 0.5rem 0.7rem 0.62rem;
  font-size: 1.08rem;
  color: #5a1b08;
}

.badge {
  display: inline-block;
  border: 3px solid #8a2d11;
  border-radius: 0;
  padding: 0.3rem 0.58rem;
  font-weight: 700;
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
  color: #3d1207;
  background: linear-gradient(180deg, #ffd08f 0%, #ff8c33 100%);
}

.search-box {
  width: min(680px, 100%);
  margin-bottom: 1rem;
}

.search-box input {
  width: 100%;
  border: 4px solid var(--mc-border);
  border-radius: 0;
  box-shadow: var(--pixel-shadow);
  padding: 0.7rem 0.92rem;
  font-size: 1.28rem;
  font-family: 'VT323', monospace;
  color: #3c1408;
  background: #fff1e8;
}

.price-tag {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border: 3px solid #8a2d11;
  padding: 0.38rem 0.62rem;
  background: linear-gradient(180deg, #ffd08f 0%, #ff8c33 100%);
  box-shadow: 0 3px 0 #4a1708;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.72rem, 1.15vw, 0.84rem);
  color: #4a1708;
  margin: 0.35rem 0 0.48rem;
  line-height: 1.45;
}

.price-tag::after {
  content: '';
  position: absolute;
  top: -35%;
  left: -58%;
  width: 38%;
  height: 180%;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0) 100%);
  animation: priceShine 2.8s linear infinite;
}

.price-note {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: #5a1d0c;
}

article {
  border: 4px solid var(--mc-border);
  border-radius: 0;
  box-shadow: var(--pixel-shadow);
  padding: 1.1rem;
  background: linear-gradient(180deg, var(--mc-panel-light) 0%, var(--mc-panel) 100%);
}

article h1 {
  font-size: clamp(0.94rem, 2.2vw, 1.2rem);
}

article h2,
article h3 {
  color: #2b1208;
}

article p,
article li {
  color: #3d1409;
  line-height: 1.5;
}

article h1 {
  margin-bottom: 0.7rem;
}

article h2 {
  margin-top: 1.05rem;
  margin-bottom: 0.45rem;
}

article h3 {
  margin-top: 0.95rem;
  margin-bottom: 0.4rem;
}

article p + p {
  margin-top: 0.62rem;
}

article ul,
article ol {
  margin-top: 0.45rem;
  margin-bottom: 0.75rem;
  padding-left: 1.1rem;
}

.products-seo-block {
  margin-top: 1.4rem;
}

.breadcrumb {
  margin: 0.7rem 0 1rem;
  color: #ffd6be;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.58rem, 0.85vw, 0.66rem);
  line-height: 1.45;
}

.breadcrumb a {
  color: #ffd700;
}

main.section > .container > .breadcrumb {
  color: #ffd9bf;
}

main.section > .container > h1,
main.section > .container > .section-head h1 {
  color: #ffe9d8;
  text-shadow: 1px 1px 0 rgba(74, 23, 9, 0.65);
}

main.section > .container > .lead {
  color: #ffd9c2;
  text-shadow: 1px 1px 0 rgba(74, 23, 9, 0.45);
}

.cta-strip {
  margin-top: 1.7rem;
  margin-bottom: 1rem;
  border: 4px solid var(--mc-border);
  border-radius: 0;
  box-shadow: var(--pixel-shadow);
  padding: 0.9rem;
  background: linear-gradient(180deg, #ffd28f 0%, #ff8a36 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-slider-section {
  padding: 1rem 0 1.35rem;
}

.home-slider {
  --home-slider-interval: 6800ms;
  position: relative;
  border: 4px solid var(--mc-border);
  box-shadow: var(--pixel-shadow);
  overflow: hidden;
  background: #2b0902;
}

.home-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 212, 71, 0) 20%, rgba(255, 212, 71, 0.14) 45%, rgba(255, 212, 71, 0) 70%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 5px);
}

.home-slider-track {
  position: relative;
  min-height: clamp(240px, 38vw, 440px);
  background: #2b0902;
}

.home-slide {
  position: absolute;
  inset: 0;
  background: #2b0902;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 920ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.home-slide img {
  display: block;
  width: 100%;
  height: clamp(240px, 38vw, 440px);
  object-fit: cover;
  background: #2b0902;
  transform: scale(1.03);
  transition: filter 900ms ease;
  filter: saturate(1.02) contrast(1.03);
}

.home-slide.is-active img {
  filter: saturate(1.08) contrast(1.08);
}

.home-slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, rgba(43, 9, 2, 0) 0%, rgba(43, 9, 2, 0.8) 50%, rgba(43, 9, 2, 0.95) 100%);
}

.home-slide-overlay h2 {
  margin: 0;
  color: #ffe8d9;
  font-size: clamp(0.84rem, 2.2vw, 1.12rem);
  line-height: 1.45;
}

.home-slide-overlay p {
  margin: 0.35rem 0 0;
  color: #ffd3bd;
  max-width: 72ch;
  font-size: clamp(1.18rem, 1.95vw, 1.42rem);
  line-height: 1.4;
}

.home-slide-overlay h2,
.home-slide-overlay p {
  opacity: 0.55;
  transform: translateY(8px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.home-slide.is-active .home-slide-overlay h2,
.home-slide.is-active .home-slide-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.home-slider-dots {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 4;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.28rem;
  border: 2px solid rgba(255, 228, 200, 0.55);
  background: rgba(43, 9, 2, 0.52);
}

.home-slider-dot {
  position: relative;
  width: 34px;
  height: 11px;
  border: 2px solid #ffe4c8;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  overflow: hidden;
}

.home-slider-dot::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #ff9f45 0%, #ffd447 100%);
}

.home-slider-dot.active {
  background: rgba(255, 212, 71, 0.2);
  border-color: #fff7d4;
}

.home-slider-dot.active::after {
  animation: sliderDotFill var(--home-slider-interval) linear forwards;
}

.home-slider.is-paused .home-slider-dot.active::after {
  animation-play-state: paused;
}

.marquee-wrap {
  overflow: hidden;
  border: 4px solid var(--mc-border);
  box-shadow: var(--pixel-shadow);
  background: linear-gradient(180deg, #fff0e6 0%, #ffd7c1 100%);
  padding: 0.9rem 0;
}

@keyframes priceShine {
  0% {
    left: -58%;
  }

  100% {
    left: 124%;
  }
}

.marquee-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding: 0 0.9rem;
  animation: marqueeMove 42s linear infinite;
}

.marquee-track-slow {
  animation-duration: 52s;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.payment-marquee-panel {
  margin-top: 1.05rem;
  border: 0;
  box-shadow: none;
  outline: 0;
  background: transparent;
  padding: 0.6rem 0;
}

.payment-marquee-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(240px, 1fr);
  gap: 1rem;
  align-items: center;
}

.payment-marquee-wrap {
  overflow: hidden;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(23, 8, 3, 0.85) 0%, rgba(11, 4, 2, 0.95) 100%);
  padding: 0.7rem 0;
}

.payment-marquee-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  padding: 0 0.75rem;
  animation: marqueeMove 72s linear infinite;
}

.payment-marquee-wrap:hover .payment-marquee-track {
  animation-play-state: paused;
}

.payment-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 52px;
  padding: 0.68rem 1rem;
  border: 0;
  box-shadow: none;
  outline: 0;
  background: linear-gradient(180deg, #ffe6a0 0%, #c47a1d 100%);
  color: #fff7e2;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.66rem, 0.95vw, 0.84rem);
  line-height: 1.2;
  letter-spacing: 0.35px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.payment-marquee-panel,
.payment-marquee-wrap,
.payment-pill {
  border-color: transparent !important;
  box-shadow: none !important;
}

.payment-copy h3 {
  margin: 0 0 0.4rem;
  color: #ffcf4a;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.74rem, 1.05vw, 0.9rem);
  line-height: 1.5;
}

.payment-copy p {
  margin: 0;
  color: #ffe2cd;
  font-size: clamp(0.76rem, 0.95vw, 0.92rem);
  line-height: 1.65;
}

.marquee-card {
  width: min(84vw, 340px);
  border: 3px solid var(--mc-border);
  box-shadow: 0 4px 0 #3b1206;
  padding: 0.8rem;
  background: linear-gradient(180deg, #fff8f2 0%, #ffdabe 100%);
}

.marquee-card h3 {
  color: #2b1208;
  margin-bottom: 0.45rem;
}

.marquee-card p {
  margin: 0;
  color: #4a1709;
}

.faq-accordion {
  border: 4px solid var(--mc-border);
  box-shadow: var(--pixel-shadow);
  background: linear-gradient(180deg, #5f1404 0%, #7d210a 100%);
  padding: 0.4rem;
}

.faq-acc-item {
  border-bottom: 2px solid rgba(255, 184, 102, 0.35);
}

.faq-acc-item:last-child {
  border-bottom: 0;
}

.faq-acc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.78rem 0.68rem;
  color: #ffeac9;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.58rem, 0.85vw, 0.66rem);
}

.faq-acc-item summary::-webkit-details-marker {
  display: none;
}

.faq-acc-item summary::after {
  content: '+';
  color: #ffd447;
  font-size: 0.78rem;
  line-height: 1;
}

.faq-acc-item[open] summary::after {
  content: '-';
}

.faq-acc-item p {
  margin: 0;
  padding: 0 0.68rem 0.85rem;
  color: #ffdbc4;
}

.review-card {
  background: linear-gradient(180deg, #fff3e8 0%, #ffcfa8 100%);
}

.review-marquee {
  position: relative;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0.35rem 0;
}

.review-marquee::before,
.review-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  z-index: 3;
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(42, 8, 0, 0.96) 0%, rgba(42, 8, 0, 0) 100%);
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(42, 8, 0, 0.96) 0%, rgba(42, 8, 0, 0) 100%);
}

.review-marquee .marquee-track {
  gap: 1rem;
}

.review-marquee .review-card {
  border: 2px solid rgba(90, 27, 8, 0.75);
  border-radius: 18px;
  box-shadow: 0 8px 14px rgba(59, 18, 6, 0.28);
  animation: reviewOrbit 4.8s ease-in-out infinite;
}

.review-marquee .review-card:nth-child(even) {
  animation-delay: 0.6s;
  animation-direction: alternate-reverse;
}

.review-stars {
  color: #ffd447;
  text-shadow: 1px 1px 0 #8a3a11;
  margin-bottom: 0.4rem !important;
  letter-spacing: 1px;
}

.site-footer {
  margin-top: 2.3rem;
  border-top: 4px solid var(--mc-border);
  background: linear-gradient(180deg, var(--mc-stone) 0%, var(--mc-stone-dark) 100%);
  color: #ffe5d5;
  padding: 1.7rem 0 1.1rem;
}

.site-footer h3 {
  color: #fff3e8;
}

.site-footer p {
  color: #ffe0cf;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.3rem;
}

.site-footer a {
  color: #ffd447;
}

.footer-map {
  margin-top: 0.35rem;
}

.footer-map-wide {
  margin-top: 1rem;
}

.footer-map p {
  margin: 0.25rem 0;
  color: #ffd8c4;
}

.footer-map a {
  font-weight: 700;
}

.footer-map iframe,
.footer-map-wide iframe {
  width: 100%;
  height: 240px;
  border: 3px solid rgba(255, 212, 125, 0.7);
  box-shadow: 0 4px 0 #3b1206;
  margin-top: 0.55rem;
}

.copy {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 2px solid rgba(255, 172, 125, 0.6);
  font-size: 1.05rem;
  color: #ffd8c1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dmca-wrap {
  margin-top: 0;
  padding-top: 0;
  display: flex;
  justify-content: flex-end;
}

.seotoxic-signature {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.45rem;
  border: 1px dashed rgba(255, 212, 125, 0.65);
  background: rgba(255, 117, 24, 0.12);
  color: #ffd447;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.45rem, 0.7vw, 0.55rem);
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.dmca-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dmca-badge img {
  width: 120px;
  height: auto;
  border: 2px solid rgba(255, 212, 125, 0.55);
  box-shadow: 0 3px 0 #3b1206;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 420ms steps(6, end) forwards;
}

.reveal.delay-1 { animation-delay: 80ms; }
.reveal.delay-2 { animation-delay: 160ms; }
.reveal.delay-3 { animation-delay: 240ms; }

/* Mobile bottom bar ala contoh dengan style minecraft */
.mc-mobile-bottom-bar {
  display: none;
}

.mc-social-dock {
  position: fixed;
  left: 14px;
  bottom: 154px;
  z-index: 10010;
  width: 96px;
  height: 96px;
}

.mc-social-toggle {
  position: relative;
  width: 96px;
  height: 96px;
  border: 4px solid #3b1206;
  box-shadow: 0 4px 0 #2b0902, 0 0 16px rgba(255, 190, 40, 0.5);
  background: linear-gradient(180deg, #ffd447 0%, #ff981f 100%);
  display: grid;
  place-items: center;
  padding: 0;
}

.mc-social-toggle::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 2px solid rgba(255, 244, 181, 0.8);
  pointer-events: none;
}

.mc-social-toggle img {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
}

.mc-social-burst {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.mc-social-item {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 10px rgba(255, 208, 87, 0.65), 0 3px 0 #2b0902;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: 'VT323', monospace;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translate(0, 0) scale(0.55);
  transition: transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 180ms ease;
  pointer-events: none;
}

.mc-social-item:nth-child(1) { transition-delay: 0ms; }
.mc-social-item:nth-child(2) { transition-delay: 24ms; }
.mc-social-item:nth-child(3) { transition-delay: 44ms; }
.mc-social-item:nth-child(4) { transition-delay: 62ms; }
.mc-social-item:nth-child(5) { transition-delay: 78ms; }

.mc-social-item-bonus { background: radial-gradient(circle at 30% 30%, #ffe285 0%, #ffac1e 58%, #e57200 100%); }
.mc-social-item-wa { background: radial-gradient(circle at 30% 30%, #74ff9a 0%, #10be43 62%, #0d7e31 100%); }
.mc-social-item-telegram { background: radial-gradient(circle at 30% 30%, #78e7ff 0%, #1a8ee9 62%, #105ea3 100%); }
.mc-social-item-ig { background: radial-gradient(circle at 30% 30%, #ffcc73 0%, #ff4f85 38%, #9751ff 72%, #4f6bff 100%); }
.mc-social-item-fb { background: radial-gradient(circle at 30% 30%, #7ba4ff 0%, #2568f7 60%, #0f3ea2 100%); }

.mc-social-dock.is-open .mc-social-item {
  opacity: 1;
  pointer-events: auto;
}

.mc-social-dock.is-open .mc-social-item-bonus { transform: translate(0, -128px) scale(1); }
.mc-social-dock.is-open .mc-social-item-wa { transform: translate(84px, -186px) scale(1); }
.mc-social-dock.is-open .mc-social-item-telegram { transform: translate(170px, -140px) scale(1); }
.mc-social-dock.is-open .mc-social-item-ig { transform: translate(136px, -58px) scale(1); }
.mc-social-dock.is-open .mc-social-item-fb { transform: translate(52px, -34px) scale(1); }

.mc-social-dock.is-open .mc-social-toggle {
  box-shadow: 0 3px 0 #2b0902, 0 0 18px rgba(255, 212, 80, 0.72);
}

@media only screen and (max-width: 1100px) {
  .mc-social-dock {
    left: 12px;
    bottom: 142px;
    width: 88px;
    height: 88px;
  }

  .mc-social-toggle {
    width: 88px;
    height: 88px;
  }

  .mc-social-toggle img {
    width: 42px;
    height: 42px;
  }

  .mc-social-item {
    width: 68px;
    height: 68px;
    left: 10px;
    bottom: 10px;
    font-size: 1.1rem;
  }

  .mc-social-dock.is-open .mc-social-item-bonus { transform: translate(0, -116px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-wa { transform: translate(76px, -166px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-telegram { transform: translate(150px, -128px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-ig { transform: translate(120px, -52px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-fb { transform: translate(46px, -28px) scale(1); }
}

@media only screen and (max-width: 780px) {
  body {
    padding-bottom: 88px;
  }

  .topbar {
    overflow: hidden;
  }

  .topbar-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    width: 100%;
    min-width: 0;
  }

  .topbar-content.topbar-ticker {
    width: max-content;
    min-width: max-content;
    animation: marqueeMove 16s linear infinite;
  }

  .topbar-content.topbar-ticker span {
    display: inline-flex;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .mc-mobile-bottom-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    padding: 10px;
    border: 4px solid var(--mc-border);
    border-radius: 0;
    box-shadow: 0 8px 0 #3b1206;
    background: linear-gradient(180deg, #ffd8c3 0%, #d88a5f 100%);
  }

  .mc-mobile-bottom-bar::before {
    content: '';
    position: absolute;
    inset: -2px;
    pointer-events: none;
    border: 2px solid rgba(255, 205, 136, 0.55);
  }

  .mc-mobile-bottom-link {
    text-align: center;
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(0.56rem, 2.3vw, 0.64rem);
    line-height: 1.45;
    padding: 0.62rem 0.28rem;
    border: 3px solid var(--mc-border);
    box-shadow: 0 3px 0 #2b2b2b;
    color: #3a1308;
    background: linear-gradient(180deg, #ffe9dc 0%, #efb08b 100%);
  }

  .mc-mobile-bottom-link.active,
  .mc-mobile-bottom-link:hover {
    background: linear-gradient(180deg, #ffbe75 0%, #ff8a3b 100%);
    color: #3a1909;
  }

  .mc-social-dock {
    left: 10px;
    bottom: 136px;
    width: 84px;
    height: 84px;
  }

  .mc-social-toggle {
    width: 84px;
    height: 84px;
  }

  .mc-social-toggle img {
    width: 40px;
    height: 40px;
  }

  .mc-social-item {
    width: 64px;
    height: 64px;
    left: 10px;
    bottom: 10px;
    font-size: 1.06rem;
  }

  .mc-social-dock.is-open .mc-social-item-bonus { transform: translate(0, -108px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-wa { transform: translate(70px, -154px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-telegram { transform: translate(136px, -118px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-ig { transform: translate(108px, -48px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-fb { transform: translate(42px, -24px) scale(1); }
}

@media (max-width: 520px) {
  .mc-social-dock {
    left: 8px;
    bottom: 132px;
    width: 78px;
    height: 78px;
  }

  .mc-social-toggle {
    width: 78px;
    height: 78px;
  }

  .mc-social-toggle img {
    width: 38px;
    height: 38px;
  }

  .mc-social-item {
    width: 60px;
    height: 60px;
    left: 9px;
    bottom: 9px;
    font-size: 1rem;
  }

  .mc-social-dock.is-open .mc-social-item-bonus { transform: translate(0, -98px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-wa { transform: translate(62px, -140px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-telegram { transform: translate(122px, -108px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-ig { transform: translate(96px, -42px) scale(1); }
  .mc-social-dock.is-open .mc-social-item-fb { transform: translate(38px, -20px) scale(1); }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mcEdgeRun {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes sliderDotFill {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes reviewOrbit {
  0%,
  100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-4px) rotate(0.5deg); }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(24, 7, 2, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
    z-index: 44;
  }

  body.nav-open .site-header::after {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    position: relative;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    bottom: auto;
    right: 0;
    width: min(88vw, 360px);
    background: linear-gradient(180deg, #ffd9c6 0%, #e9ad89 100%);
    border-bottom: 4px solid var(--mc-border);
    border-left: 4px solid var(--mc-border);
    border-top: 4px solid var(--mc-border);
    box-shadow: var(--pixel-shadow);
    display: flex;
    padding: 0.8rem 0.9rem 0.95rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    max-height: min(74dvh, 520px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(26px);
    transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 220ms ease, visibility 220ms ease;
    z-index: 50;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav-menu a {
    width: 100%;
    border: 3px solid #9e3d1b;
    padding: 0.62rem 0.6rem;
    background: linear-gradient(180deg, #fff5ee 0%, #ffd6bb 100%);
    box-shadow: 0 2px 0 #5a1b08;
    font-size: clamp(0.62rem, 2.35vw, 0.7rem);
  }

  .nav-menu a.btn.btn-primary {
    margin-top: 0.15rem;
    text-align: center;
  }

  .menu-btn {
    display: block;
    position: relative;
    z-index: 52;
  }

  body.nav-open .menu-btn {
    background: linear-gradient(180deg, #ffe4d2 0%, #f2b089 100%);
    border-color: #7a2c10;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-slider-track {
    min-height: clamp(200px, 44vw, 320px);
  }

  .home-slide img {
    height: clamp(200px, 44vw, 320px);
  }

  .article-thumb {
    height: clamp(150px, 28vw, 210px);
    object-fit: cover;
  }

  .front-banner-item img {
    height: clamp(165px, 30vw, 230px);
    object-fit: cover;
  }

  .article-page-banner img {
    height: clamp(240px, 44vw, 360px);
    object-fit: cover;
  }

  .home-slide img {
    height: clamp(220px, 46vw, 340px);
    object-fit: cover;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .section-head p {
    max-width: 100%;
  }

  .marquee-card {
    width: min(88vw, 300px);
  }

  .front-banner-grid {
    grid-template-columns: 1fr;
  }

  .review-marquee::before,
  .review-marquee::after {
    width: 48px;
  }

  .payment-marquee-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .payment-copy {
    padding: 0 0.2rem 0.1rem;
  }

  .payment-pill {
    min-width: 146px;
    min-height: 46px;
    padding: 0.58rem 0.78rem;
    font-size: clamp(0.62rem, 1.8vw, 0.76rem);
  }

  .faq-acc-item summary {
    font-size: clamp(0.56rem, 2.4vw, 0.64rem);
  }

  .footer-map iframe,
  .footer-map-wide iframe {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .container {
    width: 96vw;
  }

  body {
    font-size: 1.35rem;
  }

  .topbar {
    font-size: clamp(0.58rem, 2.5vw, 0.7rem);
    line-height: 1.45;
    padding: 0.45rem 0;
  }

  .payment-marquee-panel {
    padding: 0.64rem;
  }

  .payment-pill {
    min-width: 128px;
    min-height: 42px;
    padding: 0.52rem 0.66rem;
    font-size: clamp(0.58rem, 2.7vw, 0.72rem);
  }

  .payment-copy h3 {
    font-size: clamp(0.66rem, 3vw, 0.78rem);
  }

  .payment-copy p {
    font-size: clamp(0.68rem, 2.8vw, 0.8rem);
  }

  .nav-wrap {
    padding: 0.52rem 0;
  }

  .brand img {
    width: clamp(98px, 33vw, 128px);
  }

  .menu-btn {
    width: 40px;
    height: 40px;
    border-width: 3px;
    font-size: 0.92rem;
  }

  .nav-menu {
    width: min(94vw, 340px);
    border-left: 4px solid var(--mc-border);
    box-shadow: var(--pixel-shadow);
    padding: 0.72rem;
  }

  .nav-menu a {
    font-size: clamp(0.64rem, 3.2vw, 0.76rem);
    padding: 0.56rem 0.52rem;
  }

  .front-banner-item span {
    font-size: clamp(0.68rem, 3.4vw, 0.8rem);
    line-height: 1.6;
    padding: 0.68rem 0.7rem;
  }

  .article-thumb {
    height: clamp(165px, 50vw, 220px);
  }

  .front-banner-item img {
    height: clamp(170px, 52vw, 230px);
  }

  .article-page-banner img {
    height: clamp(235px, 62vw, 360px);
  }

  .home-slide img {
    height: clamp(210px, 54vw, 320px);
  }

  .hero {
    padding-top: 2.2rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .home-slider-section {
    padding-top: 0.75rem;
  }

  .home-slide-overlay p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
