:root {
  --red-pale: #2a133d;
  --gold: #ffcf66;
  --pink-dark: #ff7c6d;
  --gold-dark: #ffb84f;
  --gold-bright: #ffe7a8;
  --pink-pale: #3b2855;
  --gold-pale: #fff3cc;
  --gold-bg: #25143a;
  --gold-border: rgba(255, 194, 93, 0.26);
  --amber: #ffc350;
  --ink: #fff8ef;
  --ink-soft: rgba(255, 248, 239, 0.82);
  --ink-muted: rgba(255, 248, 239, 0.56);
  --ink-hero: rgba(255, 248, 239, 0.92);
  --surface: #2d1845;
  --border: rgba(255, 194, 93, 0.18);
  --border-soft: rgba(255, 194, 93, 0.12);
  --green: #8ce8c8;
  --red: #ff7c6d;
  --blue-link: #ffd97b;
  --kw-bg: rgba(255, 217, 123, 0.08);
  --kw-color: #ffe7a8;
  --kw-border: rgba(255, 211, 110, 0.2);
  --main-color: var(--gold);
  --accent: var(--red);
  --accent-strong: var(--gold-dark);
  --accent-soft: var(--gold-bright);
  --link-color: var(--blue-link);
  --text-color: var(--ink);
  --text-soft: var(--ink-soft);
  --text-muted: var(--ink-muted);
  --hero-text: var(--ink-hero);
  --hero-text-strong: #fff2ce;
  --bg-dark: var(--gold-bg);
  --bg-base: #2f1b4b;
  --bg-top: #3a245b;
  --bg-section: #281742;
  --bg-footer: #1f122f;
  --bg-soft: var(--kw-bg);
  --bg-soft-strong: rgba(92, 44, 60, 0.58);
  --bg-success: rgba(23, 54, 64, 0.72);
  --bg-chip: rgba(82, 53, 121, 0.4);
  --bg-badge: rgba(93, 60, 132, 0.4);
  --bg-step: rgba(90, 58, 130, 0.9);
  --bg-navbar: rgba(35, 20, 54, 0.92);
  --bg-table-head: rgba(75, 48, 112, 0.98);
  --bg-table-row: rgba(67, 44, 99, 0.82);
  --bg-table-row-alt: rgba(73, 48, 109, 0.88);
  --line-color: var(--border);
  --line-soft: var(--border-soft);
  --line-strong: rgba(255, 194, 93, 0.28);
  --line-accent: rgba(255, 124, 109, 0.28);
  --glow-dot: rgba(255, 211, 110, 0.14);
  --glow-accent: rgba(255, 125, 108, 0.1);
  --glow-accent-clear: rgba(255, 125, 108, 0);
  --glow-gold: rgba(255, 214, 124, 0.18);
  --glow-gold-clear: rgba(255, 214, 124, 0);
  --glow-footer: rgba(255, 143, 111, 0.18);
  --glow-footer-clear: rgba(255, 143, 111, 0);
  --white-clear: rgba(255, 255, 255, 0);
  --white-soft: rgba(255, 255, 255, 0.04);
  --button-start: #ff7d6d;
  --button-end: #ff9f62;
  --button-start-hover: #ff8a73;
  --button-end-hover: #ffaf66;
  --button-shadow: rgba(255, 123, 104, 0.24);
  --button-outline-bg: var(--kw-bg);
  --card-surface-start: #fffefb;
  --card-surface-end: #fff4df;
  --card-spade: #4a2f86;
  --card-diamond: #f0a347;
  --number-dark: #311c4f;
  --card-shadow: 0 30px 60px rgba(17, 9, 29, 0.26);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}

.sweet-area {
  padding: 116px 0 72px;
  overflow: hidden;
}

.bg-overlay:after {
  background:
    radial-gradient(
      circle at 20% 24%,
      var(--glow-accent) 0%,
      var(--glow-accent-clear) 24%
    ),
    radial-gradient(
      circle at 80% 0%,
      var(--glow-gold) 0%,
      var(--glow-gold-clear) 22%
    ),
    radial-gradient(
      circle at 50% 50%,
      var(--glow-dot) 0%,
      var(--white-clear) 1.2%
    ),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-base) 44%, var(--bg-dark) 100%);
  background-size:
    auto,
    auto,
    18px 18px,
    auto;
  top: 92px;
}



