

:root {
  --primary: #91c900;
  --primary-dark: #5f8500;
  --primary-deep: #334800;
  --primary-soft: #f3ffd1;
  --primary-soft-2: #f8ffe8;
  --primary-border: rgba(145, 201, 0, .42);

  --text-hero: #203100;
  --text-info: #4c3b00;
  --text-bonus: #0c4b22;
  --text-lx: #143a68;
  --text-grid: #623900;
  --text-faq: #5b245f;
  --text-review: #244d00;
  --text-table: #173f2b;
  --text-cta: #0f2f45;

  --black: #11160a;
  --text: #1b2406;
  --muted: #3f4b21;
  --white: #ffffff;

  --radius-lg: 30px;
  --radius-md: 20px;

  --shadow: 0 22px 55px rgba(47, 66, 0, .30);
  --shadow-soft: 0 14px 30px rgba(145, 201, 0, .24);
}

/* RESET RINGAN */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #91c900;
  color: var(--black);
}

a {
  text-decoration: none;
  font-weight: 800;
  color: var(--black);
  transition: .25s ease;
}

a:hover {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(145, 201, 0, .28);
}

/* ===============================
   CARD UTAMA
================================= */

.Timuna-Slot-card {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding: 42px 35px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.45), transparent 28%),
    radial-gradient(circle at 95% 12%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(145deg, #91c900 0%, #aee928 45%, #91c900 100%);
  box-shadow: var(--shadow);
  border: 2px solid rgba(255,255,255,.28);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.Timuna-Slot-card > * {
  position: relative;
  z-index: 2;
}

.Timuna-Slot-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -90px;
  top: -90px;
  background: rgba(255,255,255,.35);
  border-radius: 999px;
  filter: blur(8px);
  animation: floatAura 5s ease-in-out infinite;
  z-index: 0;
}

.Timuna-Slot-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: -85px;
  bottom: -85px;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  filter: blur(7px);
  animation: floatAura 6s ease-in-out infinite reverse;
  z-index: 0;
}

/* ===============================
   TITLE
================================= */

.hero-title {
  text-align: center;
  margin-bottom: 30px;
}

.hero-title h1,
h1 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 950;
  line-height: 1.35;
  color: var(--black);
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: -.4px;
  text-shadow: 0 2px 0 rgba(255,255,255,.22);
}

.hero-title h1 span,
h1 span {
  color: var(--black);
  background: rgba(255,255,255,.55);
  padding: 2px 9px;
  border-radius: 999px;
}

h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 950;
  color: var(--black);
  margin: 32px 0 20px;
  padding-left: 16px;
  position: relative;
  letter-spacing: -.2px;
}

h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 6px;
  border-radius: 20px;
  background: var(--black);
  box-shadow: 0 0 18px rgba(255,255,255,.55);
}

h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
  margin: 20px 0 10px;
}

p {
  color: var(--black);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 15px;
  text-align: justify;
}

/* ===============================
   BRAND HEADER
================================= */

.brand-header {
  text-align: center;
  margin-bottom: 25px;
}

.brand-header h2 {
  color: var(--black);
  padding-left: 0;
  margin-bottom: 8px;
}

.brand-header h2::before {
  display: none;
}

.brand-header .sub {
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
  display: inline-block;
  padding: 9px 18px 12px;
  position: relative;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.brand-header .sub::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: var(--black);
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

/* ===============================
   INFO BOX
================================= */

.info-container {
  background: rgba(255,255,255,.88);
  border: 2px solid rgba(255,255,255,.65);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.info-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(145, 201, 0, .08), transparent);
  pointer-events: none;
}

.info-head {
  padding: 16px 20px;
  background:
    linear-gradient(135deg, rgba(145, 201, 0, .22), rgba(145, 201, 0, .06)),
    #ffffff;
  border-bottom: 2px solid var(--primary-border);
}

.info-head h3 {
  margin: 0;
  color: var(--black);
  text-align: center;
  font-size: 16px;
  letter-spacing: .8px;
}

.info-list {
  padding: 8px;
}

