:root {
  --primary-bg: #0A0C19;
  --card-bg: #171a25;
  --footer-bg: #0A0C19;
  --accent: #c6f164;
  --accent-dark: #a7d853;
  --accent-btn: #c6f164;
  --accent-btn-hover: #d2fa7d;
  --white: #fff;
  --gray: #bfc7d5;
  --dark-gray: #22232d;
  --border-card: #24263a;
  --border-footer: #23253a;
  --font-main: 'Poppins', sans-serif;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* Layout & Typography */
body {
  font-family: var(--font-main);
  background-color:var(--primary-bg);
  color: var(--white);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 50px;
}
.container-1{
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 50px;
  transform: translateY(150px);
}
.container-2{
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 50px;
  transform: translateY(-450px);
}
.container-blog {
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 50px;
  transform: translateY(-350px);
  margin-bottom: -250px;
}
/* Accent */
.accent {
  color: var(--accent);
  font-weight: 700;
}
.lang-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 44px;
  min-width: 220px;
  background: rgba(30,34,38,0.97);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  padding: 18px 20px 14px 20px;
  z-index: 2000;
  font-family: inherit;
}

.lang-dropdown-header {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.lang-dropdown-list {
  margin-bottom: 20px;
}

.lang-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 400;
}

.lang-option:last-child {
  margin-bottom: 0;
}

.lang-option input[type="radio"] {
  display: none;
}

.custom-check {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border-radius: 8px;
  border: 2px solid #999;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border 0.2s, background 0.2s;
}

.lang-option input[type="radio"]:checked + .custom-check {
  border-color: #c8fa64;
  background: #c8fa64;
}

.custom-check::after {
  content: "";
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: #333;
}

.lang-option input[type="radio"]:checked + .custom-check::after {
  display: block;
}

.lang-dropdown-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.lang-dropdown-close {
  background: #222;
  color: #fff;
  border: none;
  padding: 7px 22px;
  border-radius: 7px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-dropdown-done {
  background: #c8fa64;
  color: #1e2226;
  border: none;
  padding: 7px 22px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-dropdown-close:hover {
  background: #444;
}

.lang-dropdown-done:hover {
  background: #e1ff99;
}
#google_translate_element,
.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget {
  display: none !important;
}
body { top: 0 !important; }

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.36,.73,.56,.98), transform 0.7s cubic-bezier(.36,.73,.56,.98);
  will-change: opacity, transform;
}
.fade-in-section.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 600px) {
  .fade-in-section {
    transition: opacity 0.38s cubic-bezier(.36,.73,.56,.98), transform 0.38s cubic-bezier(.36,.73,.56,.98);
    /* atau langsung: opacity: 1; transform: none; jika ingin disable di mobile */
  }
}
/* Hide native Google Translate select */
.goog-te-banner-frame.skiptranslate, body > .skiptranslate {
  display: none !important;
}
#google_translate_element .goog-te-gadget select {
  display: none !important;
}
#google_translate_element .goog-te-gadget {
  color: transparent !important;
}

/* ========================================== HERO SECTION (HOMEPAGE) ========================================== */
.hero {
  max-width: 1440px;
  padding: 4rem 0 2.3rem 0;
  width: 100%;
}
.hero-title-wrapper {
  position: relative;
  z-index: 1;
}
.hero-title {
  position: relative;
  z-index: 1;
}
.hero-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 90px;
}
.hero-text p {
  color: var(--gray);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
}
.btn-primary {
  background: var(--accent-btn);
  color: #151717;
  border: none;
  padding: 0.95rem 2rem;
  border-radius: 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 2px 8px 0 rgba(150, 220, 90, .12);
}
.btn-primary:hover {
  background: var(--accent-btn-hover);
}
.btn-secondary {
  background: #2a2c3e;
  border: 1.5px solid #2a2c3e;
  color: var(--white);
  padding: 0.95rem 2rem;
  border-radius: 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: #22242e;
}
.hero-image {
  flex: 1;
  text-align: center;
  margin-right: 80px;
}
.hero-image img {
  max-height: 650px;
  max-width: 100%;
  border-radius: 2rem;
}
.winner-section {
  position: absolute;
  right: 40px;
  bottom: 24px;
  min-width: 250px;
  min-height: 400px;
  padding: 19px 0px 15px 20px;
  margin-right: 15px;
  align-items: flex-end;
  /* transition: box-shadow .18s; (optional) */
}
.avatars-above-card {
  position: relative;
  width: 140px;
  gap: 12px;
  display: flex;
  margin-bottom: 24px;
  background: rgba(94, 92, 92, 0.315);
  border: 1.2px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.11);
  padding: 10px 10px 10px 14px;
  margin-left: auto;  
}
.top-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #23272f;
  object-fit: cover;
  box-shadow: 0 4px 16px 0 rgba(0,0,0,0.10);
}

.last-winners-card {
  background: rgba(94, 92, 92, 0.315);
  border: 1.2px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(0,0,0,0.17);
  color: #fff;
  padding: 19px 20px 15px 20px;
  backdrop-filter: blur(8px);
  margin-left: auto;  
  /* transition: box-shadow .18s; (optional) */
}
.lw-header {
  font-size: 1.11rem;
  font-weight: 200;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lw-header .dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ffe15b;
  box-shadow: 0 0 8px #ffe15b55;
  margin-right: 3px;
}
.lw-divider {
  border: none;
  border-top: 1.5px solid rgba(220,220,255,0.19);
  margin: 7px 0 11px 0;
}
.lw-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lw-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0;
}
.winner-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg,#c6f16422 0%,#191b26 100%);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 1.5px 10px 0 #0003;
}
.lw-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.7px;
}
.winner-name {
  font-weight: 100;
  font-size: 1.16rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.winner-amount {
  font-weight: 100;
  font-size: 1.04rem;
  margin-top: 2px;
  line-height: 1.1;
}
.winner-amount.green { color: #D6ED6B; }

/* Responsive: Card geser bawah, tengah */
@media (max-width: 600px) {
  .winner-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    align-items: flex-end;     
    min-width: 0;
    width: 100vw;
    max-width: 200px;
    height: 100vh;            
    right: 0px;
    left: unset;
    bottom: -30px;
    padding: 12px 7px 9px 10px;
    border-radius: 14px;
    margin:10px 10px 10px 0px;
    font-size: 14px;
    position: fixed;           
    z-index: 99;               
   
  }
  .last-winners-card {
    min-width: 0;
    width: 90vw;
    max-width: 180px;
    margin-right: 0;
    padding: 12px 7px 9px 10px;
    border-radius: 14px;
    font-size: 14px;
  }
  .avatars-above-card {
    width: 120px;
    margin-bottom: 8px;
    padding: 6px 8px 6px 9px;
    border-radius: 11px;
  }
  .winner-avatar {
    width: 34px; height: 34px;
  }
  .lw-header { font-size: 1rem; }
  .winner-name { font-size: 1rem; }
  .winner-amount { font-size: 0.89rem; }
}


/* GAME LIST */
.section-title {
  font-size: 4rem;
  margin: 2.8rem 0 1.6rem 0;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 90px;
}
.games-list {
  display: flex;
  margin: 0 auto 40px auto;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 32px);
}
.game-card {
  background: #191b26;
  border-radius: 18px;
  border: 1.5px solid rgba(183, 194, 255, 0.11);
  box-shadow: 0 4px 24px 0 rgba(60,64,90,0.13);
  width: 424px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.18s, border-color 0.18s;
  position: relative;
  padding: 15px;
}

.game-card-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.game-card-date {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(24, 26, 39, 0.93);
  color: #d7f47c;
  font-weight: 600;
  font-size: 1.04em;
  padding: 5px 15px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
}

.game-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 10px 14px 10px;
  flex: 1;
}