.go-hero {
  position: relative;
  z-index: 2;
}

.go-hero .row {
  --bs-gutter-x: 2.4rem;
}

.go-hero-copy {
  max-width: 660px;
}

.go-badge,
.go-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-accent);
  background: var(--bg-badge);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.go-badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--glow-accent);
}

.go-hero-title {
  margin: 28px 0 18px;
  color: var(--text-color);
  font-size: clamp(2.9rem, 5vw, 4.85rem);
  line-height: 1.03;
  font-family: "Baloo 2", sans-serif;
}

.go-hero-title .accent {
  color: var(--main-color);
}

.go-hero-text {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--hero-text);
  font-size: 18px;
  line-height: 1.7;
}

.go-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}

.go-hero-actions .btn {
  min-width: 210px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 800;
  border: 1px solid var(--line-color);
}

.go-hero-actions .btn-outline {
  background: transparent;
  color: var(--link-color);
  box-shadow: none;
}

.go-hero-actions .btn-outline:hover,
.go-hero-actions .btn-outline:focus {
  color: var(--hero-text-strong);
  border-color: var(--line-strong);
  background: var(--button-outline-bg);
}

.go-cards-visual {
  position: relative;
  width: min(440px, 100%);
  height: 390px;
  margin: 0 auto;
}

.go-card-stack {
  position: absolute;
  inset: 0;
}

.go-card {
  position: absolute;
  width: 210px;
  height: 302px;
  padding: 24px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--card-surface-start) 0%, var(--card-surface-end) 100%);
  box-shadow: var(--card-shadow);
  color: var(--accent);
  font-family: "Baloo 2", sans-serif;
}

.go-card::before,
.go-card::after {
  position: absolute;
  font-size: 42px;
  line-height: 1;
}

.go-card::before {
  top: 20px;
  left: 22px;
}

.go-card::after {
  right: 22px;
  bottom: 16px;
  transform: rotate(180deg);
}

.go-card-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  line-height: 1;
}

.go-card-spade {
  top: 68px;
  left: 38px;
  transform: rotate(-14deg);
  color: var(--card-spade);
}

.go-card-spade::before,
.go-card-spade::after {
  content: "J♠";
}

.go-card-heart {
  z-index: 2;
  top: 24px;
  right: 44px;
  transform: rotate(4deg);
}

.go-card-heart::before,
.go-card-heart::after {
  content: "A♥";
}

.go-card-diamond {
  top: 138px;
  right: 36px;
  transform: rotate(18deg);
  color: var(--card-diamond);
}

.go-card-diamond::before,
.go-card-diamond::after {
  content: "K♦";
}

.about-area {
  background:
    radial-gradient(
      circle at 50% 50%,
      var(--bg-soft) 0%,
      var(--white-clear) 1.2%
    ),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
  background-size:
    18px 18px,
    auto;
  overflow: hidden;
}

#sectionDetails {
  color: var(--ink-soft);
}

#sectionDetails section {
  margin-bottom: 44px;
}

#sectionDetails p,
#sectionDetails li,
#sectionDetails td,
#sectionDetails summary {
  color: var(--ink-soft);
}

#sectionDetails h1,
#sectionDetails h2,
#sectionDetails h3 {
  color: var(--ink);
}

#sectionDetails h2.fs-3,
#sectionDetails h3.fs-5 {
  font-family: "Baloo 2", sans-serif;
}

.go-doc-title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.08;
  font-family: "Baloo 2", sans-serif;
}

.go-lead {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.go-guide-list,
.go-mode-list {
  margin: 12px 0 0;
  padding-left: 20px;
}

.go-guide-list li,
.go-mode-list li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.go-section-head {
  margin-bottom: 26px;
  text-align: center;
}

.go-section-kicker {
  position: relative;
  margin-bottom: 18px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: var(--main-color);
  font-size: 15px;
  justify-content: center;
}

.go-section-kicker::before,
.go-section-kicker::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--white-clear),
    var(--main-color),
    var(--white-clear)
  );
  opacity: 0.7;
}

.go-section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  font-family: "Baloo 2", sans-serif;
}