.info-row {
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 16px;
  margin-bottom: 9px;
  background: #ffffff;
  border-left: 7px solid var(--primary);
  box-shadow: 0 8px 20px rgba(145, 201, 0, .12);
  transition: .25s ease;
}

.info-row:nth-child(even) {
  background: var(--primary-soft-2);
}

.info-row:hover {
  transform: translateX(7px);
  box-shadow: 0 14px 28px rgba(145, 201, 0, .24);
}

.info-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(145, 201, 0, .13);
}

.info-text {
  color: var(--black);
  font-weight: 900;
  font-size: 15px;
}

.info-number {
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  white-space: nowrap;
}

/* ===============================
   BONUS SECTION
================================= */

.bonus-wrap {
  background: rgba(255,255,255,.9);
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 26px;
  padding: 25px 20px;
  margin: 30px 0 35px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.bonus-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(145, 201, 0, .11) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: shineMove 5s ease-in-out infinite;
  pointer-events: none;
}

.bonus-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 20px;
}

.bonus-head .gold-icon {
  width: 13px;
  height: 13px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(145, 201, 0, .14), 0 0 22px rgba(145, 201, 0, .55);
}

.bonus-head h3 {
  margin: 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 950;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-item {
  padding: 15px 17px;
  border-radius: 18px;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--primary-border);
  border-left: 7px solid var(--primary);
  box-shadow: 0 8px 20px rgba(145, 201, 0, .13);
  transition: .25s ease;
}

.bonus-item:nth-child(even) {
  background: var(--primary-soft-2);
}

.bonus-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 32px rgba(145, 201, 0, .24);
}

.bonus-item p {
  margin: 0;
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
  text-align: left;
}

.bonus-item .highlight-gold,
.bonus-item .highlight-black {
  color: var(--black);
  font-weight: 950;
}

/* ===============================
   LX WRAP
================================= */

.lx-wrap {
  background: #91c900;
  color: var(--black);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.lx-container {
  max-width: 1425px;
  margin: 0 auto;
  padding: 0 16px;
}

/* BLOK LX */
.lx-section {
  padding: 24px;
  margin-bottom: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: .25s ease;
  background: rgba(255,255,255,.9);
  border: 2px solid rgba(255,255,255,.65);
}

.lx-section:nth-child(even) {
  background: var(--primary-soft-2);
}

.lx-section::before {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  right: -42px;
  top: -42px;
  background: rgba(145, 201, 0, .16);
  border-radius: 999px;
  filter: blur(2px);
}

.lx-section:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(47, 66, 0, .28);
}

.lx-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--black);
  font-weight: 950;
}

.lx-head svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--black);
}

.lx-body {
  color: var(--black);
  font-size: 15.5px;
  line-height: 1.75;
}

.lx-body a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ===============================
   PILLS
================================= */

.lx-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.lx-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 900;
  color: var(--black);
  background: #ffffff;
  border: 1px solid var(--primary-border);
  box-shadow: 0 7px 16px rgba(145, 201, 0, .12);
  transition: .25s ease;
}

.lx-pill:nth-child(even) {
  background: var(--primary-soft);
}

.lx-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(145, 201, 0, .22);
}

.lx-pill svg {
  width: 16px;
  height: 16px;
  color: var(--black);
}

/* ===============================
   FEATURE GRID
================================= */

.lx-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lx-feature {
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  transition: .25s ease;
  box-shadow: 0 10px 24px rgba(145, 201, 0, .13);
  border: 1px solid var(--primary-border);
  position: relative;
  overflow: hidden;
}

.lx-feature:nth-child(even) {
  background: var(--primary-soft-2);
}

.lx-feature::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: var(--primary);
  opacity: .75;
}

.lx-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(145, 201, 0, .25);
}

.lx-feature h3 {
  margin: 0 0 8px;
  font-size: 16.5px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lx-feature p {
  margin: 0;
  color: var(--black);
  font-size: 14.5px;
  line-height: 1.65;
  text-align: left;
}

.lx-icon {
  width: 18px;
  height: 18px;
  color: var(--black);
}

/* ===============================
   STEPS
================================= */

.lx-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.lx-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 18px;
  padding: 15px 16px;
  background: #ffffff;
  color: var(--black);
  border-left: 7px solid var(--primary);
  box-shadow: 0 8px 20px rgba(145, 201, 0, .14);
  transition: .25s ease;
}