.game-card-body h3 {
  margin: 0 0 2px 0;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.game-card-body p {
  color: #bfc7d5;
  font-size: 1.25rem;
  margin: 0 0 10px 0;
  line-height: 1.42;
}

.see-details-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(197, 217, 97, 0.17);
  color: #fff;
  border: none;
  border-radius: 13px;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 15px 22px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.17s;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  gap: 8px;
}

.see-details-btn:hover {
  background: #2e3145;
}

.see-details-btn .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #d7f47c;
  color: #23261a;
  font-size: 1.23rem;
  margin-left: 8px;
  transition: background 0.15s;
}

.see-details-btn:hover .circle {
  background: #e9ffb7;
}

.see-details-btn i {
  margin-left: 2px;
}


/* WHY SECTION */
.why-section {
  padding: 4rem 0 2rem 0;
  
}
.why-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
.why-title-1 {
  font-size: 4rem;
  font-weight: 600;
}
.why-desc-1 {
  color: var(--gray);
  max-width: 600px;
  font-size: 1.13rem;
  line-height: 1.5;
}

.why-grid {
  /* Desktop: grid 3 kolom, kiri atas & kanan bawah: col-span-2 (panjang), kanan atas & kiri bawah: col-span-1 (kotak) */
  grid-template-columns: 2fr 1fr 2fr;
  grid-template-rows: 383px 383px;
}

.why-card {
  background: #191b26;
  border-radius: 18px;
  border: 1.5px solid rgba(183, 194, 255, 0.13);
  box-shadow: 0 4px 24px 0 rgba(60,64,90,0.09);
  color: #fff;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  transition: box-shadow .18s, border-color .18s;
}

.why-card-h {
  gap: 1.8rem;
}

.why-title, .why-title-2 {
  font-weight: 600;
  font-size: 32px;
}
.why-desc, .why-desc-2 {
  color: #bfc7d5;
  font-weight: 400;
  font-size: 20px;

}
.why-btn {
  background: #232537;
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 11px 26px;
  font-size: 1.04rem;
  font-weight: 600;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.16s;
}
.why-btn:hover {
  background: #d7f47c;
  color: #191b26;
}
.why-img {
  max-width: 400px;
  min-width: 60px;
  object-fit: contain;
  display: block;
}
.feedback-card {
  background: rgba(32, 34, 47, 0.99);
  border-radius: 18px;
  border: 1.3px solid rgba(183, 194, 255, 0.10);
  box-shadow: 0 4px 24px 0 rgba(60,64,90,0.07);
  padding: 1.4rem 1.4rem 1.5rem 1.4rem;
  max-width: 340px;
  min-width: 0;
  color: #fff;
  margin: 0 auto;
  box-sizing: border-box;
}

.feedback-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 22px;
  align-items: center;
  width: 100%;
}

.feedback-chip {
  display: flex;
  align-items: center;
  gap: 0.6em;
  background: #232537;
  color: #fff;
  border-radius: 1.2em;
  padding: 0.48em 1.25em 0.48em 1.05em;
  font-size: 1.03rem;
  font-weight: 400;
  box-shadow: 0 1px 8px 0 rgba(30,30,40,0.06);
  min-width: 0;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

.feedback-chip-green {
  background: #31392b;
  color: #c6f164;
}

.feedback-chip i {
  color: #fff;
  font-size: 1.15em;
  margin-right: 0.5em;
  opacity: 0.85;
}


/* NEWSLETTER */
.bg-newsletter {
  position: relative;
  background-color: #0A0C19;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  min-height: 550px;
  padding: 3.7rem 0 4rem 0;
  /* Blur/gradient mask atas & bawah */
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  transform: translateY(-450px);
  margin-bottom: -450px;
}

.bg-hero {
  position: relative;
  width: 100%;
  background-color: #0A0C19;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  min-height: 1200px;
  /* Blur/fade hanya di bawah */
  mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
  transform: translateY(-130px);
}

.newsletter {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 90px;
  text-align: center;

}
.newsletter p {
  color: var(--gray);
  font-weight: 400;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 64px;
  text-align: center;
}
.newsletter-form {
  display: flex;
  align-items: center;
  background: rgba(85, 90, 57, 0.863);
  border-radius: 1.2em;
  padding: 8px 18px;
  max-width: 650px;
  margin: 30px auto 0 auto;
  box-sizing: border-box;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.07rem;
  padding: 14px 0;
  margin-right: 10px;
  font-family: inherit;
}

.newsletter-input::placeholder {
  color: #e5e5e5;
  opacity: 1;
  font-family: inherit;
  font-size: 1.05rem;
}

.newsletter-btn {
  background: #d7f47c;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #181c15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.16s;
}

.newsletter-btn:hover {
  background: #e9ffb7;
}

.arrow {
  font-size: 20px;
  font-weight: bold;
}

/* FOOTER */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 7.5rem 0 1.4rem 0;
  font-family: var(--font-main);
  font-size: 1rem;
}

.footer-main {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  padding: 0 50px;
  flex-wrap: wrap;
}
.footer-about {
  flex: 2 1 240px;
  min-width: 220px;
  margin-right: 150px;
}
.footer-logo {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.footer-desc {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 1.3rem;
  line-height: 1.5;
  width: 450px;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
}
.footer-social a {
  background: #1a1c24;
  color: #e0e6ed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 8px 0 rgba(20, 20, 30, 0.11);
  text-decoration: none !important;
}
.footer-social a:hover {
  background: var(--accent-btn);
  color: #131512;
}
.footer-col {
  flex: 1 1 160px;
  min-width: 150px;
}
.footer-title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: 0.5px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.55em;
}
.footer-col ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.16s;
}
.footer-col ul li a:hover {
  color: var(--accent-btn);
}
.footer-line {
  border: none;
  border-top: 1px solid var(--border-footer);
  margin: 2.3rem 0 1.2rem 0;
}
.footer-copyright {
  color: var(--gray);
  text-align: left;
  font-size: 0.97rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50PX;
}