.go-info-layout {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.go-intro-copy p:last-of-type {
  margin-bottom: 0;
}

.ilinks-box {
  background: rgba(255, 217, 123, 0.06);
  border-left: 2px solid var(--line-strong);
  border-radius: 0;
  padding: 12px 0 12px 14px;
  color: var(--ink-soft);
}

.ilinks-box .label {
  color: var(--hero-text-strong);
}

.ilinks-box .sep {
  color: var(--text-muted);
}

.ilink {
  color: var(--link-color);
  text-decoration: underline;
}

.go-overview-card,
.go-app-table-wrap,
.go-download-wrap,
.go-refer-wrap,
.go-final-cta,
.go-info-layout,
.footer-subscribe-inner {
  background: transparent;
  box-shadow: none;
}

.go-overview-card,
.go-app-table-wrap,
.go-download-wrap,
.go-refer-wrap {
  padding: 0;
  border-radius: 0;
}

.go-table thead th {
  background: var(--bg-table-head);
  color: var(--text-color);
}

.go-table tbody td {
  background: var(--bg-table-row);
}

.go-table tbody tr:nth-child(even) td {
  background: var(--bg-table-row-alt);
}

.feat {
  color: var(--main-color);
}

.go-download-wrap {
  padding: 0;
}

.go-download-wrap > p {
  margin-bottom: 22px;
  text-align: center;
  font-size: 18px;
}

ol.steps.go-download-steps {
  margin-bottom: 0;
}

ol.steps.go-download-steps li,
ol.steps.go-refer-steps li {
  align-items: center;
  padding: 18px 20px 18px 108px;
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  min-height: 122px;
}

ol.steps.go-download-steps li:last-child,
ol.steps.go-refer-steps li:last-child {
  border-bottom: none;
}

ol.steps.go-download-steps li::before,
ol.steps.go-refer-steps li::before {
  display: none;
}

.go-step-badge {
  position: absolute;
  left: 0;
  top: 50%;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-step);
  border: 1px solid var(--gold-border);
  color: var(--main-color);
  font-size: 30px;
  box-shadow: inset 0 1px 0 var(--white-soft);
}

.go-step-body strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 18px;
  font-family: "Baloo 2", sans-serif;
}

.go-step-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.safety-tips {
  background: var(--bg-soft-strong);
  border: none;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.7;
}

.safety-tips strong {
  color: var(--main-color);
}

.go-download-cta {
  text-align: center;
  margin-top: 26px;
}

.go-download-cta .btn {
  min-width: 260px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 800;
}

.go-feature-grid {
  margin-top: 8px;
}

.go-feature-grid > [class*="col-"] {
  display: flex;
}

.go-feature-grid .why-card {
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.go-feature-grid .why-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  font-size: 30px;
}

.go-feature-grid .why-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.6rem;
  text-transform: none;
  letter-spacing: 0;
}

.go-feature-grid .why-card p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}

.tips-grid.go-tips-grid {
  margin-top: 4px;
}

.go-tips-grid > [class*="col-"] {
  display: flex;
}

.tip-card {
  width: 100%;
  min-height: 100%;
  padding: 14px 0 14px 14px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tip-card::before {
  width: 3px;
  background: linear-gradient(180deg, var(--main-color), var(--accent-strong));
}

.tip-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.tip-card strong {
  display: inline;
  margin-bottom: 0;
  color: var(--text-color);
  font-size: inherit;
}

.go-mode-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.go-mode-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  color: var(--main-color);
  font-weight: 800;
  font-size: 15px;
  background: var(--bg-chip);
}

.go-refer-wrap {
  padding: 0;
}

.go-refer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
}

ol.steps.go-refer-steps {
  margin-bottom: 0;
}

ol.steps.go-refer-steps li {
  min-height: 74px;
  padding-left: 62px;
}

.go-number-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--main-color), var(--accent-strong));
  color: var(--number-dark);
  font-size: 18px;
  font-weight: 900;
}

.go-benefits {
  list-style: none;
  margin: 0;
  padding: 2px 0 0;
}

.go-benefits li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.75;
}

.go-benefits li::before {
  content: "♦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--main-color);
}

.go-faq-title {
  margin-bottom: 18px;
}