.lx-step:nth-child(even) {
  background: var(--primary-soft-2);
}

.lx-step:hover {
  transform: translateX(5px);
  box-shadow: 0 14px 28px rgba(145, 201, 0, .22);
}

.lx-step::before {
  counter-increment: step;
  content: counter(step);
  flex: 0 0 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  color: var(--black);
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   HIGHLIGHT BOX
================================= */

.highlight-box {
  background: rgba(255,255,255,.9);
  border: 2px solid rgba(255,255,255,.7);
  border-left: 9px solid var(--black);
  border-radius: 24px;
  padding: 25px;
  margin: 30px 0;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -45px;
  bottom: -45px;
  background: rgba(145, 201, 0, .15);
  border-radius: 999px;
}

.highlight-box p {
  color: var(--black);
}

/* ===============================
   INFO GRID
================================= */

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 25px 0;
}

.info-card {
  border-radius: 22px;
  padding: 22px 12px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--primary-border);
  box-shadow: 0 12px 26px rgba(145, 201, 0, .15);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.info-card:nth-child(even) {
  background: var(--primary-soft-2);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, transparent, rgba(145, 201, 0, .09), transparent);
  opacity: 0;
  transition: .25s ease;
}

.info-card:hover::before {
  opacity: 1;
}

.info-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 34px rgba(145, 201, 0, .25);
}

.info-card .label {
  font-size: 13px;
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .6px;
  position: relative;
  z-index: 1;
}

.info-card .value {
  font-size: 19px;
  font-weight: 950;
  color: var(--black);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* ===============================
   FAQ
================================= */

.faq-container {
  margin: 30px 0;
}

.faq-item {
  margin-bottom: 13px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(145, 201, 0, .15);
  border: 1px solid var(--primary-border);
  background: #ffffff;
  transition: .25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(145, 201, 0, .24);
}

.faq-question {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 950;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #ffffff;
}

.faq-item:nth-child(even) .faq-question {
  background: var(--primary-soft-2);
}

.faq-question:hover {
  background: var(--primary-soft);
}

.faq-question .icon {
  width: 31px;
  height: 31px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 950;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: .3s ease;
}

.faq-answer p {
  margin: 15px 0;
  color: var(--black);
  text-align: left;
}

.faq-answer.open {
  max-height: 260px;
  padding: 0 20px;
}

/* ===============================
   REVIEWS
================================= */

.reviews-section {
  margin: 40px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 25px;
}

.review-card {
  border-radius: 24px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--primary-border);
  box-shadow: 0 14px 30px rgba(145, 201, 0, .17);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.review-card:nth-child(even) {
  background: var(--primary-soft-2);
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: -16px;
  font-size: 86px;
  line-height: 1;
  color: rgba(145, 201, 0, .13);
  font-weight: 950;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(145, 201, 0, .26);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.review-name {
  font-weight: 950;
  color: var(--black);
}

.review-stars {
  color: var(--black);
  letter-spacing: 2px;
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  padding: 4px 8px;
  border-radius: 999px;
}

.review-text {
  color: var(--black);
  font-size: 14px;
  line-height: 1.75;
  margin: 10px 0;
  font-style: italic;
  text-align: left;
  position: relative;
  z-index: 1;
}

.review-date {
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  display: block;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* ===============================
   CTA BUTTONS
================================= */

.cta-gold-section,
.cta-section {
  text-align: center;
  margin: 35px 0 20px;
}

.cta-buttons-gold,
.cta-buttons,
.lx-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold,
.btn,
.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 38px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .6px;
  border: 2px solid rgba(28, 40, 0, .15);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
  color: var(--black);
}

.btn-gold::before,
.btn::before,
.lx-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.6) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: .45s ease;
}

.btn-gold:hover::before,
.btn:hover::before,
.lx-btn:hover::before {
  transform: translateX(120%);
}