/* Responsive */
@media (max-width: 1000px) {
  .games-list, .games-list-bawah, .why-row, .footer-main {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .game-card, .why-card, .footer-col, .footer-about {
    min-width: 220px;
  }
}
@media (max-width: 900px) {
  .hero-row, .why-header {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    align-items: center;
  }
  .hero-image {
    text-align: center;
    margin: 10px;
  }
  .why-desc {
    max-width: 100%;
  }
  .why-row, .games-list {
    flex-direction: column;
    gap: 1.5rem;
  }
 
  .footer-main {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.2rem;
    text-align: center;
  }
  .footer-about, .footer-col {
    min-width: 0;
  }
  .footer-copyright {
    padding: 0 1.2rem;
    font-size: 0.94rem;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .container, .container-1 {
    max-width: 100vw;
    width: 100vw;
    padding: 0 1rem;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .container-2{
    max-width: 100vw;
    width: 100vw;
    padding: 0 1rem;
    margin: 0 auto;
    box-sizing: border-box;
    transform: translateY(-50px);
    margin-bottom: -50px;
  }
  .hero {
    padding: 2rem 0 1.3rem 0;
  }
 
  .hero-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 0 !important;
  }
  .hero-text {
    text-align: center !important;
    padding: 0 !important;
  }
  .hero-btns {
    justify-content: flex-start;   
    gap: 0.7rem;                 
    margin-top: 1.1rem;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
    padding: 0.8rem 1.3rem;
    border-radius: 0.8rem;
    min-width: 0;
    width: auto;
  }
  .hero-image {
    margin: 0 !important;
    text-align: center !important;
    max-width: 90vw !important;
  }
  .hero-image img {
    width: 80vw !important;
    height: auto !important;
    max-width: 330px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .section-title{
    position: relative;
    margin-top: -350px;
    font-size: 2rem !important;
    line-height: 2.7rem !important;
    text-align: left !important;
    margin-bottom: 20px !important;
    z-index: 1;
  }
  .hero-text h1,
  .newsletter h1,
  .why-title
   {
    font-size: 2rem !important;
    line-height: 2.7rem !important;
    text-align: left !important;
    margin-bottom: 20px !important;
  }
  .why-title-1{
    font-size: 2rem !important;
    line-height: 2.7rem !important;
    text-align: left !important;
    margin-bottom: 0px !important;
  }
  .why-title-2{
    font-size: 2rem !important;
    line-height: 2.7rem !important;
    text-align: center !important;
    margin-bottom: 0px !important;
  }
  .hero-text p,
  .newsletter p,
  .why-desc{
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: left !important;
    margin-bottom: 2rem !important;
    margin-top: 1rem !important;
  }
  .why-desc-1{
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: left !important;
    margin-bottom: 2rem !important;
  }
  .why-desc-2{
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
    margin-top: 1rem !important;
  }
 
  .games-list {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
  }
  .game-card {
    width: 100% !important;
    max-width: 360px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 8px !important;
    box-sizing: border-box !important;
  }
  .game-card-img img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
  }
  .game-card-body {
    padding: 1rem 0.8rem !important;
  }
  .why-grid {
    display: block !important; /* grid jadi block, semua card ke bawah */
    gap: 0 !important;
  }
  .why-card, .why-card-h, .why-card-square {
    width: 100% !important;
    margin: 0 0 1.3rem 0 !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 1.2rem 0.8rem 0px 0.8rem!important;
    font-size: 1rem !important;
    text-align: center !important;
    display: block !important;
  }
  .why-img {
    display: block !important;
    margin: 18px auto 0 auto !important;
    max-width: 200px !important;
    height: auto !important;
  }
  .why-btn {
    margin: 0.7rem auto 0 auto !important;
    width: 100% !important;
    max-width: 220px !important;
  }
  .why-section {
    padding-top: 10px;
    transform: translateY(-350px);
  margin-bottom: -400px;
  }
  .why-header {
    margin: 10px !important;
  }
  .newsletter h1,.newsletter p {
    text-align: center !important;
  }
  .bg-newsletter {
    position: relative;
    background-color: #0A0C19;
    background-image: 
      linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 80px 80px;
    min-height: 450px;
    padding: 3.7rem 0 4rem 0;
    /* Blur/gradient mask atas & bawah */
    mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    transform: translateY(0px);
    margin-bottom: 20px;

  }
  .newsletter-form {
    max-width: 99vw;
    padding: 6px 7px;
  }
  .newsletter-input {
    font-size: 0.96rem;
    padding: 11px 0;
  }
  .newsletter-btn {
    width: 33px;
    height: 33px;
    font-size: 1.11rem;
    margin-left: 7px;
  }
  .footer{
    padding-top: 10px;
  }
  .footer-logo{
    text-align: left !important;
    font-size: 20px;
  }
   .footer-desc{
    text-align: left !important;
    font-size: 14px;
    width: 90%;
  }
  .footer-col ul li a {
  font-size: 16px;
  }
  .footer-line{
    margin: 20px !important;
  }
  .footer-main {
    max-width: 96vw;
    padding: 0rem 0.4rem 0.5rem 0.4rem;
    gap: 1.1rem;
  }
  .footer-about, .footer-logo, .footer-desc {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-social a {
  width: 40px;
  height: 40px;
  font-size: 16px;
}
  .footer-col {
    margin-top: 1rem;
  }
  .footer-title, .footer-col ul, .footer-col ul li {
    text-align: left;
    font-size: 20px;
  }
  .footer-copyright {
    max-width: 300px;
    font-size: 0.87rem;
    padding: 0 0.2rem;
  }
  .drawer-menu,
  .drawer-menu li a {
    text-align: left !important;
    padding-left: 22px !important;
    padding-right: 0 !important;
  }
  img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
}
@media (max-width: 400px) {
  .hero-image img {
    width: 100%;
    min-width: 0;
  }
}

/* =============== GAMES PAGE STYLE =============== */
.games-hero-new {
  width: 100%;
  background: none;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 78px;
  padding-bottom: 12px;
  position: relative;
}
.games-hero-container {
  max-width: 806px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  padding: 150px 20px 100px 20px;
}
.games-list-container{
    max-width: 1440px;
    width: 100vw;
    padding: 0 50px;
    margin: 0 auto;
    box-sizing: border-box;
    transform: translateY(-400px);
}
.games-hero-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 90px;
  margin-bottom: 22px;
}
.games-hero-title .accent {
  color: var(--accent);
}

.games-hero-desc {
  color: #bfc7d5;
  font-size: 1.19rem;
  font-weight: 400;
  margin-bottom: 50px;
  margin-top: 0px;
  line-height: 1.5;
  max-width: 525px;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.games-hero-filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  margin: 25px auto 46px auto;
  max-width: 1440px;
  box-sizing: border-box;
  font-family: Poppins !important;
}
.games-hero-filters {
  display: flex;
  gap: 15px;
}
 .filter-row, .filter-section, .filter-area, select, label, button {
  font-family: 'Poppins', sans-serif !important;
}

.games-filter-btn {
  background: #191b26;
  color: #fff;
  font-size: 1.09rem;
  border: 1.5px solid #35374c;
  border-radius: 13px;
  padding: 11px 32px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  outline: none;
}
.games-filter-btn.active,
.games-filter-btn:hover {
  background: var(--accent-btn);
  color: #202505;
  border-color: var(--accent-btn);
}
.games-hero-search {
  display: flex;
  align-items: center;
  background: #191b26;
  border: 1.5px solid #35374c;
  border-radius: 13px;
  padding: 0 16px;
  height: 48px;
  min-width: 150px;
  transition: border 0.16s;
}
.games-hero-search:focus-within {
  border-color: var(--accent-btn);
}
.games-hero-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1.11rem;
  width: 90px;
  min-width: 0;
  padding: 0 8px 0 0;
}
.games-hero-search button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.17rem;
  cursor: pointer;
  padding: 0 2px;
}
.games-hero-search button:hover {
  color: var(--accent-btn);
}

.games-section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 1.8rem 0 1.2rem 0;
  line-height: 1.1;
}
.games-page-card .game-card-body h3 {
  font-size: 1.42rem;
}
.games-list-bawah {
  display: flex;
  margin: 0 auto 40px auto;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: -10px; 
  margin-bottom: -400px;
}
@media (max-width: 600px) {
  .games-list-bawah {
  display: flex;
  margin: 0 auto 40px auto;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: -15px; 
  margin-bottom: 0px;
  flex-direction: column !important;
  align-items: center !important;
  gap: 1.5rem !important;
}
}

@media (max-width: 700px) {
  .games-hero-filters-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin-bottom: 20px;
    gap: 20px;
  }
  .games-hero-filters {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  .games-filter-btn {
    width: auto;
    min-width: 0;
    padding: 10px 14px;
    font-size: 0.98rem;
    border-radius: 10px;
    margin: 0;
  }
  .games-hero-search {
    width: 100%;
    min-width: 0;
    padding: 0 0 0 10px;
    font-size: 1rem;
    margin-top: 2px;
    border-radius: 10px;
    height: 38px;
    box-sizing: border-box;
  }
  .games-hero-search input {
    width: 100%;
    font-size: 1rem;
    padding: 0 6px 0 0;
    box-sizing: border-box;
  }
  .games-hero-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  line-height: 2.5rem;
  }
  .games-hero-title .accent {
    color: var(--accent);
}
.games-list-container{
    transform: translateY(-600px);
    margin-bottom: -500px;
    padding: 15px;
}
}