.faq-item {
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item + .faq-item {
  margin-top: 0;
  border-top: 1px solid var(--line-soft);
}

.faq-item[open] {
  box-shadow: none;
}

.faq-item summary {
  padding: 18px 0;
  font-size: 17px;
  background: transparent;
  color: var(--text-color);
}

.faq-icon {
  border: none;
  background: transparent;
}

.faq-icon::before,
.faq-icon::after {
  background: var(--main-color);
}

.faq-answer {
  padding: 0 0 18px;
  background: transparent;
  border-top: none;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.go-note {
  margin-top: 24px;
  background: var(--bg-success);
  border: none;
  color: var(--accent-soft);
}

.go-final-cta {
  width: 100%;
  padding: 88px 0 96px;
  background:
    radial-gradient(
      circle at 50% 0%,
      var(--glow-footer) 0%,
      var(--glow-footer-clear) 24%
    ),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-base) 100%);
  box-shadow: none;
  overflow: hidden;
}

.go-final-cta-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.go-final-cta h2 {
  margin: 0 0 18px;
  color: var(--text-color);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.12;
  font-family: "Baloo 2", sans-serif;
}

.go-final-cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

.go-final-cta .btn {
  min-width: 330px;
  font-size: 18px;
  font-weight: 800;
}

.footer-subscribe {
  background: var(--bg-footer);
}

.footer-subscribe-inner {
  border-radius: 0;
  box-shadow: none;
  padding: 22px 0 18px;
  background: transparent;
}

@media (max-width: 1199.98px) {
  .go-refer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .sweet-area {
    padding: 104px 0 56px;
  }

  .go-hero-copy {
    max-width: none;
  }

  .go-hero-title {
    margin-top: 24px;
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }

  .go-cards-visual {
    margin-top: 34px;
    height: 340px;
  }

  .go-overview-card,
  .go-download-wrap,
  .go-refer-wrap {
    padding: 0;
  }
}

@media (max-width: 767.98px) {
  .go-hero .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.75rem;
  }


  .go-badge,
  .go-section-kicker {
    font-size: 12px;
    gap: 8px;
  }

  .go-hero-text,
  .go-download-wrap > p,
  .go-lead,
  .go-final-cta p {
    font-size: 16px;
  }

  .go-final-cta {
    padding: 66px 0 72px;
  }

  .go-hero-title {
    font-size: clamp(2.15rem, 9.6vw, 3rem);
    line-height: 1.08;
  }

  .go-hero-actions .btn,
  .go-download-cta .btn,
  .go-final-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .go-cards-visual {
    width: 300px;
    height: 266px;
  }

  .go-card {
    width: 145px;
    height: 210px;
    padding: 18px;
    border-radius: 14px;
  }

  .go-card::before,
  .go-card::after {
    font-size: 28px;
  }

  .ilinks-box {
    padding: 10px 0 10px 12px;
  }

  .tip-card {
    padding: 12px 0 12px 12px;
  }

  .go-card-center {
    font-size: 48px;
  }

  .go-card-spade {
    left: 18px;
  }

  .go-card-heart {
    right: 24px;
  }

  .go-card-diamond {
    right: 18px;
    top: 96px;
  }

  ol.steps.go-download-steps li {
    min-height: 0;
    padding: 84px 0 16px;
  }

  .go-download-steps .go-step-badge {
    top: 20px;
    transform: none;
    width: 54px;
    height: 54px;
    border-radius: 10px;
    font-size: 24px;
  }

  .go-step-body strong,
  .go-feature-grid .why-card h3 {
    font-size: 1.35rem;
  }

  ol.steps.go-refer-steps li {
    min-height: 60px;
    padding: 10px 0 10px 50px;
    align-items: flex-start;
  }

  .go-refer-steps .go-step-badge {
    top: 12px;
    transform: none;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .go-refer-grid {
    gap: 20px;
  }

  .go-benefits li {
    margin-bottom: 14px;
  }

  .faq-item summary {
    padding: 16px 0;
  }

  .faq-answer {
    padding-bottom: 14px;
  }

  .go-mode-pills {
    gap: 10px;
    margin-top: 16px;
  }

  .go-mode-pill {
    min-height: 40px;
    padding: 7px 14px;
    font-size: 14px;
  }

  .footer-subscribe-inner {
    padding: 18px 0 14px;
  }
}