.btn-login-gold,
.btn-login,
.lx-btn--outline {
  background: #ffffff;
  color: var(--black);
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 10px 24px rgba(47, 66, 0, .22);
}

.btn-register-gold,
.btn-register,
.lx-btn--primary {
  background: linear-gradient(135deg, #ffffff, var(--primary-soft));
  color: var(--black);
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 14px 30px rgba(47, 66, 0, .26);
}

.btn-gold:hover,
.btn:hover,
.lx-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(47, 66, 0, .34);
}

/* ===============================
   NAV MENU TEXT
================================= */

.nv00-gnb-v4__l0-menu-text,
.nv00-gnb-v4__l1-menu-text,
.nv00-gnb-v4__l1-featured-link,
.nv00-gnb-v4__l1-featured-title {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--black);
  font-weight: 850;
}

/* ===============================
   ANIMATION
================================= */

.info-container,
.bonus-wrap,
.lx-section,
.info-card,
.faq-item,
.review-card,
.highlight-box {
  animation: fadeUp .58s ease both;
}

.info-container:hover,
.bonus-wrap:hover,
.highlight-box:hover {
  animation: softPulse 1.4s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes floatAura {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-14px, 12px) scale(1.08);
  }
}

@keyframes shineMove {
  0%, 60% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

@keyframes softPulse {
  0%, 100% {
    box-shadow: var(--shadow-soft);
  }

  50% {
    box-shadow: 0 22px 45px rgba(145, 201, 0, .32);
  }
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 980px) {
  .lx-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 768px) {
  .Timuna-Slot-card {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .info-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .info-number {
    white-space: normal;
  }

  .reviews-grid,
  .lx-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons,
  .cta-buttons-gold,
  .lx-cta {
    flex-direction: column;
  }

  .btn,
  .btn-gold,
  .lx-btn {
    width: 100%;
  }

  .nv00-gnb-v4__l0-menu-text,
  .nv00-gnb-v4__l1-menu-text,
  .nv00-gnb-v4__l1-featured-link,
  .nv00-gnb-v4__l1-featured-title {
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .bonus-wrap,
  .highlight-box,
  .lx-section {
    padding: 20px 16px;
  }

  p {
    font-size: 15px;
    text-align: left;
  }

  .review-header {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ========== WRAP TABLE ========== */
.timuna-table-wrap {
  width: 100%;
  margin: 34px auto;
  overflow-x: auto;
  border-radius: 28px;
  position: relative;
  padding: 14px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.28), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.20), transparent 28%),
    linear-gradient(135deg, #91c900 0%, #aee928 45%, #91c900 100%);
  box-shadow:
    0 22px 60px rgba(145, 201, 0, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.22);
}

/* Efek cahaya belakang */
.timuna-table-wrap::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: -80px;
  top: -90px;
  background: radial-gradient(circle, rgba(255,255,255,0.35), transparent 68%);
  filter: blur(4px);
  pointer-events: none;
  animation: timunaFloatLight 6s ease-in-out infinite;
}

.timuna-table-wrap::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(255,255,255,0.26), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  animation: timunaFloatLight 7s ease-in-out infinite reverse;
}

/* ========== TABLE UTAMA ========== */
.timuna-table-wrap .timuna-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  color: #000 !important;
  position: relative;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.25), transparent 26%),
    linear-gradient(135deg, #91c900 0%, #b9ef35 42%, #91c900 100%) !important;
  box-shadow:
    0 18px 50px rgba(28, 40, 0, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.24) !important;
  animation: timunaPurplePulse 4.5s ease-in-out infinite;
}