/* =================== ABOUT US PAGE STYLE =================== */


.about-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 70px;
  
}

.about-hero-left {
  flex: 1.3;
  padding-top: 10px;
}

.about-hero-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.09;
  margin-bottom: 24px;
  line-height: 90px;

}

.about-hero-desc {
  color: #bfc7d5;
  margin-bottom: 70px;
  margin-top: 24px;
  max-width: 540px;
  font-weight: 100;
  font-size: 20px;
  line-height: 100%;

}

.about-hero-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 34px;
}

.about-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-stat-number {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 6px;

}

.about-stat-label {
  font-size: 20px;
  color: #d3d8e0;
  line-height: 1.38;
  font-weight: 400;

}

.about-hero-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 320px;
  margin-top: 0;
}

.about-hero-card-carousel {
  max-width: 590px;  
  margin: 0 auto;
  padding: 25px;        
  box-sizing: border-box;
  background: #181a29;
  border-radius: 14px;
}
.about-carousel-owl {
  padding: 20 !important;
}
.about-carousel-owl .about-carousel-card {
  margin: 0;
  box-sizing: border-box;
  max-width: 300px; 
  min-width: 0;
  width: auto;           
  display: flex;
  flex-direction: column;
  background: #181a29;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.18s;
  padding: 10px;
  border: solid 1px #3b3a3a;
}

.about-carousel-owl .owl-item.center .about-carousel-card {
  border: 3px solid #c6f164;
  border-radius: 18px;
  transform: scale(1);
  box-shadow: 0 2px 20px 0 rgba(198,241,100,0.14);
  z-index: 3;
  background: #181a29;
}
.about-carousel-owl .about-carousel-card img {
  width: 100%;
  max-height: 340px; /* atau lebih besar jika butuh, misal 380px */
  height: auto;
  object-fit: cover;  /* atau 'contain' jika ingin seluruh gambar selalu terlihat */
  display: block;
  border-radius: 12px ;
}

@media (max-width: 700px) {
  .about-hero-card-carousel {
    max-width: 100% !important;
    padding: 0;
    border-radius: 0;
  }
  .about-carousel-owl .about-carousel-card {
    max-width: 94vw;
    min-width: 0;
    padding: 8px;
    font-size: 14px;
  }
  .about-carousel-owl .about-carousel-card img {
    max-height: 250px;
    max-width: 100vw;
    border-radius: 10px;
  }
  .about-hero-card-footer-desc, 
  .about-hero-card-footer .about-hero-card-footer-desc {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .about-hero-card-footer {
    display: block !important;
    text-align: center !important;
  }
}

.about-carousel-track {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin-bottom: 14px;
  position: relative;
}
.about-carousel-card {
  min-width: 240px;
  max-width: 300px;
  height: 100%;
}
.about-carousel-card.active {
  border: 2px solid var(--accent-btn, #d5ff52);
  opacity: 1;
  background: #232537f0;
  box-shadow: 0 2px 15px 0 #d8ff7791;
}
.about-carousel-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 11px;
}
.carousel-arrow {
  position: absolute;
  top: 42px;
  width: 60px;
  height: 60px;
  background: #1a1b22d8;
  border-radius: 50%;
  border: none;
  color: #d5ff52;
  font-size: 32px;
  font-weight: bold;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .17s, color .17s;
  box-shadow: 0 1.5px 12px 0 #0002;
}
.carousel-arrow.left { left: -30px; top: 200px; }
.carousel-arrow.right { right: -30px; top: 200px; }
.carousel-arrow:active { background: #d5ff52; color: #232537; }

.about-carousel-card-content {
  width: 100%;
  text-align: left;
}
.about-carousel-card-date {
  font-size: 0.94rem;
  color: var(--accent-btn);
  background: rgba(24,26,39,0.80);
  padding: 4px 13px;
  border-radius: 17px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 9px;
}
.about-carousel-card-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.about-carousel-card-desc {
  color: #bfc7d5;
  line-height: 1.28;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 12px;
}

.about-carousel-card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(197, 217, 97, 0.17);
  color: #fff;
  border: none;
  border-radius: 13px;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.17s;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  gap: 8px;
}

.about-carousel-card-btn:hover {
  background: #2e3145;
}

.about-carousel-card-btn .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #d7f47c;
  color: #23261a;
  font-size: 1.23rem;
  margin-left: 8px;
  transition: background 0.15s;
}

.about-carousel-card-btn:hover .circle {
  background: #e9ffb7;
}

.about-carousel-card-btn i {
  margin-left: 2px;
}

.about-hero-card-footer {
  margin-top: 11px;
  padding-top: 17px;
  border-top: 1.2px solid #383C46;
  width: 100%;
  text-align: left;
  text-align: center;

}
.about-hero-card-footer-title {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 4px;

}
.about-hero-card-footer-desc {
  color: #bfc7d5;
  font-size: 20px;
  margin-bottom: 14px;
  font-weight: 400;
  width: 380px;
  margin: 12px auto;
}
.about-hero-card-footer-btn {
  background: #44444b;
  color: var(--accent-btn);
  border: none;
  border-radius: 12px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 1.06rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.17s;
  margin-top: 28px;
}
.about-hero-card-footer-btn:hover {
  background: var(--accent-btn);
  color: #232537;
}

.about-team-section {
  position: relative;
  margin-top: -250px;
  margin-bottom: 42px;
  text-align: center;
  z-index: 1;
}
.about-team-title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 9px;
  letter-spacing: 0.01em;
  line-height: 90px;
  text-align: center;
  max-width: 806px;
  margin: 0 auto;
}
.about-team-desc {
  color: #bfc7d5;
  line-height: 2rem;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0%;
  margin: 24px auto 80px auto;
  max-width: 636px;

}
.about-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
  margin: 0 0 38px 0;
  width: 100%;
  max-width: 1440px;
}

.about-title-main {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  flex: 2 1 500px;
  color: #fff;

}

.about-title-desc {
  flex: 1.1 1 290px;
  color: #bfc7d5;
  line-height: 1.7;
  margin-top: 11px;
  max-width: 500px;
  font-weight: 400;
  font-size: 20px;

}
.about-team-cards-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  margin: 0 auto;
  max-width: 1440px;
}
.about-team-card {
  background: #191b26;
  border-radius: 18px;
  border: 1.5px solid #26283d;
  box-shadow: 0 3px 14px 0 rgba(40, 52, 60, 0.09);
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 424px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* Avatar style */
.about-team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(180deg, #d8ff77 78%, #bdf554 100%);
  box-shadow: 0 2px 24px 0 #d8ff7791;
  margin-top: -50px;
}
.about-team-role {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
  margin-top: 20px;
}
.about-team-bio {
  color: #bfc7d5;
  font-size: 20px;
  line-height: 2rem;
  margin-bottom: 4px;
  font-weight: 400;
  text-align: center;

}

.about-faq-section {
  margin: 120px auto 50px auto;
  width: 100%;
  max-width: 1440px;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}
.about-faq-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.16;
}
.about-faq-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 20px 0 0 0;
  width: 100%;
}
.about-faq-col {
  flex: 1 1 330px;
  min-width: 400px;
  max-width: 500px;
  display: flex;
}
.about-faq-item {
  background: none;
  border-radius: 15px;
  background: #191b26;
  border: 1.6px solid #bfc7d540;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 500;
  box-shadow: none;
  cursor: pointer;
  transition: box-shadow 0.14s, border 0.14s;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 26px 23px 21px 20px;
  position: relative;
  transition: box-shadow 0.14s, border 0.14s, background 0.18s;
  min-height: unset;
}
.about-faq-col, .about-faq-item {
  height: auto !important;
  min-height: 0px !important;
}
.about-faq-item.expanded {
  background: #232537;
  box-shadow: 0 2px 15px 0 #d8ff7791;
}
.about-faq-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  background: #48532e42;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.17rem;
  color: #c6f164;
  margin-top: 2px;
  margin-right: 15px;
  font-weight: 700;
  box-shadow: 0 2px 10px 0 #15191d30;
}
.about-faq-item.expanded .about-faq-icon {
  background: #c6f16433;
  color: #c6f164;
}
.about-faq-icon span {
  display: block;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}