/* ========== HEADER TABLE ========== */
.timuna-table-wrap .timuna-table th {
  padding: 19px 22px !important;
  background:
    linear-gradient(135deg, #91c900 0%, #b9ef35 48%, #91c900 100%) !important;
  color: #000 !important;
  text-align: left !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  border-bottom: 2px solid rgba(28, 40, 0, 0.22) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

/* ========== CELL TABLE ========== */
.timuna-table-wrap .timuna-table td {
  padding: 18px 22px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: #000 !important;
  border-bottom: 1px solid rgba(145, 201, 0, 0.22) !important;
  transition: all 0.32s ease !important;
}

/* Background tiap baris tetap terang agar teks hitam terbaca */
.timuna-table-wrap .timuna-table tr:nth-child(2) td {
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(232,218,255,0.96)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(3) td {
  background: linear-gradient(135deg, rgba(239,229,255,0.96), rgba(255,255,255,0.94)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(4) td {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(220,199,255,0.96)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(5) td {
  background: linear-gradient(135deg, rgba(230,215,255,0.96), rgba(255,255,255,0.95)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(6) td {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(237,226,255,0.96)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(7) td {
  background: linear-gradient(135deg, rgba(226,207,255,0.96), rgba(255,255,255,0.94)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(8) td {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(231,214,255,0.96)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(9) td {
  background: linear-gradient(135deg, rgba(235,222,255,0.96), rgba(255,255,255,0.94)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(10) td {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(224,204,255,0.96)) !important;
}
.timuna-table-wrap .timuna-table tr:nth-child(11) td {
  background: linear-gradient(135deg, rgba(229,211,255,0.96), rgba(255,255,255,0.95)) !important;
}

/* Kolom pertama */
.timuna-table-wrap .timuna-table td:first-child {
  width: 28% !important;
  font-weight: 900 !important;
  color: #000 !important;
  border-right: 1px solid rgba(145, 201, 0, 0.24) !important;
  position: relative !important;
  white-space: nowrap;
}

/* Titik aksen */
.timuna-table-wrap .timuna-table td:first-child::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 11px;
  border-radius: 50%;
  background: #91c900;
  box-shadow:
    0 0 0 4px rgba(145, 201, 0, 0.14),
    0 0 16px rgba(145, 201, 0, 0.75);
}

/* Hover baris */
.timuna-table-wrap .timuna-table tr:hover td {
  background: linear-gradient(135deg, rgba(210,188,255,0.98), rgba(255,255,255,0.98)) !important;
  box-shadow:
    inset 5px 0 0 #91c900,
    inset 0 0 26px rgba(145, 201, 0, 0.12) !important;
  transform: translateY(-1px);
}

/* Sudut bawah */
.timuna-table-wrap .timuna-table tr:last-child td {
  border-bottom: none !important;
}
.timuna-table-wrap .timuna-table tr:last-child td:first-child {
  border-bottom-left-radius: 24px !important;
}
.timuna-table-wrap .timuna-table tr:last-child td:last-child {
  border-bottom-right-radius: 24px !important;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-marquee {
  padding: 42px 0 !important;
  color: #000 !important;
  overflow: hidden;
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.30), transparent 27%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.22), transparent 26%),
    radial-gradient(circle at 45% 92%, rgba(255,255,255,0.24), transparent 30%),
    linear-gradient(135deg, #91c900 0%, #b5ee2c 45%, #91c900 100%);
  box-shadow:
    0 24px 65px rgba(145, 201, 0, 0.42),
    inset 0 0 0 1px rgba(255,255,255,0.22);
}

/* Layer dekoratif */
.testimonial-marquee::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 24px;
  border: 1px dashed rgba(255,255,255,0.36);
  pointer-events: none;
}

.testimonial-marquee::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  animation: timunaFloatLight 7s ease-in-out infinite;
}

/* Judul */
.testimonial-marquee h3 {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto 30px !important;
  padding: 0 18px;
  text-align: center;
  font-size: 25px !important;
  line-height: 1.4;
  color: #000 !important;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.55),
    0 8px 24px rgba(28, 40, 0, 0.16);
}

/* Area marquee */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 8px 0 12px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: timunaMarquee 34s linear infinite;
}

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

/* Card testimonial */
.marquee-item {
  width: 365px;
  min-height: 250px;
  flex-shrink: 0;
  padding: 25px 23px;
  color: #000 !important;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(145, 201, 0, 0.24);
  box-shadow:
    0 18px 40px rgba(28, 40, 0, 0.20),
    inset 0 0 0 1px rgba(255,255,255,0.72);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Background random tiap card */
.marquee-item:nth-child(1) {
  background:
    radial-gradient(circle at 20% 15%, rgba(145, 201, 0, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, #efffc1);
}
.marquee-item:nth-child(2) {
  background:
    radial-gradient(circle at 85% 20%, rgba(145, 201, 0, 0.16), transparent 35%),
    linear-gradient(135deg, #f4ffd8, #ffffff);
}
.marquee-item:nth-child(3) {
  background:
    radial-gradient(circle at 50% 0%, rgba(145, 201, 0, 0.18), transparent 40%),
    linear-gradient(135deg, #ffffff, #e8ffad);
}
.marquee-item:nth-child(4) {
  background:
    radial-gradient(circle at 18% 85%, rgba(145, 201, 0, 0.17), transparent 38%),
    linear-gradient(135deg, #f3ffd1, #ffffff);
}
.marquee-item:nth-child(5) {
  background:
    radial-gradient(circle at 92% 84%, rgba(145, 201, 0, 0.17), transparent 40%),
    linear-gradient(135deg, #ffffff, #edffbf);
}

.marquee-item:hover {
  transform: translateY(-9px) scale(1.025);
  border-color: rgba(145, 201, 0, 0.58);
  box-shadow:
    0 26px 55px rgba(28, 40, 0, 0.24),
    0 0 30px rgba(145, 201, 0, 0.32);
}

/* Efek kilau */
.marquee-item::before {
  content: "";
  position: absolute;
  top: -65%;
  left: -85%;
  width: 75%;
  height: 230%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.82), transparent);
  transform: rotate(22deg);
  transition: left 0.75s ease;
}
.marquee-item:hover::before {
  left: 125%;
}

/* Garis bawah card */
.marquee-item::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 5px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #91c900, #b9ef35, #91c900);
  box-shadow: 0 0 18px rgba(145, 201, 0, 0.45);
}

.marquee-item .stars {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 14px;
  color: #000;
  font-size: 15px;
  letter-spacing: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f1ffc8);
  border: 1px solid rgba(145, 201, 0, 0.20);
  box-shadow: 0 9px 20px rgba(145, 201, 0, 0.13);
}

.marquee-item p {
  margin: 0;
  color: #000 !important;
  font-size: 15px;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}

.marquee-item strong {
  color: #000;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}

.marquee-item .author {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(145, 201, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
  z-index: 2;
}

.marquee-item .author span:first-child {
  color: #000 !important;
  font-weight: 900;
  font-size: 14px;
}

.marquee-item .verified {
  width: fit-content;
  color: #000 !important;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #edffbd);
  border: 1px solid rgba(145, 201, 0, 0.20);
}

/* ========== ANIMASI ========== */
@keyframes timunaMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-55%);
  }
}

@keyframes timunaPurplePulse {
  0%, 100% {
    box-shadow:
      0 18px 50px rgba(28, 40, 0, 0.22),
      inset 0 0 0 1px rgba(255,255,255,0.24);
  }
  50% {
    box-shadow:
      0 25px 70px rgba(145, 201, 0, 0.42),
      inset 0 0 0 1px rgba(255,255,255,0.36);
  }
}

@keyframes timunaFloatLight {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.78;
  }
  50% {
    transform: translateY(18px) scale(1.08);
    opacity: 1;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .timuna-table-wrap {
    border-radius: 22px;
    padding: 10px;
  }

  .timuna-table-wrap .timuna-table {
    min-width: 700px;
    border-radius: 20px !important;
  }

  .timuna-table-wrap .timuna-table th,
  .timuna-table-wrap .timuna-table td {
    padding: 14px 15px !important;
    font-size: 14px !important;
  }

  .timuna-table-wrap .timuna-table td:first-child {
    min-width: 170px;
  }

  .testimonial-marquee {
    padding: 32px 0 !important;
    border-radius: 22px;
  }

  .testimonial-marquee h3 {
    font-size: 20px !important;
    margin-bottom: 24px !important;
  }

  .marquee-track {
    gap: 17px;
    animation-duration: 28s;
  }

  .marquee-item {
    width: 305px;
    min-height: 250px;
    padding: 21px 18px;
    border-radius: 21px;
  }

  .marquee-item p {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .timuna-table-wrap {
    margin: 24px auto;
  }

  .marquee-item {
    width: 278px;
  }

  .testimonial-marquee h3 {
    font-size: 18px !important;
  }
}
/* ===============================
   WARNA TEKS BERBEDA TIAP BLOK
   Override ini sengaja diletakkan di akhir
   agar setiap section punya karakter warna sendiri.
================================= */

.hero-title h1,
.Timuna-Slot-card > .hero-title h1 {
  color: var(--text-hero) !important;
}

.brand-header h2,
.brand-header .sub {
  color: #365000 !important;
}

.info-container .info-head h3 {
  color: var(--text-info) !important;
}

.info-row:nth-child(1) .info-text,
.info-row:nth-child(1) .info-number { color: #234600 !important; }

.info-row:nth-child(2) .info-text,
.info-row:nth-child(2) .info-number { color: #705000 !important; }

.info-row:nth-child(3) .info-text,
.info-row:nth-child(3) .info-number { color: #0f5c3c !important; }

.info-row:nth-child(4) .info-text,
.info-row:nth-child(4) .info-number { color: #274c88 !important; }

.bonus-head h3 {
  color: var(--text-bonus) !important;
}

.bonus-item:nth-child(1) p { color: #204f00 !important; }
.bonus-item:nth-child(2) p { color: #07543a !important; }
.bonus-item:nth-child(3) p { color: #684400 !important; }
.bonus-item:nth-child(4) p { color: #173f75 !important; }
.bonus-item:nth-child(5) p { color: #5e235b !important; }

.lx-section:nth-child(1) .lx-head,
.lx-section:nth-child(1) .lx-body,
.lx-section:nth-child(1) .lx-body p { color: #143a68 !important; }

.lx-section:nth-child(2) .lx-head,
.lx-section:nth-child(2) .lx-body,
.lx-section:nth-child(2) .lx-body p { color: #5b3f00 !important; }

.lx-section:nth-child(3) .lx-head,
.lx-section:nth-child(3) .lx-body,
.lx-section:nth-child(3) .lx-body p { color: #0f5c3c !important; }

.lx-section:nth-child(4) .lx-head,
.lx-section:nth-child(4) .lx-body,
.lx-section:nth-child(4) .lx-body p { color: #5b245f !important; }

.lx-feature:nth-child(1) h3,
.lx-feature:nth-child(1) p { color: #234600 !important; }

.lx-feature:nth-child(2) h3,
.lx-feature:nth-child(2) p { color: #7a4a00 !important; }

.lx-feature:nth-child(3) h3,
.lx-feature:nth-child(3) p { color: #0f5c3c !important; }

.lx-feature:nth-child(4) h3,
.lx-feature:nth-child(4) p { color: #214c83 !important; }

.lx-step:nth-child(1) { color: #173f2b !important; }
.lx-step:nth-child(2) { color: #5f3e00 !important; }
.lx-step:nth-child(3) { color: #143a68 !important; }
.lx-step:nth-child(4) { color: #5b245f !important; }

.info-card:nth-child(1) .label,
.info-card:nth-child(1) .value { color: #244d00 !important; }

.info-card:nth-child(2) .label,
.info-card:nth-child(2) .value { color: #634400 !important; }

.info-card:nth-child(3) .label,
.info-card:nth-child(3) .value { color: #0c4b40 !important; }

.info-card:nth-child(4) .label,
.info-card:nth-child(4) .value { color: #244c86 !important; }

.faq-item:nth-child(1) .faq-question,
.faq-item:nth-child(1) .faq-answer p { color: #234600 !important; }

.faq-item:nth-child(2) .faq-question,
.faq-item:nth-child(2) .faq-answer p { color: #6b4300 !important; }

.faq-item:nth-child(3) .faq-question,
.faq-item:nth-child(3) .faq-answer p { color: #0f5c3c !important; }

.faq-item:nth-child(4) .faq-question,
.faq-item:nth-child(4) .faq-answer p { color: #244c86 !important; }

.review-card:nth-child(1) .review-name,
.review-card:nth-child(1) .review-text,
.review-card:nth-child(1) .review-date { color: #254d00 !important; }

.review-card:nth-child(2) .review-name,
.review-card:nth-child(2) .review-text,
.review-card:nth-child(2) .review-date { color: #704800 !important; }

.review-card:nth-child(3) .review-name,
.review-card:nth-child(3) .review-text,
.review-card:nth-child(3) .review-date { color: #0f5c3c !important; }

.review-card:nth-child(4) .review-name,
.review-card:nth-child(4) .review-text,
.review-card:nth-child(4) .review-date { color: #274c88 !important; }

.highlight-box p,
.highlight-box h2,
.highlight-box h3 {
  color: #174b2f !important;
}

.timuna-table-wrap .timuna-table th {
  color: #203100 !important;
}

.timuna-table-wrap .timuna-table tr:nth-child(2) td { color: #234600 !important; }
.timuna-table-wrap .timuna-table tr:nth-child(3) td { color: #6b4300 !important; }
.timuna-table-wrap .timuna-table tr:nth-child(4) td { color: #0f5c3c !important; }
.timuna-table-wrap .timuna-table tr:nth-child(5) td { color: #244c86 !important; }
.timuna-table-wrap .timuna-table tr:nth-child(6) td { color: #5b245f !important; }
.timuna-table-wrap .timuna-table tr:nth-child(7) td { color: #173f2b !important; }
.timuna-table-wrap .timuna-table tr:nth-child(8) td { color: #624400 !important; }
.timuna-table-wrap .timuna-table tr:nth-child(9) td { color: #143a68 !important; }
.timuna-table-wrap .timuna-table tr:nth-child(10) td { color: #375000 !important; }
.timuna-table-wrap .timuna-table tr:nth-child(11) td { color: #5d2d5f !important; }

.testimonial-marquee h3 {
  color: #203100 !important;
}

.marquee-item:nth-child(1) p,
.marquee-item:nth-child(1) strong,
.marquee-item:nth-child(1) .author span { color: #244d00 !important; }

.marquee-item:nth-child(2) p,
.marquee-item:nth-child(2) strong,
.marquee-item:nth-child(2) .author span { color: #704800 !important; }

.marquee-item:nth-child(3) p,
.marquee-item:nth-child(3) strong,
.marquee-item:nth-child(3) .author span { color: #0f5c3c !important; }

.marquee-item:nth-child(4) p,
.marquee-item:nth-child(4) strong,
.marquee-item:nth-child(4) .author span { color: #244c86 !important; }

.marquee-item:nth-child(5) p,
.marquee-item:nth-child(5) strong,
.marquee-item:nth-child(5) .author span { color: #5b245f !important; }

.btn-gold,
.btn,
.lx-btn {
  color: var(--text-cta) !important;
}

/* ===============================
   EXTRA EFEK BARU
================================= */

.Timuna-Slot-card,
.timuna-table-wrap,
.testimonial-marquee {
  background-size: 160% 160%;
  animation:
    greenGradientFlow 8s ease-in-out infinite,
    fadeUp .58s ease both;
}

.info-card,
.lx-feature,
.review-card,
.marquee-item {
  transform-style: preserve-3d;
}

.info-card:hover,
.lx-feature:hover,
.review-card:hover,
.marquee-item:hover {
  filter: saturate(1.08) contrast(1.02);
}

.info-card::after,
.lx-feature::before,
.review-card::after {
  pointer-events: none;
}

.btn-gold,
.btn,
.lx-btn {
  isolation: isolate;
}

.btn-gold::after,
.btn::after,
.lx-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(120deg, #91c900, #ffffff, #b9ef35, #91c900);
  background-size: 250% 250%;
  opacity: 0;
  z-index: -1;
  transition: .3s ease;
  animation: greenBorderRun 3s linear infinite;
}

.btn-gold:hover::after,
.btn:hover::after,
.lx-btn:hover::after {
  opacity: .65;
}

@keyframes greenGradientFlow {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes greenBorderRun {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 250% 50%;
  }
}