.about-faq-q {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
  color: #fff;
  line-height: 32px;
  min-height: 105px; /* atau coba 3 x line-height kamu */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.about-faq-a {
  color: #bfc7d5;
  font-size: 20px;
  margin-top: 16px;
  font-weight: 400;
  line-height: 28px;
  display: none;
}
.about-faq-right-desc {
  margin-left: auto;
  margin-top: 18px;
  color: #bfc7d5;
  font-size: 1.11rem;
  max-width: 480px;
  line-height: 1.46;
}
.about-faq-item .about-faq-a {
  display: none;
  transition: all 0.2s;
}
.about-faq-item.expanded .about-faq-a {
  display: block;
  animation: faqExpand 0.25s;
}
/* Custom 3-column layout for FAQ */
.custom-faq-layout {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
  align-items: start
}

.about-faq-col-large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.about-faq-col-shift {
  grid-row: 2;
  grid-column: 2;
}
/* FAQ animation */
.about-faq-item.animating {
  transition: transform 0.45s cubic-bezier(.33,.94,.67,1.01), opacity 0.25s;
  z-index: 10;
  pointer-events: none;
}

.about-faq-item.faq-move-left {
  transform: translateX(-120%);
  opacity: 0;
}
.about-faq-item.faq-move-right {
  transform: translateX(120%);
  opacity: 0;
}
.about-faq-item.faq-move-in {
  transform: translateX(0%);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1100px) {
  .about-hero-content {
    flex-direction: column;
    align-items: center;
    gap: 38px;
    padding-top: 32px;
  }
  .about-hero-left,
  .about-hero-right {
    width: 100%;
    max-width: 540px;
    min-width: 0;
    margin: 0 auto;
  }
  .about-hero-card-carousel {
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
  }
  .about-team-section {
    margin-top: 44px;
  }
  .about-team-cards-row {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    max-width: 100vw;
    padding: 0 8px;
  }
  .about-team-card {
    max-width: 97vw;
    margin: 0 auto;
  }
  .about-title-row {
    flex-direction: column;
    gap: 10px;
    max-width: 99vw;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {

  .bg-hero {
    position: relative !important;
    z-index: 1 !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    margin-bottom: 470px;
  }
  .about-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 0px;
  }
  .about-hero-right {
    position: relative !important;
    z-index: 12 !important;
  }
  .about-hero-card-carousel {
    position: relative !important;
    z-index: 15 !important;
  }
  .bg-hero,
  .about-hero-bg {
    min-height: 0 !important;
    padding-top: 18px !important;
  }
  .about-hero-title,
  .about-team-title,
  .about-title-main {
    font-size: 32px !important;
    line-height: 38px !important;
    text-align: left !important;
    margin-bottom: 20px !important;
  }
  .about-hero-desc,
  .about-team-desc,
  .about-title-desc,
  .about-hero-card-footer-desc {
    font-size: 15px !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
    margin-top: 6px !important;
    max-width: 99vw !important;
    text-align: left !important;
  }
  .about-hero-stat-row {
    gap: 18px;
    margin-top: 13px;
  }
  .about-stat-number {
    font-size: 26px;
  }
  .about-stat-label {
    font-size: 14px;
  }
  .about-hero-card-carousel {
    border-radius: 10px;
    padding: 8px 2vw 17px 2vw;
    min-width: 0;
    max-width: 100vw;
    position: relative;
    z-index: 10;
  }
  .about-carousel-track {
    gap: 7px;
    margin-bottom: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .about-carousel-card,
  .about-carousel-card.active {
    min-width: 200px;
    max-width: 200px;
    border-radius: 9px;
    padding-bottom: 8px;
  }
  .about-carousel-card-btn {
  font-size: 16px;
  padding: 10px 10px;
  }
  .about-carousel-card-content {
    padding: 6px 8px 0 8px;
    min-height: 62px;
  }
  .carousel-arrow {
    top: 42%;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    left: 0;
    right: 0;
    z-index: 3;
    /* hide on very small screens, rely on swipe */
  }
  .carousel-arrow.right {
    right: 0 !important;
    left: auto !important;
    position: absolute;
    top: 30%; /* Atau sesuaikan vertikalnya */
    transform: translateY(-50%);
  }
  .carousel-arrow.left {
    left: 0 !important;
    right: auto !important;
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
  }
  .about-hero-card-footer-title {
    font-size: 17px;
  }
  .about-hero-card-footer-desc {
    font-size: 13px;
    width: auto;
    margin: 7px auto;
  }
  .about-hero-card-footer-btn {
    font-size: 0.98rem;
    padding: 8px 14px;
    margin-top: 10px;
    border-radius: 7px;
  }
  
  .about-team-section {
    margin-top: 70px;
    margin-bottom: -300px;
    transform: translateY(-350px);

  }
  .about-team-title {
    font-size: 27px;
    line-height: 1.3;
    margin: 0 auto 10px auto;
  }
  .about-team-desc {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 2px;
  }
  .about-team-card {
    padding: 17px 9px 19px 9px;
    border-radius: 11px;
    min-width: 0;
    max-width: 98vw;
  }
  .about-team-avatar {
    width: 66px;
    height: 66px;
    margin-top: -30px;
  }
  .about-team-role {
    font-size: 17px;
    margin-top: 11px;
    margin-bottom: 7px;
  }
  .about-team-bio {
    font-size: 13px;
  }
  .about-faq-section {
    margin: 20px auto 20px auto;
    padding: 0 15px;
    max-width: 99vw;
  }
  .about-title-row {
    flex-direction: column;
    gap: 6px;
    max-width: 99vw;
    max-height: 40vw;
    margin-bottom: 20px;
  }
  .about-faq-row,
  .custom-faq-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 11px !important;
    width: 100% !important;
  }
  .about-faq-col,
  .about-faq-col-large,
  .about-faq-col-shift {
     min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    flex: 1 1 100% !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .about-faq-item {
    padding: 16px 9px 13px 11px;
    border-radius: 9px;
    font-size: 1rem;
    max-height: fit-content;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin-bottom: 10px !important;
    box-sizing: border-box !important;

  }
  .about-faq-icon {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
    min-width: 34px;
    min-height: 34px;
    margin-right: 8px;
  }
  .about-faq-q {
    font-size: 15px;
    min-height: 38px;
    line-height: 1.33;
  }
  .about-faq-a {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.4;
  }
  .about-faq-right-desc {
    font-size: 12px;
    margin-top: 11px;
    max-width: 99vw;
  }
}

/* contact page */
.contact-main-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 54px;
  padding-top: 80px;
  min-height: 520px;
}


.contact-left {
  flex: 1.1;
  padding-top: 12px;
  min-width: 280px;
  
}
.contact-title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  line-height: 90px;

}
.contact-desc {
  color: #bfc7d5;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 550px;
}
.contact-email, .contact-phone {
  font-size: 1.13rem;
  color: #bfc7d5;
  margin-bottom: 10px;
  display: block;
  word-break: break-all;
}
.contact-email {
  margin-bottom: 40px;
  font-weight: 500;
}
.contact-arrow {
  width: 50px;
  height: 50px;
  margin-top: 34px;
  margin-bottom: 8px;
}
.contact-right {
  flex: 1.1;
  min-width: 310px;
  max-width: 510px;
  margin-right: 50px;
}
.contact-form-card {
  background: rgba(35, 37, 55, 0.96);
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(0,0,0,0.15);
  border: 1.4px solid #fff1;
  padding: 36px 32px 28px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-form-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
  font-family: Poppins;
}
.contact-form-desc {
  color: #bfc7d5;
  margin-bottom: 19px;
  font-weight: 400;
  font-size: 20px;
  margin-top: -25px;
}
.contact-form-row {
  display: flex;
  gap: 14px;
}
.contact-form-input, .contact-form-textarea {
  background: #232537;
  border: 1.4px solid #383C46;
  color: #fff;
  border-radius: 9px;
  padding: 13px 17px;
  font-family: inherit;
  margin-bottom: 9px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border .16s;
  font-weight: 400;
  font-size: 20px;
}
.contact-form-input:focus, .contact-form-textarea:focus {
  border-color: var(--accent-btn, #c6f164);
}
.contact-form-textarea {
  min-height: 92px;
  resize: vertical;
  margin-bottom: 10px;
}
.contact-form-btn {
  background: var(--accent-btn, #c6f164);
  color: #232537;
  font-weight: 600;
  border: none;
  border-radius: 9px;
  font-size: 1.17rem;
  padding: 13px 0;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.17s;
  width: 100%;
  margin-bottom: 6px;
}
.contact-form-btn:hover {
  background: var(--accent-btn-hover, #d2fa7d);
}
.contact-form-note {
  color: #bfc7d5;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: left;
  font-weight: 100;
  font-size: 20px;
}
.contact-form-note b, .contact-form-note strong {
  color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-main-row {
    flex-direction: column;
    gap: 34px;
    min-height: unset;
    padding-top: 0px;
    margin-bottom: 0px;
  }
  .contact-left, .contact-right {
    width: 100%;
    max-width: 100vw;
    padding: 0;
    margin: 0;
  }
  .contact-form-card {
    padding: 22px 9vw 18px 9vw;
  }
}
@media (max-width: 600px) {
  .contact-main-row {
    flex-direction: column;
    gap: 17px;
    padding-top: 0px;
    margin-bottom: -350px;

  }
  .contact-title {
    font-size: 2.0rem;
    margin-bottom: 0px;
  }
  .contact-email {
    margin-bottom: 10px;
  }
  .contact-desc {
    font-size: 0.97rem;
    margin-bottom: 19px;
  }
  .contact-form-card {
    padding: 17px 2vw 11px 2vw;
    border-radius: 11px;
  }
  .contact-form-title {
    font-size: 2rem;
  }
  .contact-form-desc {
    margin-top: 0px;
    font-size: 1rem;
  }
  .contact-form-note {
    font-size: 0.75rem;
  }
  .contact-form-row {
    flex-direction: column;
    gap: 5px;
  }
  .contact-form-input, .contact-form-textarea {
    padding: 10px 10px;
    font-size: 0.98rem;
    border-radius: 6px;
  }
  .contact-form-btn {
    font-size: 0.98rem;
    border-radius: 7px;
    padding: 10px 0;
  }
}


/* ===== DETAIL GAME PAGE ===== */
.detail-game-hero {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 540px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 200px 0 30px 0;
  gap: 0;
}

.detail-game-hero-left {
  flex: 2;
  z-index: 2;
  padding-left: 50px;
  padding-bottom: 36px;
}

.detail-game-hero-title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 1.05;
  line-height: 90px;
}

.detail-game-hero-coming {
  color: #c6f164;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.05;
  line-height: 90px;
}

.detail-game-hero-desc {
  color: #bfc7d5;
  font-size: 20px;
  margin-bottom: 28px;
  font-weight: 400;
  max-width: 500px;
}

.detail-game-hero-btns {
  display: flex;
  gap: 18px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.detail-game-hero-btns img {
  height: 54px;
  width: auto;
  display: block;
  border-radius: 1px;
  box-shadow: 0 1.5px 12px 0 #0002;
  transition: transform 0.13s, box-shadow 0.13s;
}
.detail-game-hero-btns a:hover img {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px 0 #c6f16444;
}
.detail-games-page .bg-hero-1 {
  background-image: url('../img/rames-01.png') !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
  transform: translateY(-130px);
  margin-bottom: 40px;
  min-height: 1000px;
}

.detail-game-hero-img {
  flex: 1.5;
  z-index: 1;
  position: relative;
  min-width: 510px;
  display: flex;
  align-items: flex-start;
  justify-content: center; 
  padding-right: 0;
}
.detail-game-hero-img img {
  width: 510px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  display: block;
  margin: 0 auto 0 0;     
}

.bg-games{
  position: relative;
  background-color: #0A0C19;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  min-height: 300px !important;
  padding: 3.7rem 0 4rem 0;
  /* Blur/gradient mask atas & bawah */
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  transform: translateY(-350px);
  margin-bottom: -250px;
  z-index: 0;
}
.detail-game-testimony-section{
  max-width: 1440px;
  padding: 0px 50px;
  margin: 0 auto;
}
.detail-game-main-section {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  padding: 34px 40px 0 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2 !important;
  top: -100px;
}

.detail-game-board {
  flex: 1.1;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detail-game-board-img {
  height: 414px;
  max-width: 95vw;
  border-radius: 12px;
  margin-bottom: 28px;
  padding: 12px;
  display: block;
}

.detail-game-right {
  flex: 1.3;
  min-width: 320px;
  max-width: 550px ;
}

.detail-game-desc-block-title {
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.09;
  font-size: 64px;
  line-height: 90px;

}
.detail-game-desc-block-title .accent {
  color: #c6f164;
}
.detail-game-desc-block-desc {
  color: #bfc7d5;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 20px;
}

.detail-game-desc-block-desc strong,
.detail-game-testimony-title span {
  color: #c6f164;
  font-weight: 700;
}

.detail-game-testimony-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
.detail-game-testimony-title {
  line-height: 1.09;
  font-weight: 600;
  font-size: 64px;
  max-width: 600px;
}
.detail-game-testimony-desc {
  color: #bfc7d5;
  line-height: 1.7;
  font-weight: 400;
  font-size: 20px;
  max-width: 600px;
}
.detail-game-testimony-title .accent {
  color: #c6f164;
}
.detail-game-testimony-row {
  display: flex;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
}
.detail-game-testimony-card {
  background: #22232d;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(60,64,90,0.11);
  padding: 32px 34px 32px 34px;
  min-width: 290px;
  max-width: 420px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  border: 1.5px solid #24263a;
  flex: 1 1 0;  
  min-height: 320px; 
}

.detail-game-testimony-stars {
  color: #c6f164;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.detail-game-testimony-text {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.6;
  font-size: 20px;
}

.detail-game-testimony-user-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}
.detail-game-testimony-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #222;
}
.detail-game-testimony-user-name {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}
.detail-game-testimony-user-role {
  color: #bfc7d5;
  font-size: 1rem;
  font-size: 18px;
}

/* Tablet & bawah */
@media (max-width: 768px) {
  .detail-game-hero {
    flex-direction: column;
    align-items: stretch;
    padding: 56px 0 20px 0;
    gap: 0;
    min-height: unset;
    width: 100%;
    max-width: 100vw;
  }
  .detail-game-hero-left {
    padding: 0 14px 0 14px;
    margin-bottom: 18px;
  }
  .detail-game-hero-title,
  .detail-game-hero-coming {
    font-size: 26px;
    line-height: 1.12;
    margin-bottom: 7px;
  }
  .detail-game-hero-desc {
    font-size: 15px;
    margin-bottom: 19px;
    max-width: 100%;
  }
  .detail-game-hero-btns {
    gap: 10px;
    margin-bottom: 12px;
  }
  .detail-game-hero-img {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 0 0 0 14px;
    margin-bottom: 8px;
  }
  .detail-game-hero-img img {
    width: 145px;
    height: auto;
    max-width: 80vw;
    border-radius: 8px;
    margin: 0;
    display: block;
    object-fit: contain;
  }

  /* Main section */
  .detail-game-main-section {
    flex-direction: column;
    padding: 14px 10px 0 10px;
    gap: 12px;
  }
  .detail-game-board,
  .detail-game-right {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .detail-game-board-img {
    width: 100%;
    max-width: 100vw;
    height: auto;
    border-radius: 8px;
    margin-bottom: 14px;
    padding: 4px;
  }
  .detail-game-desc-block-title {
    font-size: 21px;
    line-height: 1.22;
    margin-bottom: 7px;
  }
  .detail-game-desc-block-desc {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* Testimony section */
  .detail-game-testimony-header {
    flex-direction: column;
    gap: 13px;
    margin-bottom: 24px;
    padding: 0 10px;
  }
  .detail-game-testimony-title {
    font-size: 21px;
    max-width: 100%;
    margin-bottom: 3px;
  }
  .detail-game-testimony-desc {
    font-size: 14px;
    max-width: 100%;
  }
  .detail-game-testimony-row {
    flex-direction: column;
    gap: 13px;
    margin-bottom: 18px;
    padding: 0 7px;
  }
  .detail-game-testimony-card {
    padding: 8px 4px 9px 4px;
    border-radius: 7px;
    min-height: 0 !important; /* ini menghilangkan batas tinggi minimum */
    height: auto !important;
    flex: unset !important;
  }
  .detail-game-testimony-stars {
    font-size: 1.02rem;
    margin-bottom: 7px;
  }
  .detail-game-testimony-text {
    font-size: 13.5px;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .detail-game-testimony-avatar {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border-width: 1.2px;
  }
  .detail-game-testimony-user-name {
    font-size: 14px;
    font-weight: 600;
  }
  .detail-game-testimony-user-role {
    font-size: 11.5px;
  }
  .detail-game-testimony-user-row {
    gap: 8px;
  }
}

/* Mobile kecil */
@media (max-width: 480px) {
  .detail-game-hero {
    padding: 180px 0 6px 0;
  }
  .detail-game-hero-title, .detail-game-hero-coming{
    font-weight: 600;
    font-size: 32px;
  }
  .detail-game-hero-left,
  .detail-game-hero-img {
    padding-left: 20px;
    padding-right: 20px;
  }
  .detail-game-hero-btns img{
    width: 180px;
  }
  .detail-game-hero-img img {
    justify-content: center;
    text-align: center;
    width: 100%;
    border-radius: 5px;
    margin: 0 auto;
  }
  .detail-game-main-section {
    padding: 5px 20px 0 20px;
    gap: 40px;
    flex-direction: column-reverse;
  }
  .detail-game-desc-block-title,
  .detail-game-testimony-title {
    line-height: 1.2;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
  }
  .bg-games{
    top: -200px;
    height: 300px;
    margin-bottom: -500px;
  }
  .detail-game-testimony-section{
    padding: 150px 15px 20px 15px;
}
  .detail-game-testimony-header{
    padding-left: 2px;
    padding-right: 2px;
  }
  .detail-game-testimony-row {
    padding-left: 2px;
    padding-right: 2px;
    
  }
  .detail-game-testimony-card {
    padding: 8px 4px 9px 4px;
    border-radius: 7px;
    min-height: 0 !important; /* ini menghilangkan batas tinggi minimum */
    height: auto !important;
    flex: unset !important;
  }
  .detail-game-testimony-avatar {
    width: 50px;
    height: 50px;
  }
  .detail-game-testimony-user-name {
    font-size: 16px;
  }
  .detail-game-testimony-user-role {
    font-size: 14px;
  }
}

/* CAREER PAGE */
.career-page {
  font-family: 'Poppins', Arial, sans-serif;
  background: #0A0C19;
  color: #fff;
  letter-spacing: 0;
}

.career-highlight {
  color: #c6f164;
  font-weight: 700;
}

.career-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 300px 50px 42px 50px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 36px;
  position: relative;
}
.career-hero-content {
  flex: 2;
  min-width: 320px;
  z-index: 2;
  
}
.career-hero-title {
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.08;
  font-size: 64px;
  line-height: 90px;
  max-width: 555px;
}
.career-hero-sub {
  color: #bfc7d5;
  max-width: 474px;
  margin-bottom: 64px;
  font-weight: 400;
  font-size: 20px;
}
.career-search-form {
  display: flex;
  margin-bottom: 46px;
  margin-top: 5px;
  flex-wrap: wrap;
  background: #201c2c;
  padding: 15px 20px;
  border-radius: 20px;
  max-width: 656px;
  justify-content: space-between;
}

.career-input{
  border-radius: 12px;
  background: #32343c;
  color: #fff;
  border: none;
  padding: 13px 16px;
  font-size: 20px;
  outline: none;
  width: 270px;
  gap: 30px;
}
.career-search-divider {
  width: 2px;
  height: 54px;
  background: #5a5a5a;
  margin: 0 8px;
  border-radius: 3px;
}
.career-select {
  appearance: none;           
  -webkit-appearance: none;   
  -moz-appearance: none;  
  border-radius: 12px;
  background: #32343c;
  color: #fff;
  border: none;
  padding: 13px 16px;
  font-size: 20px;
  outline: none;
  width: 190px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L9 10.5L15 4.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1em center;
  background-size: 1.2em;
}
.career-select {
  min-width: 120px;
}
.career-btn-search {
  background: #c6f164;
  color: #1a1c26;
  border: none;
  border-radius: 12px;
  padding: 13px 21px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s;
}
.career-btn-search:hover {
  background: #e8ffa1;
}
.career-steps-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 64px auto;
  padding: 0 0 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  transform: translateY(-200px);
  margin-bottom: -200px;
}

.career-steps-list {
  display: flex;
  justify-content: center;
  gap: 38px;
  width: 100%;
  align-items: center;    
}

.career-step {
  border-radius: 28px;
  padding: 40px 38px 28px 38px;
  min-width: 230px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.career-step-icon {
  width: 90px;
  height: 90px;
  background: none;
  border-radius: 28px;
  border: 1.7px solid #7d859b30;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
  font-size: 2.7rem;
  color: #fff;
  box-shadow: 0 1.5px 12px 0 #0001;
}

.career-step-title {
  margin-bottom: 10px;
  margin-top: 2px;
  color: #fff;
  font-weight: 500;
  font-size: 32px;
  margin-top: 32px;
}
.career-step-desc {
  color: #bfc7d5;
  font-weight: 400;
  line-height: 1.55;
  font-size: 20px;
  margin-top: 12px;
}

.career-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  color: #c6f164;
  font-size: 2.3rem;
  height: 100%;
  min-width: 28px;
}

.career-hero-image {
  flex: 1.2;
  min-width: 220px;
  display: flex;
  justify-content: center;
  z-index: 1;
  top: -100px;
}
.career-hero-image img {
  width: 100%;
  max-width: 510px;
  height: auto;
  border-radius: 22px;
  display: block;
  transform: translateY(-100px);
}

.career-opportunity {
  padding: 0 50px;
  max-width: 1440px;
  margin: 0 auto;
}
.career-opportunity-title {
  margin-bottom: 35px;
  font-weight: 600;
  font-size: 64px;
  line-height: 90px;
}

.career-job-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}
.career-job-card {
  background: linear-gradient(140deg, #191a21 80%, #22232d 100%);
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(60,64,90,0.11);
  padding: 22px 19px 17px 19px;
  color: #fff;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #22232d;
  min-width: 245px;
  max-width: 424px;
  width: 100%;
  position: relative;
  transition: box-shadow .14s;
  box-sizing: border-box;
flex: 1 1 424px;
}
.career-job-card:hover {
  box-shadow: 0 2px 15px 0 #d8ff7791;
}
.career-job-head {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.career-job-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.33rem;
  margin-right: 2px;
}
.career-job-name {
  margin-bottom: 3px;
  font-weight: 500;
  font-size: 24px;
}
.career-job-date {
  color: #bfc7d5;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 20px;
}
.career-job-desc {
  color: #bfc7d5;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 20px;
}
.career-job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: space-between;
  margin-bottom: 32px;
}
.career-job-tags span {
  background: #24263a;
  color: #fff;
  border-radius: 8px;
  padding: 4px 15px;
  font-weight: 400;
  font-size: 20px;
}
.career-job-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  gap: 8px;
}
.career-job-salary {
  color: #fff;
  margin-bottom: 2px;
  font-weight: 500;
  font-size: 22px;
}
.career-job-location {
  color: #bfc7d5;
  font-weight: 400;
  margin-bottom: 0;
  font-size: 20px;
}
.career-job-detail-btn {
  background: #c6f164;
  color: #22232d;
  border-radius: 9px;
  width: 132px;
  height: 58px;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-left: 10px;
  transition: background .14s;
  box-shadow: 0 2px 6px 0 rgba(198,241,100,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; 
}
.career-job-detail-btn:hover {
  background: #d8ff82;
  color: #1a1c26;
}

.career-faq {
  max-width: 753px;
  margin: 0 auto 80px auto;
  padding: 48px 0 0 0;
  text-align: center;
}
.career-faq-title {
  font-size: 2rem;
  font-weight: 600;
  font-size: 64px;
  line-height: 90px;
  margin-bottom: 24px;
}
.career-faq-desc {
  color: #bfc7d5;
  font-weight: 400;
  font-size: 20px;
  max-width: 521px;
  margin: 0 auto 64px auto;

}
.career-contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg,  #363d2a 100%);
  color: #fff;
  border-radius: 16px;
  padding: 22px 20px 22px 28px;
  font-size: 1.18rem;
  font-weight: 400;
  width: 100%;
  max-width: 650px;
  max-height: 80px;
  margin: 0 auto;
  text-decoration: none;
  transition: background 0.16s;
  box-sizing: border-box;
  box-shadow: 0 2px 8px 0 rgba(60,64,90,0.11);
  margin-bottom: 38px;
  min-height: 60px;
}

.career-contact-btn-circle {
  background: #c6f164;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  color: #22232d;
  font-size: 1.42rem;
  transition: background 0.13s;
  flex-shrink: 0;
}
.career-contact-btn:hover .career-contact-btn-circle {
  background: #e3ffa2;
  color: #191a21;
}
.career-contact-btn:hover {
  background:  #c6f164;
  color: #000;
}
.career-contact-btn span {
  font-family: inherit;
  font-weight: 400;
}

@media (max-width: 600px) {
  .career-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 150px 15px 12px 15px;
    gap: 10px;
  }
  .career-hero-title {
    font-size: 32px;
    line-height: 2.5rem;
    max-width: 90%;
    margin-bottom: 15px;
  }
  .career-highlight {
    font-size: inherit;
  }
  .career-hero-sub {
    font-size: 15px;
    margin-bottom: 15px;
    max-width: 80%;
  }
  .career-search-form {
    padding: 8px 8px;
    border-radius: 10px;
    margin-bottom: 12px;
    gap: 8px;
    max-width: 99vw;
  }
  .career-input
   {
    font-size: 16px;
    padding: 10px 10px;
    border-radius: 7px;
    min-width: 0;
    width: 100%;
  }
  .career-select{
    font-size: 16px;
    padding: 10px 10px;
    border-radius: 7px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .career-search-divider{
    display: none;
  }
  .career-btn-search {
    width: 100%;
    padding: 12px 0;
    font-size: 17px;
    border-radius: 5px;
  }
  .career-hero-image{
   width: 100%;
  }
  .career-hero-image img {
    width: 90%;
    border-radius: 8px;
    margin-top: 8px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    position: static;   /* Jangan pakai absolute/relative di mobile! */
    transform: none; 
  }

  .career-steps-section {
    padding: 50px 0 8px 0;
    max-width: 99vw;
    margin: 0 auto -550px auto;
    transform: translateY(-600px);
  }
   .career-steps-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .career-step-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
    font-size: 20px;
  }
  .career-step {
    max-width: 99vw;
    padding: 10px 3vw 8px 3vw;
    border-radius: 5px;
  }
  .career-step-title {
    font-size: 16px;
    margin-top: 6px;
    margin-bottom: 3px;
  }
  .career-step-desc {
    font-size: 14px;
    margin-top: 2px;
  }
  .career-step-img {
    width: 150px;
    height: 150px;
    font-size: 1.1rem;
    margin-bottom: 5px;
    border-radius: 4px;
  }
  .career-step-arrow {
    font-size: 1.1rem;
    min-width: 10px;
    margin: 4px 0;
  }
  .career-opportunity {
    padding: 0px 15px;
    max-width: 100%;
    transform: translateY(-150px);
    margin-bottom: -120px;
  }
  .career-opportunity-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .career-job-card {
    padding: 9px 20px 9px 20px;
    border-radius: 6px;
    font-size: 15px;
    min-width: 0;
    max-width: 100vw;
  }
  .career-job-head {
    margin-bottom: 10px;
    gap: 4px;
  }
  .career-job-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-right: 15px;
  }
  .career-job-name {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .career-job-date {
    font-size: 14px;
  }
  .career-job-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .career-job-tags span {
    font-size: 13px;
    border-radius: 4px;
    padding: 2.5px 8px;
  }
  .career-job-tags {
    gap: 4px;
    margin-bottom: 15px;
    justify-content: flex-start;
  }
  .career-job-foot {
    margin-top: 7px;
    gap: 2px;
  }
  .career-job-salary {
    font-size: 15px;
  }
  .career-job-location {
    font-size: 13px;
  }
  .career-job-detail-btn {
    font-size: 15px;
    width: 70px;
    height: 32px;
    border-radius: 5px;
    margin: auto 5px;
  }
  
  .career-faq {
    padding: 7px 0 0 0;
    margin-bottom: 16px;
    max-width: 99vw;
  }
  .career-faq-title {
    font-size: 32px;
    line-height: 2.5rem;
    margin-bottom: 15px;
  }
  .career-faq-desc {
    font-size: 14px;
    max-width: 99vw;
    margin-bottom: 15px;
  }
  .career-contact-btn {
    padding: 8px 6px 8px 12px;
    max-width: 80%;
    min-height: 30px;
    border-radius: 7px;
    font-size: 16px;
  }
  .career-contact-btn-circle {
    width: 24px;
    height: 24px;
    font-size: 1.1rem;
    margin-left: 6px;
  }
}

.space-y-6 p, .space-y-6 li{
  font-size: 20px !important;
  color: var(--gray);
  line-height: 2rem;
}
.space-y-6 p{
  text-align: justify;
}
.coming-badge {
  background-color: #00000091;
  border: 2px solid #d6fd51;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  max-width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  justify-content: flex-end;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.img-blog-01 .img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.games-hero-title-01 {
  font-weight: 600;
  font-size: 64px;
  line-height: 90px;
  margin-bottom: 22px;
}
.games-hero-title-01 .accent {
  color: var(--accent);
}
@media (max-width: 600px) {
  .container-blog {
  max-width: 1440px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 15px;
  transform: translateY(-600px);
  margin-bottom: -500px;
  }
.games-hero-title-01 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 48px;
  text-align: center;
  line-height: 4rem;
  }
  .games-hero-title-01 .accent {
    color: var(--accent);
  }
}