/* ===== GOPANG LANDING PAGE — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --gopang: #FF5B00;
  --gopang-light: #FF7A33;
  --gopang-dark: #CC4900;
  --gold: #FFC100;
  --gold-dark: #D4A200;
  --ocean: #0c4a6e;
  --ocean-light: #0ea5e9;
  --sand: #fef3c7;
  --sand-dark: #f5e6b8;
  --treasure: #92400e;
  --dark: #1a1a1a;
  --dark-2: #232323;
  --dark-3: #2e2e2e;
  --gray-500: #6b6b6b;
  --gray-400: #8c8c8c;
  --gray-300: #b3b3b3;
  --gray-100: #f5f5f5;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-dark: rgba(0, 0, 0, 0.2);
  --glass-border: rgba(255, 255, 255, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.18);
  --transition: all 0.3s ease;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: var(--font-display);
}

html { font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }

.desktop-info-panel {
  display: none;
}

.mobile-app-frame {
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  body.landing-page {
    background: #f3f3f3;
  }

  .desktop-landing-shell {
    --desktop-shell-max: 1220px;
    --desktop-frame-width: min(484px, 42vw);
    --desktop-shell-gutter: max(0px, calc((100vw - var(--desktop-shell-max)) / 2));
    align-items: start;
    background: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--desktop-frame-width);
    margin: 0 auto;
    max-width: var(--desktop-shell-max);
    min-height: 100vh;
    position: relative;
  }

  .desktop-info-panel {
    align-items: center;
    background:
      radial-gradient(circle at 18% 12%, rgba(255, 91, 0, 0.11), transparent 30%),
      radial-gradient(circle at 80% 80%, rgba(255, 193, 0, 0.14), transparent 28%),
      #f7f7f5;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
    justify-content: center;
    min-height: 100vh;
    padding: 56px clamp(40px, 6vw, 92px);
    position: sticky;
    text-align: left;
    top: 0;
  }

  .desktop-info-content {
    max-width: 470px;
    width: 100%;
  }

  .desktop-info-logo {
    display: block;
    height: 72px;
    margin: 0 0 34px;
    object-fit: contain;
    width: auto;
  }

  .desktop-info-kicker {
    color: var(--gopang);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
    text-transform: uppercase;
  }

  .desktop-info-panel h1 {
    color: #111111;
    font-family: var(--font-display);
    font-size: clamp(42px, 4.2vw, 68px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 22px;
  }

  .desktop-info-copy {
    color: #3d3d3d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 410px;
  }

  .desktop-info-card {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(255, 91, 0, 0.18);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    padding: 16px;
    width: min(100%, 390px);
  }

  .desktop-info-card img {
    flex: 0 0 76px;
    height: 72px;
    object-fit: contain;
    width: 76px;
  }

  .desktop-info-card strong,
  .desktop-info-card span {
    display: block;
  }

  .desktop-info-card strong {
    color: #111111;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 4px;
  }

  .desktop-info-card span {
    color: #666666;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
  }

  .desktop-store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .desktop-store-row a {
    align-items: center;
    background: var(--gopang);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    justify-content: center;
    min-width: 142px;
    padding: 13px 22px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .desktop-store-row a:hover {
    box-shadow: 0 14px 30px rgba(255, 91, 0, 0.25);
    transform: translateY(-2px);
  }

  .desktop-info-note {
    bottom: 42px;
    color: #7a7a7a;
    font-size: 14px;
    font-weight: 600;
    left: clamp(40px, 6vw, 92px);
    position: absolute;
  }

  .mobile-app-frame {
    background: #f3f3f3;
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.16);
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    width: var(--desktop-frame-width);
  }

  #scrollCanvas,
  .scroll-overlay {
    left: var(--frame-left, calc(100vw - var(--desktop-shell-gutter) - var(--desktop-frame-width)));
    right: auto;
    width: var(--frame-width, var(--desktop-frame-width));
  }

  .scroll-down-hint {
    left: calc(var(--frame-left, calc(100vw - var(--desktop-shell-gutter) - var(--desktop-frame-width))) + var(--frame-width, var(--desktop-frame-width)) / 2);
    right: auto;
    transform: translateX(-50%);
  }

  .floating-apps {
    right: calc(100vw - var(--frame-left, calc(100vw - var(--desktop-shell-gutter) - var(--desktop-frame-width))) - var(--frame-width, var(--desktop-frame-width)) + 24px);
  }

  .download-popup {
    left: var(--frame-left, calc(100vw - var(--desktop-shell-gutter) - var(--desktop-frame-width)));
    right: auto;
    width: var(--frame-width, var(--desktop-frame-width));
  }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset:0; z-index: 9999;
  background: var(--gopang);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.loaded { opacity:0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  animation: preloaderPulse 1.5s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.preloader-logo.finished {
  animation: none !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@keyframes preloaderPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 16px 0;
  background: rgba(26,26,26,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; background: rgba(26,26,26,.95); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

.nav-logo {
  font-family: var(--font-display); font-weight: 900; font-size: 1.6rem;
  color: var(--gopang); text-decoration: none; letter-spacing: 2px;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-icon { font-size: 1.4rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem;
  font-weight: 500; transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content:''; position: absolute; bottom: -4px; left:0; width:0; height: 2px;
  background: var(--gopang); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gopang) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gopang-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== SCROLL VIDEO SECTION ===== */
.scroll-video-section { position: relative; width: 100%; height: 400vh; }
#scrollCanvas {
  position: fixed; top:0; left:0; width: 100vw; height: 100vh;
  z-index: 1; display: block; background: #0a0a0a;
}
.scroll-overlay {
  position: fixed; top:0; left:0; width: 100vw; height: 100vh;
  z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none; text-align: center; padding: 24px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 60%, transparent 80%);
}
.scroll-text {
  font-family: var(--font-display); font-weight: 900;
  color: var(--white); opacity: 0; transform: translateY(30px);
  transition: opacity .5s ease, transform .5s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,.9), 0 4px 24px rgba(0,0,0,.7), 0 0 60px rgba(0,0,0,.5);
}
.scroll-text.visible { opacity: 1; transform: translateY(0); }
.scroll-text.logo-text { font-size: 2rem; color: var(--gopang); letter-spacing: 6px; }
.scroll-text.hero-line { font-size: 2.1rem; margin-top: 12px; font-weight: 800; }
.scroll-text.hero-sub {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  max-width: calc(100% - 48px); margin-top: 20px; color: var(--white);
  background: rgba(0,0,0,.4); padding: 14px 24px; border-radius: 12px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.scroll-cta {
  display: inline-block;
  background: var(--gopang); color: var(--white); padding: 20px 56px;
  border-radius: 16px; font-family: var(--font-display); font-weight: 800;
  font-size: 1.2rem; text-decoration: none; text-transform: uppercase;
  letter-spacing: 3px; opacity:0;
  transform: translateY(20px); transition: opacity .5s ease, transform .5s ease;
  pointer-events: auto; margin-top: 28px;
  box-shadow: 0 6px 0 var(--gopang-dark), 0 8px 20px rgba(0,0,0,.4);
  border: none;
  white-space: nowrap;
}
.scroll-cta.visible { opacity: 1; transform: translateY(0); }
.scroll-cta:hover { background: var(--gopang-light); transform: translateY(-3px); box-shadow: 0 9px 0 var(--gopang-dark), 0 12px 28px rgba(0,0,0,.4); }
.scroll-cta:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--gopang-dark), 0 4px 10px rgba(0,0,0,.3); }
.scroll-cta {
  border: 0;
  cursor: pointer;
}

#overlayCta {
  display: none !important;
}
.scroll-down-hint {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--white); font-size: .95rem; font-weight: 700;
  font-family: var(--font-body); text-align: center;
  animation: scrollBounce 2s ease-in-out infinite;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 12px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.4); padding: 10px 20px; border-radius: 24px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===== DOWNLOAD POPUP ===== */
.download-popup[hidden] {
  display: none !important;
}

.download-popup {
  align-items: flex-end;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px 18px;
  position: fixed;
  z-index: 10000;
}

.download-popup-backdrop {
  background: rgba(0, 0, 0, 0.58);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.download-popup-card {
  animation: downloadPopupIn 0.35s ease both;
  background: #ffffff;
  border-radius: 28px 28px 22px 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  color: #1a1a1a;
  max-width: 430px;
  padding: 28px 24px 24px;
  position: relative;
  text-align: center;
  width: min(100%, 430px);
}

.download-popup-close {
  align-items: center;
  background: #f1f1f1;
  border: 0;
  border-radius: 50%;
  color: #333333;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
}

.download-popup-img {
  display: block;
  height: 92px;
  margin: -4px auto 10px;
  object-fit: contain;
  width: 112px;
}

.download-popup-kicker,
.download-popup-price {
  color: #1f2937;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.download-popup-card h2 {
  color: #333333;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 8px auto;
  max-width: 340px;
}

.download-popup-price {
  color: var(--gopang);
  margin-top: 2px;
}

.download-popup-store-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.download-popup-btn {
  flex: 1;
  background: var(--gopang);
  border-radius: 15px;
  box-shadow: 0 5px 0 var(--gopang-dark), 0 12px 26px rgba(255, 91, 0, 0.24);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 15px 10px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .download-popup-btn:hover {
    box-shadow: 0 5px 0 var(--gopang-dark), 0 16px 32px rgba(255, 91, 0, 0.35);
    transform: translateY(-2px);
  }
}

.download-popup-btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--gopang-dark), 0 6px 12px rgba(255, 91, 0, 0.24);
}

@keyframes downloadPopupIn {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.scroll-down-hint .arrow { display: block; font-size: 1.6rem; margin-top: 2px; font-weight: 900; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== CONTENT SLIDE WRAPPER ===== */
.content-slide-wrapper {
  position: relative;
  z-index: 5;
}

/* ===== SECTION COMMON ===== */
section { position: relative; z-index: 5; }
.section-label {
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  color: var(--gopang); text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem,5vw,3rem); line-height: 1.15; margin-bottom: 16px;
}
.section-title .highlight { color: var(--gopang); }
.section-desc { color: var(--gray-500); max-width: 560px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ===== OVERLAP CONTAINER ===== */
.overlap-container {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

/* ===== HOW WORKS — OCEAN THEME ===== */
.reward-stats-section {
  color: #1a1a1a;
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 4;
}

.reward-stats-bg {
  background: url('../img/reward-stats-bg.png') center center / cover no-repeat;
  inset: 0;
  position: absolute;
}

.reward-stats-bg::before {
  content: none;
}

.reward-stats-bg::after {
  content: none;
}

.reward-stats-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 860px;
  padding: 110px 22px 24px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.reward-stats-top-icon {
  filter: drop-shadow(0 8px 12px rgba(111, 54, 0, 0.32));
  height: clamp(44px, 7vh, 72px);
  object-fit: contain;
  width: auto;
}

.reward-stats-label {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.reward-stats-label span {
  background: rgba(0, 0, 0, 0.25);
  flex: 0 0 60px;
  height: 1px;
  width: 60px;
}

.reward-stats-label strong {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.04), 0 0 15px rgba(0, 0, 0, 0.04);
  color: #1a1a1a;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0;
  padding: 8px 24px;
  text-transform: uppercase;
}

.reward-stats-intro {
  color: #000000;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 auto 8px;
  max-width: 600px;
}

.reward-stats-heading {
  color: #000000;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 auto 8px;
  max-width: 680px;
}

.reward-stats-outro {
  color: #000000;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px auto 14px;
  max-width: 600px;
}
.reward-stats-outro strong {
  color: #ff5b00;
  font-weight: 700;
}

.reward-stats-number {
  color: #ff5b00;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
  text-shadow: none;
}

.reward-stats-chest-wrap {
  display: block;
  position: relative;
  margin: 0;
}

.reward-stats-chest-wrap::before {
  background: radial-gradient(circle, rgba(255, 211, 77, 0.9), transparent 58%);
  content: "";
  height: 210px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  z-index: -1;
}

.reward-stats-chest {
  filter: drop-shadow(0 16px 18px rgba(99, 46, 0, 0.35));
  height: clamp(100px, 18vh, 200px);
  object-fit: contain;
  width: auto;
}

.reward-stats-note {
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin: 6px auto 0;
  max-width: 720px;
  text-shadow: none;
}

.reward-stats-note strong {
  color: #1a1a1a;
  font-weight: 700;
}

.reward-stats-date {
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  margin: 2px 0 10px;
  text-shadow: none;
}

.reward-stats-panel {
  background: linear-gradient(135deg, rgba(6, 32, 68, 0.8) 0%, rgba(2, 15, 38, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: grid;
  margin-top: auto;
  max-width: 760px;
  overflow: hidden;
  padding: 6px 20px;
  width: min(100%, 760px);
}

.reward-stat-row {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 16px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  padding: 20px 0;
  text-align: left;
}

.reward-stat-row:last-child {
  border-bottom: 0;
}

.reward-stat-bullet {
  background-color: #ff5b00;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(255, 91, 0, 0.5);
}

.reward-stat-row span {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.reward-stat-row strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.85rem);
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.reward-stat-row small {
  color: #ffffff;
  font-size: 10px;
  margin-left: 4px;
}

@media (max-width: 520px) {
  .reward-stats-inner {
    justify-content: center;
    padding: 110px 16px 24px;
  }

  .reward-stats-label {
    margin-bottom: 20px;
  }



  .reward-stats-note {
    font-size: 13.5px;
    line-height: 1.45;
    margin: 6px auto 0;
  }

  .reward-stats-date {
    font-size: 13px;
    margin: 2px 0 8px;
  }

  .reward-stats-panel {
    border-radius: 12px;
    padding: 4px 14px;
  }

  .reward-stat-row {
    gap: 10px;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    padding: 18px 0;
  }

  .reward-stat-bullet {
    height: 10px;
    width: 10px;
  }
}

.howworks-section {
  color: var(--white); padding: 0 0 50px 0; position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  z-index: 6;
  transform: translateY(100%);
  background: url('../img/howworks-bg.png') center center / cover no-repeat;
}
.ocean-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.howworks-section .container { padding-top: 80px; padding-bottom: 0; position: relative; z-index: 2; }

/* ===== TRANSITION WAVES (Below stats section) ===== */
.howworks-waves {
  position: absolute;
  bottom: -1px; /* Avoid tiny pixel gaps */
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
}

.howworks-waves .wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 50% auto;
  background-position: bottom;
}

/* Wave 1: Back (Lightest), highest, moves right */
.howworks-waves .w1 {
  background-image: url('../img/wave1.png');
  animation: moveWaveRight 14s linear infinite;
  z-index: 1;
  opacity: 1;
  bottom: 30px;
}

/* Wave 2: Middle (Medium), middle height, moves left */
.howworks-waves .w2 {
  background-image: url('../img/wave2.png');
  animation: moveWaveLeft 18s linear infinite;
  z-index: 2;
  opacity: 1;
  bottom: 15px;
}

/* Wave 3: Front (Darkest), lowest, stationary */
.howworks-waves .w3 {
  background-image: url('../img/wave3.png');
  z-index: 3;
  opacity: 1;
  bottom: 0;
}

@keyframes moveWaveRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes moveWaveLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Floating Bubbles */
.ocean-bubbles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.15);
  animation: bubbleFloat linear infinite;
}
.b1 { width: 18px; height: 18px; left: 8%;  bottom: -20px; animation-duration: 9s;  animation-delay: 0s; }
.b2 { width: 12px; height: 12px; left: 22%; bottom: -20px; animation-duration: 11s; animation-delay: 1.5s; }
.b3 { width: 24px; height: 24px; left: 42%; bottom: -20px; animation-duration: 8s;  animation-delay: 0.8s; }
.b4 { width: 10px; height: 10px; left: 58%; bottom: -20px; animation-duration: 12s; animation-delay: 3s; }
.b5 { width: 16px; height: 16px; left: 72%; bottom: -20px; animation-duration: 10s; animation-delay: 2s; }
.b6 { width: 20px; height: 20px; left: 88%; bottom: -20px; animation-duration: 9.5s; animation-delay: 4s; }
.b7 { width: 14px; height: 14px; left: 35%; bottom: -20px; animation-duration: 13s; animation-delay: 5s; }
@keyframes bubbleFloat {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: .6; }
  50%  { transform: translateY(-45vh) translateX(20px) scale(1.1); opacity: .4; }
  100% { transform: translateY(-95vh) translateX(-10px) scale(.8); opacity: 0; }
}

/* Header */
.howworks-header { text-align: center; margin-bottom: 56px; }
.howworks-label-wrapper {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 16px;
}
.howworks-label-wrapper .line {
  height: 1px; width: 60px; background: rgba(0, 0, 0, 0.25);
}
.howworks-label {
  border: 1px solid rgba(0, 0, 0, 0.35);
  padding: 8px 24px;
  color: #1a1a1a; font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.04), 0 0 15px rgba(0, 0, 0, 0.04);
}
.howworks-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: 40px; line-height: 1.1; margin-bottom: 24px;
  color: #1a1a1a;
  text-shadow: none;
}
.howworks-logo-inline {
  height: clamp(80px, 15vw, 130px); width: auto;
  vertical-align: middle;
  margin: 6px 0;
  filter: none;
}
.howworks-subtitle {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: #1a1a1a; max-width: 480px; margin: 0 auto;
}
.howworks-subtitle .highlight-yellow {
  color: #fc5901; font-weight: 700;
  text-shadow: none;
}

/* Step Cards — Carousel */
.howworks-carousel-wrapper { margin-bottom: 56px; position: relative; }
.howworks-carousel {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 16px max(24px, calc((100vw - 1200px) / 2 + 24px)) 64px max(24px, calc((100vw - 1200px) / 2 + 24px)); 
  scroll-behavior: smooth;
  cursor: grab;
}
.howworks-carousel:active {
  cursor: grabbing;
}
.howworks-carousel::-webkit-scrollbar { height: 0; display: none; }
.howworks-card {
  position: relative; border-radius: 12px; padding: 32px 24px;
  background: linear-gradient(135deg, rgba(6, 32, 68, 0.8) 0%, rgba(2, 15, 38, 0.95) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  overflow: visible; /* so glowing borders don't get clipped strangely, though hidden is fine if we don't have overflowing children. We need hidden for the corner radius clipping if there's a background element, but let's keep hidden for safety */
  width: 85vw; max-width: 500px; flex-shrink: 0; scroll-snap-align: center;
  display: flex; align-items: center; gap: 16px;
}
.howworks-card { overflow: hidden; } /* Restore hidden */
.howworks-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}
.howworks-card-content { flex: 1; text-align: left; }
.howworks-step-badge {
  display: inline-block; padding: 6px 20px; border-radius: 20px;
  background: #fc5901;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-display); font-weight: 800; font-size: .85rem;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(252, 89, 1, 0.2), inset 0 2px 4px rgba(255,255,255,0.2);
}
.howworks-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  margin-bottom: 10px; color: var(--white); line-height: 1.3;
}
.howworks-card p {
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.8);
}
.howworks-card-img {
  flex-shrink: 0; width: 140px; height: 160px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.howworks-card-img::after {
  content: ''; position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(255, 193, 0, 0.08) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.howworks-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  border-radius: 12px; position: relative; z-index: 1;
}
 
/* Carousel Dots */
.howworks-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 24px;
}
.howworks-dots .dot {
  width: 12px; height: 12px; border-radius: 6px;
  background: rgba(0, 0, 0, 0.18); cursor: pointer;
  transition: all .3s ease;
}
.howworks-dots .dot.active {
  background: #fc5901; width: 32px; border-radius: 6px;
  box-shadow: 0 0 12px rgba(252, 89, 1, 0.6);
}

/* Mobile Responsive for How Works Cards */
@media (max-width: 600px) {
  .howworks-card {
    width: 88vw; /* So we can see 12vw of the next card */
    padding: 24px 16px;
    gap: 12px;
  }
  .howworks-card-content {
    /* Let content shrink if needed so image doesn't overflow */
    flex: 1 1 auto;
  }
  .howworks-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .howworks-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .howworks-card-img {
    width: 110px;
    height: 130px;
    flex: 0 0 auto;
  }
  .howworks-step-badge {
    padding: 4px 14px;
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
}

/* ===== DEEP OCEAN FLOOR ===== */
.ocean-floor {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center;
  z-index: 3; pointer-events: none;
}
.treasure-chest-img {
  width: 180px; height: auto; display: block;
  position: relative; z-index: 2;
}

/* ===== SWIMMING FISH ===== */
.ocean-fish {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; pointer-events: none;
}
.fish {
  position: absolute;
}
.fish-1 {
  top: 45%; left: -40px;
  animation: fishSwimRight 14s linear infinite;
}
.fish-2 {
  top: 55%; right: -30px;
  animation: fishSwimLeft 18s linear infinite;
  animation-delay: -4s;
}
.fish-3 {
  top: 65%; left: -30px;
  animation: fishSwimRight 20s linear infinite;
  animation-delay: -8s;
}
.fish-4 {
  top: 72%; right: -35px;
  animation: fishSwimLeft 16s linear infinite;
  animation-delay: -2s;
}
@keyframes fishSwimRight {
  0%   { transform: translateX(0) translateY(0) scaleX(-1); }
  25%  { transform: translateX(30vw) translateY(-12px) scaleX(-1); }
  50%  { transform: translateX(60vw) translateY(8px) scaleX(-1); }
  75%  { transform: translateX(90vw) translateY(-6px) scaleX(-1); }
  100% { transform: translateX(120vw) translateY(0) scaleX(-1); }
}
@keyframes fishSwimLeft {
  0%   { transform: translateX(0) translateY(0); }
  25%  { transform: translateX(-30vw) translateY(10px); }
  50%  { transform: translateX(-60vw) translateY(-8px); }
  75%  { transform: translateX(-90vw) translateY(5px); }
  100% { transform: translateX(-120vw) translateY(0); }
}

/* ===== JELLYFISH ===== */
.ocean-jellyfish {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; pointer-events: none;
}
.jelly {
  position: absolute;
  animation: jellyFloat linear infinite, jellyPulse ease-in-out infinite;
}
.jelly-1 {
  left: 15%; bottom: 25%;
  animation-duration: 20s, 2.5s;
}
.jelly-2 {
  right: 20%; bottom: 40%;
  animation-duration: 25s, 3s;
  animation-delay: -6s, -1s;
}
.jelly-3 {
  left: 65%; bottom: 15%;
  animation-duration: 22s, 2.8s;
  animation-delay: -10s, -0.5s;
}
@keyframes jellyFloat {
  0%   { transform: translateY(0) translateX(0); }
  25%  { transform: translateY(-15vh) translateX(10px); }
  50%  { transform: translateY(-30vh) translateX(-8px); }
  75%  { transform: translateY(-45vh) translateX(12px); }
  100% { transform: translateY(-60vh) translateX(0); opacity: 0; }
}
@keyframes jellyPulse {
  0%, 100% { transform: scaleY(1) scaleX(1); }
  50%      { transform: scaleY(.88) scaleX(1.08); }
}

/* ===== SEAWEED ===== */
.seaweed {
  position: absolute; bottom: 0;
  border-radius: 40% 40% 0 0;
  transform-origin: bottom center;
  animation: seaweedSway ease-in-out infinite;
}
.sw-1  { left: 2%;  width: 10px; height: 90px;  background: linear-gradient(to top, #0a4d2e, #0d6b3e); animation-duration: 4s; }
.sw-2  { left: 5%;  width: 7px;  height: 60px;  background: linear-gradient(to top, #0a4a30, #0e5e38); animation-duration: 3.5s; animation-delay: -0.8s; }
.sw-3  { left: 8%;  width: 12px; height: 110px; background: linear-gradient(to top, #084228, #0b5a34); animation-duration: 4.5s; animation-delay: -1.5s; }
.sw-4  { left: 12%; width: 6px;  height: 50px;  background: linear-gradient(to top, #0a4d2e, #10704a); animation-duration: 3.8s; animation-delay: -2.2s; }
.sw-5  { left: 15%; width: 9px;  height: 75px;  background: linear-gradient(to top, #084228, #0d6b3e); animation-duration: 4.2s; animation-delay: -0.5s; }
.sw-6  { left: 20%; width: 11px; height: 95px;  background: linear-gradient(to top, #0a4a30, #0b5a34); animation-duration: 3.7s; animation-delay: -1.8s; }
.sw-7  { left: 25%; width: 8px;  height: 55px;  background: linear-gradient(to top, #0a4d2e, #0e5e38); animation-duration: 4.8s; animation-delay: -3s; }
.sw-8  { left: 30%; width: 10px; height: 80px;  background: linear-gradient(to top, #084228, #10704a); animation-duration: 3.4s; animation-delay: -1s; }
.sw-9  { right: 2%;  width: 11px; height: 95px;  background: linear-gradient(to top, #0a4d2e, #0d6b3e); animation-duration: 4.1s; animation-delay: -0.3s; }
.sw-10 { right: 5%;  width: 8px;  height: 65px;  background: linear-gradient(to top, #084228, #0b5a34); animation-duration: 3.6s; animation-delay: -2s; }
.sw-11 { right: 9%;  width: 13px; height: 105px; background: linear-gradient(to top, #0a4a30, #0e5e38); animation-duration: 4.4s; animation-delay: -1.2s; }
.sw-12 { right: 13%; width: 7px;  height: 48px;  background: linear-gradient(to top, #0a4d2e, #10704a); animation-duration: 3.9s; animation-delay: -2.5s; }
.sw-13 { right: 17%; width: 10px; height: 85px;  background: linear-gradient(to top, #084228, #0d6b3e); animation-duration: 4.3s; animation-delay: -0.7s; }
.sw-14 { right: 22%; width: 9px;  height: 70px;  background: linear-gradient(to top, #0a4a30, #0b5a34); animation-duration: 3.3s; animation-delay: -1.6s; }
.sw-15 { right: 27%; width: 12px; height: 90px;  background: linear-gradient(to top, #0a4d2e, #0e5e38); animation-duration: 4.6s; animation-delay: -2.8s; }
.sw-16 { right: 31%; width: 6px;  height: 45px;  background: linear-gradient(to top, #084228, #10704a); animation-duration: 3.2s; animation-delay: -0.4s; }
@keyframes seaweedSway {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}

/* Responsive */
@media(max-width:768px) {
  .howworks-card-img { width: 80px; height: 80px; }
  .treasure-chest-img { width: 150px; }
}
@media(max-width:480px) {
  .howworks-section .container { padding-top: 48px; padding-bottom: 48px; }
  .howworks-card { padding: 20px 16px; min-width: 72vw; }
  .howworks-card-img { width: 70px; height: 70px; }
  .howworks-card h3 { font-size: 1rem; }
  .howworks-card p { font-size: 13px; }
}



/* ===== SIMPLE COMBINE & BREAKDOWN SECTION ===== */
.combine-section {
  padding: 40px 0;
  background: url('../img/combine-bg.png') center center / cover no-repeat;
  background-color: #020610;
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 10;
  border-top: 1px solid rgba(255, 209, 27, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(100%); /* Start below the view */
}

.benefits-section {
  padding: 40px 0;
  background: #020610;
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 15;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(100%); /* Start below the view */
}
.combine-header { text-align: center; margin-bottom: 48px; }
.combine-label-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 40px;
  margin: 0 auto;
}
.combine-label-wrapper .line {
  flex: 0 0 60px;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}
.combine-label {
  border: 1px solid rgba(255, 255, 255, 0.72);
  height: 40px;
  min-width: 154px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 2px; line-height: 1; text-transform: uppercase;
  margin: 0;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.08), 0 0 15px rgba(255, 255, 255, 0.08);
}
.combine-header h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-top: 16px; margin-bottom: 16px;
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 10px 24px rgba(0,0,0,0.3);
}
.combine-header .highlight { color: #ffffff; }
.combine-header h2 .highlight {
  text-shadow: inherit;
}
.combine-header p {
  color: #ffffff; font-size: 17px; line-height: 1.6; margin-bottom: 32px;
}

.simple-combine-grid {
  display: block; /* changed from flex column */
  max-width: 920px;
  margin: 0 auto;
}

.combine-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.combine-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.combine-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.combine-tab-btn.active {
  background: #ffb500;
  color: #000;
  border-color: #ffb500;
  box-shadow: 0 4px 15px rgba(255, 181, 0, 0.35);
}

.sc-card {
  display: none; /* hidden by default in tab view */
  border-radius: 30px;
  padding: clamp(20px, 3vw, 34px);
  border: 2px solid rgba(231, 176, 67, 0.78);
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation: fadeInTab 0.4s ease forwards;
}
.sc-card.active {
  display: block;
}
@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.sc-card:hover { transform: translateY(-3px); }

/* Combine Card: Soft warm tint (peach/orange) in dark mode */
.sc-combine {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 45%, rgba(255, 177, 33, 0.13), transparent 26%),
    radial-gradient(circle at 18% 90%, rgba(255, 190, 55, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(5, 13, 26, 0.97), rgba(3, 8, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 230, 159, 0.22),
    inset 0 0 42px rgba(255, 178, 43, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(225, 173, 65, 0.82);
}

/* Breakdown Card: Soft cool tint (blue) in dark mode */
.sc-breakdown {
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.08) 0%, rgba(20, 25, 40, 0.6) 100%);
  box-shadow: 0 10px 30px rgba(0, 150, 255, 0.05);
  border-color: rgba(0, 150, 255, 0.15);
}

/* New Combine Card Badge Header */
.combine-header-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(480px, 100%);
  min-height: 54px;
  margin: 0 auto 22px;
  padding: 6px 20px 6px 68px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(12, 15, 20, 0.96), rgba(2, 5, 12, 0.98));
  border: 2px solid rgba(203, 139, 33, 0.9);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.72),
    inset 0 12px 22px rgba(255, 213, 119, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 178, 33, 0.16);
}
.combine-header-badge .sc-icon {
  position: absolute;
  left: -2px;
  top: 50%;
  width: 68px;
  height: 68px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 226, 128, 0.26), transparent 28%),
    linear-gradient(145deg, #221303, #050506 58%, #291806);
  border: 2px solid rgba(204, 143, 35, 0.92);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.64),
    0 0 22px rgba(255, 181, 45, 0.34);
  font-size: 1.25rem;
  color: #ffd85d;
}
.combine-header-badge h3 {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1;
  color: #f7f4ef;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.65);
}

.sc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sc-icon { font-size: 1.5rem; }
.sc-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
}

.sc-desc {
  max-width: 650px;
  margin: 0 auto 24px;
  color: #f1eee7;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.62);
}
.highlight-gold {
  display: inline-block;
  margin-top: 14px;
  color: #ffc322;
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 0 14px rgba(255, 193, 7, 0.36);
}

/* Visual Equation Layout - Single compact row */
.sc-equation-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 20px);
  flex-wrap: nowrap;
  margin-bottom: 28px;
}

.sc-eq-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-item-box {
  position: relative;
  background:
    linear-gradient(145deg, rgba(37, 30, 22, 0.94), rgba(5, 7, 12, 0.98));
  border: 2px solid rgba(218, 158, 51, 0.88);
  border-radius: 12px;
  width: clamp(64px, 10vw, 116px);
  height: clamp(64px, 10vw, 116px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.5),
    inset 0 0 22px rgba(255, 212, 106, 0.1),
    0 9px 18px rgba(0, 0, 0, 0.48);
}
.sc-item-box .emoji {
  display: none;
}

.sc-item-box::after {
  content: "";
  width: 72%;
  height: 72%;
  background: url('../img/silver-box.png') center center / contain no-repeat;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.4));
}

.sc-plus {
  color: #ffc107;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.sc-eq-arrow {
  color: #ffc107;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
  margin: 0 8px;
}

.sc-eq-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-premium-chest-glow {
  position: relative;
  width: clamp(86px, 16vw, 170px);
  height: clamp(86px, 16vw, 170px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-premium-chest-glow .emoji {
  display: none;
}

.sc-premium-chest-glow::after {
  content: "";
  width: 92%;
  height: 92%;
  background: url('../img/gold-box.png') center center / contain no-repeat;
  filter: drop-shadow(0 0 16px rgba(255, 194, 28, 0.8));
}
.sc-premium-chest-glow::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background:
    radial-gradient(circle, rgba(255, 209, 27, 0.6) 0%, rgba(255, 128, 0, 0.24) 34%, transparent 72%);
  z-index: -1;
  filter: blur(10px);
}

@keyframes floatChest {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Premium Banner */
.sc-premium-banner {
  background: rgba(20, 15, 5, 0.8);
  border: 1px solid rgba(255, 209, 27, 0.3);
  border-radius: 40px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.sc-banner-center {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sc-banner-sparkle {
  color: #ffc107;
  font-size: 1.2rem;
  opacity: 0.8;
}

.sc-banner-icon { font-size: 2rem; }

.sc-banner-content h4 {
  color: #ffc107;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 4px 0;
}
.sc-banner-content p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0;
}

/* Breakdown Badge Header Variant */
.breakdown-badge {
  border-color: rgba(0, 150, 255, 0.42);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.72),
    inset 0 12px 22px rgba(0, 150, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(0, 150, 255, 0.18);
}

.breakdown-badge .sc-icon {
  border-color: rgba(0, 150, 255, 0.42);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.64),
    0 0 22px rgba(0, 150, 255, 0.22);
}

/* Breakdown Rewards Row */
.bd-rewards-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.bd-reward-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bd-reward-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background:
    radial-gradient(circle at 36% 28%, rgba(255, 232, 157, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(13, 21, 30, 0.96), rgba(1, 6, 13, 0.98));
  border: 1px solid rgba(182, 124, 34, 0.64);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 142, 0.08),
    inset 0 0 16px rgba(255, 194, 61, 0.12),
    0 7px 18px rgba(0,0,0,0.42);
}

.bd-reward-icon::after {
  content: "";
  width: 74%;
  height: 74%;
  background: var(--reward-asset) center center / contain no-repeat;
  filter: drop-shadow(0 4px 8px rgba(255, 195, 34, 0.35));
}

.bd-reward-item:nth-child(1) .bd-reward-icon {
  --reward-asset: url('../1.png');
}

.bd-reward-item:nth-child(2) .bd-reward-icon {
  --reward-asset: url('../3.png');
}

.bd-reward-item:nth-child(3) .bd-reward-icon {
  --reward-asset: url('../2.png');
}

.bd-reward-label {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Breakdown Result Banner */
.bd-result-banner {
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 194, 70, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(11, 15, 23, 0.95), rgba(3, 7, 15, 0.98));
  border: 2px solid rgba(182, 124, 34, 0.7);
  border-radius: 26px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 24px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 218, 129, 0.12),
    0 10px 28px rgba(0,0,0,0.5);
}

.combine-banner .bd-banner-chest {
  display: block;
  flex: 0 0 clamp(90px, 20vw, 150px);
  width: clamp(90px, 20vw, 150px);
  height: clamp(74px, 15vw, 120px);
  background: url('../Untitled_design__1_-removebg-preview.png') center center / contain no-repeat;
  font-size: 0;
  line-height: 0;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.5));
}

.bd-banner-chest {
  display: block;
  flex: 0 0 clamp(90px, 20vw, 150px);
  width: clamp(90px, 20vw, 150px);
  height: clamp(74px, 15vw, 120px);
  background: url('../img/gold-box.png') center center / contain no-repeat;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
}

.bd-banner-text h4 {
  color: #ffc107;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin: 0 0 2px 0;
  font-weight: 900;
  white-space: nowrap;
}
.bd-banner-text p {
  color: #f5f1ea;
  font-size: clamp(1.05rem, 3vw, 2rem);
  line-height: 1.35;
  margin: 0;
}

.combine-banner .bd-banner-text h4 {
  font-size: 16px;
}

.combine-banner .bd-banner-text p {
  font-size: 13px;
}

.sc-breakdown .bd-banner-text h4 {
  font-size: 16px;
}

.sc-breakdown .bd-banner-text p {
  font-size: 13px;
}

.sc-breakdown .bd-result-banner {
  border-color: rgba(0, 150, 255, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(132, 211, 255, 0.12),
    0 10px 28px rgba(0,0,0,0.5),
    0 0 22px rgba(0, 150, 255, 0.12);
}


.combine-benefits-header {
  text-align: center; color: var(--gold); font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem; letter-spacing: 1px; margin: 0 0 40px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.combine-benefits-header::before, .combine-benefits-header::after {
  content:''; flex:1; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,209,27,0.5), transparent);
}

.combine-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-card {
  position: relative; border-radius: 24px; padding: 24px; text-align: center;
  background: linear-gradient(135deg, rgba(6, 32, 68, 0.7) 0%, rgba(2, 15, 38, 0.85) 100%);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 195, 255, 0.5);
  border-top: 2px solid rgba(100, 230, 255, 0.9);
  border-left: 2px solid rgba(100, 230, 255, 0.8);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.6), 
    inset 0 0 30px rgba(0, 180, 255, 0.4),
    inset 0 4px 15px rgba(255, 255, 255, 0.2);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  overflow: hidden;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 195, 255, 0.75);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.7), 
    inset 0 0 35px rgba(0, 180, 255, 0.5),
    inset 0 4px 15px rgba(255, 255, 255, 0.25);
}
.benefit-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.2);
}
.bg-purple { background: radial-gradient(circle, #5b21b6, #3b0764); border: 2px solid #8b5cf6; }
.bg-blue { background: radial-gradient(circle, #1e40af, #1e3a8a); border: 2px solid #3b82f6; }
.bg-green { background: radial-gradient(circle, #166534, #14532d); border: 2px solid #22c55e; }
.bg-gold { background: radial-gradient(circle, #92400e, #713f12); border: 2px solid #eab308; }

.benefit-card h4 { color: #fff; font-size: 1.1rem; margin-bottom: 12px; font-family: var(--font-display); font-weight: 700; }
.benefit-card p { color: #94a3b8; font-size: 0.9rem; line-height: 1.5; }

/* ===== PREMIUM BENEFITS SECTION ===== */
.benefits-section {
  padding: clamp(20px, 3vw, 36px) 0;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 22, 0.55); /* Dark overlay to improve text contrast */
  z-index: 1;
  pointer-events: none;
}

.benefits-section { font-family: var(--font-body); }

.benefits-section .container {
  max-width: 840px;
  position: relative;
  z-index: 2;
}

.combine-benefits-header {
  display: block;
  margin: 0 auto clamp(16px, 2.6vw, 28px);
  text-align: center;
  color: var(--white);
  font-size: initial;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
}

.combine-benefits-header::before,
.combine-benefits-header::after {
  content: none;
}

.combine-benefits-header h2 {
  font-family: var(--font-display) !important;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: 0;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 10px 24px rgba(0,0,0,0.3);
}

.combine-benefits-header .highlight {
  color: #ffffff;
  text-shadow: inherit;
}

.combine-benefits-header p {
  color: #ffffff;
  font-family: var(--font-body) !important;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: none;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 10px 24px rgba(0,0,0,0.3);
}

.combine-benefits-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
}

.benefit-card {
  position: relative;
  min-height: clamp(190px, 27vh, 250px);
  padding: clamp(14px, 2.5vw, 22px);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(6, 32, 68, 0.7) 0%, rgba(2, 15, 38, 0.85) 100%);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(0, 195, 255, 0.5);
  border-top: 2px solid rgba(100, 230, 255, 0.9);
  border-left: 2px solid rgba(100, 230, 255, 0.8);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.6), 
    inset 0 0 30px rgba(0, 180, 255, 0.4),
    inset 0 4px 15px rgba(255, 255, 255, 0.2);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 195, 255, 0.75);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.7), 
    inset 0 0 35px rgba(0, 180, 255, 0.5),
    inset 0 4px 15px rgba(255, 255, 255, 0.25);
}

.benefit-icon {
  width: min(52%, 150px);
  height: clamp(78px, 14vh, 125px);
  margin: 0 auto clamp(8px, 1.7vw, 14px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0;
  position: relative;
}

.benefit-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--benefit-asset) center center / contain no-repeat;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.45));
}

.benefit-card:nth-child(1) .benefit-icon { --benefit-asset: url('../3.png'); }
.benefit-card:nth-child(2) .benefit-icon { --benefit-asset: url('../1.png'); }
.benefit-card:nth-child(3) .benefit-icon { --benefit-asset: url('../2.png'); }
.benefit-card:nth-child(4) .benefit-icon { --benefit-asset: url('../4.png'); }

.benefit-card h4 {
  max-width: 280px;
  margin: 0 auto 8px;
  color: #f7f1e8;
  font-family: var(--font-display) !important;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.03em;
  text-shadow: none;
}

.benefit-card p {
  max-width: 260px;
  margin: 0 auto;
  color: #f4eee7;
  font-family: var(--font-body) !important;
  font-size: 13px;
  line-height: 1.38;
  text-shadow: none;
}

.combine-benefits-header,
.blog-title,
.section-title,
.combine-header h2,
.howworks-title,
.benefit-card h4,
.blog-card h3,
.blog-detail-article h1,
.blog-detail-content h2,
.blog-detail-cta h2 {
  font-family: var(--font-display);
}

.blog-subtitle,
.combine-header p,
.howworks-subtitle,
.benefit-card p,
.blog-card p,
.blog-detail-excerpt,
.blog-detail-content p,
.blog-detail-cta p,
.footer,
.footer p {
  font-family: var(--font-body);
}

.benefits-section .container::after {
  content: none;
}

.benefits-cta {
  white-space: pre-line;
  display: block;
  max-width: 560px;
  margin: clamp(12px, 2vw, 18px) auto 0;
  padding: 16px 24px;
  border: 2px solid rgba(0, 195, 255, 0.5);
  border-top: 2px solid rgba(100, 230, 255, 0.9);
  border-left: 2px solid rgba(100, 230, 255, 0.8);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(6, 32, 68, 0.7) 0%, rgba(2, 15, 38, 0.85) 100%);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 16px 40px rgba(0,0,0,0.6), 
    inset 0 0 30px rgba(0, 180, 255, 0.4),
    inset 0 4px 15px rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-align: center;
  font-family: var(--font-display) !important;
  font-size: clamp(0.92rem, 2.4vw, 1.5rem);
  font-weight: 800;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
}
.benefits-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 195, 255, 0.75);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.7), 
    inset 0 0 35px rgba(0, 180, 255, 0.5),
    inset 0 4px 15px rgba(255, 255, 255, 0.25);
}
  line-height: 1.3;
  box-shadow:
    inset 0 0 0 1px rgba(255, 232, 166, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.5);
}

/* ===== COMBINE CTA BANNER ===== */
.combine-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #060b19 0%, #121c3a 50%, #060b19 100%);
  border: 1px solid rgba(255, 209, 27, 0.3);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-img-wrap {
  width: 280px;
  height: 130px;
  position: relative;
  display: flex;
  align-items: center;
}
.cta-banner-img-wrap.left {
  justify-content: flex-start;
  mask-image: linear-gradient(to right, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent);
}
.cta-banner-img-wrap.right {
  justify-content: flex-end;
  mask-image: linear-gradient(to left, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent);
}
.cta-banner-left, .cta-banner-right {
  height: 100%;
  width: 100%;
  object-fit: cover;
  pointer-events: none;
}

.cta-banner-content {
  flex: 1;
  text-align: center;
  padding: 16px 20px;
  z-index: 2;
}
.cta-banner-content h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.banner-btn {
  font-size: 1.05rem;
  padding: 12px 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  box-shadow: 0 6px 15px rgba(255, 209, 27, 0.2);
}

.cta-hint {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media(max-width: 992px) {
  .combine-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
  .sc-card { padding: 24px; }
  .sc-equation { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sc-eq-row { flex-wrap: wrap; }
  .combine-cta-banner { flex-direction: column; text-align: center; }
  .cta-banner-img-wrap { display: none; }
  .cta-banner-content { padding: 32px 20px; }
}


/* ===== BLOG SECTION ===== */
.blog-section {
  --blog-slide-bleed: 120px;
  padding: 100px 0;
  background-color: #020610;
  background-image: url('../img/blog-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute; top: calc(var(--blog-slide-bleed) * -1); left: 0; width: 100%; height: calc(100% + var(--blog-slide-bleed));
  z-index: 20;
  transform: translateY(100%);
  overflow-y: auto;
  padding-top: calc(100px + var(--blog-slide-bleed));
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.blog-section::-webkit-scrollbar {
  display: none;
}

.blog-page {
  background: #020610;
  color: var(--white);
  min-height: 100vh;
}

.blog-page-nav {
  position: absolute;
  top: 32px;
  left: 24px;
  z-index: 25;
}

.blog-page-nav .blog-detail-back,
.blog-page-nav .blog-detail-back:hover {
  color: #ffffff;
}

.blog-page .blog-section {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  min-height: 100vh;
  height: auto;
  transform: none;
  overflow: hidden;
  padding: 100px 0;
}


.blog-section .container { position: relative; z-index: 2; }
.blog-header { text-align: center; margin-bottom: 64px; }
.blog-label {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  width: max-content;
  margin: 0 auto 16px;
}
.blog-label-line {
  flex: 0 0 60px;
  height: 1px;
  width: 60px;
  background: rgba(255, 255, 255, 0.72);
}
.blog-label-text {
  border: 1px solid rgba(255, 255, 255, 0.72);
  height: 40px;
  min-width: 154px;
  padding: 0 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.08), 0 0 15px rgba(255, 255, 255, 0.08);
}
.blog-label-text .diamond {
  display: none;
}
.blog-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 16px;
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 10px 24px rgba(0,0,0,0.3);
}
.blog-subtitle {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: #ffffff; max-width: 500px; margin: 0 auto 32px auto;
}
.blog-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.blog-divider-line { height: 1px; width: 100px; background: rgba(255, 209, 27, 0.3); }
.blog-divider-ornament {
  width: 12px; height: 12px;
  border: 1px solid var(--gold); transform: rotate(45deg);
  background: rgba(255, 209, 27, 0.2);
}

.blog-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
  /* Break out of container to reach screen edges */
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: grab;
}
.blog-grid:active {
  cursor: grabbing;
}
.blog-grid::-webkit-scrollbar { display: none; }

.blog-card {
  background: #0b1322;
  border: 1px solid rgba(255, 209, 27, 0.15);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
  min-width: 280px;
  max-width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 20px rgba(255, 209, 27, 0.1);
  border-color: rgba(255, 209, 27, 0.3);
}
.blog-card-img {
  width: 100%; height: 180px; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-content {
  padding: 24px 20px; flex: 1; display: flex; flex-direction: column; align-items: flex-start;
}
.blog-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  border: 1px solid rgba(255, 209, 27, 0.5);
  color: var(--gold); font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 1px; margin-bottom: 12px;
}
.blog-card h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: var(--white); line-height: 1.3; margin-bottom: 10px;
}
.blog-card p {
  font-family: var(--font-body); font-size: 13px; line-height: 1.6;
  color: #94a3b8; margin-bottom: 16px; flex: 1;
}
.blog-read-more {
  color: var(--gold); text-decoration: none; font-weight: 700;
  font-size: 14px; display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.3s ease;
}
.blog-read-more:hover { color: #fce8a1; }

.blog-empty {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  margin: 0;
}

/* ===== CMS PAGE ===== */
.cms-page {
  min-height: 100vh;
  background: #f7efe3;
  color: #19120d;
  font-family: var(--font-body);
}

.cms-login-view {
  align-items: center;
  display: flex;
  min-height: 100vh;
  justify-content: center;
  padding: 24px;
}

.cms-login-card {
  background: #ffffff;
  border: 1px solid rgba(255, 91, 0, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(146, 64, 14, 0.09);
  display: grid;
  gap: 16px;
  max-width: 420px;
  padding: 28px;
  width: 100%;
}

.cms-login-card p,
.cms-settings-card p {
  color: var(--gopang);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin: 0;
}

.cms-login-card h1 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  margin: 0;
}

.cms-login-card label {
  color: #5d5047;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.cms-login-card input,
.cms-password-form input {
  border: 1px solid rgba(25, 18, 13, 0.14);
  border-radius: 10px;
  color: #19120d;
  font: 15px/1.5 var(--font-body);
  padding: 11px 12px;
}

.cms-login-card button {
  border: 0;
  border-radius: 999px;
  background: var(--gopang);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  padding: 12px 18px;
}

.cms-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cms-header p {
  margin: 0 0 6px;
  color: var(--gopang);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.cms-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.cms-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cms-nav a,
.cms-nav button,
.cms-panel-heading button,
.cms-sections-heading button,
.cms-actions button {
  border: 0;
  border-radius: 999px;
  background: var(--gopang);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
  text-decoration: none;
}

.cms-nav button {
  appearance: none;
}

.cms-tabs {
  display: flex;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 20px;
  padding: 0 24px;
}

.cms-tabs button {
  border: 1px solid rgba(255, 91, 0, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #19120d;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 20px;
}

.cms-tabs button.active {
  background: var(--gopang);
  color: #ffffff;
}

.cms-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
}

.cms-profile-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.cms-list-panel,
.cms-editor-panel {
  background: #ffffff;
  border: 1px solid rgba(255, 91, 0, 0.12);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(146, 64, 14, 0.09);
}

.cms-list-panel { padding: 18px; }
.cms-editor-panel { padding: 24px; }

.cms-settings-card {
  align-items: center;
  background: #fffaf4;
  border: 1px solid rgba(25, 18, 13, 0.1);
  border-radius: 14px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
  padding: 18px;
}

.cms-settings-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 6px;
}

.cms-settings-card p {
  color: #7d6a5b;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
}

.cms-password-form {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cms-password-form button {
  border: 0;
  border-radius: 999px;
  background: var(--gopang);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
}

.cms-panel-heading,
.cms-sections-heading,
.cms-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cms-panel-heading h2,
.cms-sections-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
}

.cms-post-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.cms-media-panel {
  border-top: 1px solid rgba(25, 18, 13, 0.1);
  margin-top: 22px;
  padding-top: 18px;
}

.cms-post-item {
  border: 1px solid rgba(25, 18, 13, 0.1);
  border-radius: 12px;
  background: #fffaf4;
  color: #19120d;
  cursor: pointer;
  padding: 14px;
  text-align: left;
}

.cms-post-item.active {
  border-color: var(--gopang);
  box-shadow: 0 0 0 2px rgba(255, 91, 0, 0.12);
}

.cms-post-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.cms-post-item span {
  color: #7d6a5b;
  font-size: 13px;
}

.cms-form,
.cms-form-grid,
.cms-sections {
  display: grid;
  gap: 16px;
}

.cms-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cms-form label {
  color: #5d5047;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.cms-form input[type="text"],
.cms-form input[type="file"],
.cms-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 18, 13, 0.14);
  border-radius: 10px;
  color: #19120d;
  font: 15px/1.5 var(--font-body);
  padding: 11px 12px;
}

.cms-form input[type="file"] {
  background: #fffaf4;
  cursor: pointer;
}

.cms-media-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}

.cms-media-pagination {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 12px;
}

.cms-media-pagination button {
  border: 0;
  border-radius: 999px;
  background: #2b211b;
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
}

.cms-media-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cms-media-pagination span {
  color: #5d5047;
  font-size: 13px;
  font-weight: 800;
}

.cms-media-empty {
  color: #7d6a5b;
  font-size: 13px;
  margin: 0;
}

.cms-media-item {
  align-items: center;
  background: #fffaf4;
  border: 1px solid rgba(25, 18, 13, 0.1);
  border-radius: 12px;
  color: #19120d;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 64px minmax(0, 1fr);
  padding: 8px;
  text-align: left;
}

.cms-media-item img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  width: 64px;
}

.cms-media-item span {
  font-size: 12px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.cms-toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cms-toggle-row label {
  align-items: center;
  display: flex;
  gap: 8px;
}

.cms-section-item {
  border: 1px solid rgba(25, 18, 13, 0.1);
  border-radius: 14px;
  padding: 16px;
}

.cms-section-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cms-section-top strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.cms-section-top button,
.cms-danger {
  background: #2b211b !important;
  color: #ffffff !important;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 13px;
}

#cmsStatus {
  color: #4f453e;
  font-size: 14px;
  font-weight: 700;
}

#cmsStatus.error,
#loginStatus.error,
#benefitsStatus.error,
#siteSettingsStatus.error { color: #b42318; }

.cms-modal[hidden],
[hidden] {
  display: none !important;
}

.cms-modal {
  align-items: center;
  background: rgba(25, 18, 13, 0.56);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 500;
}

.cms-modal-card {
  background: #ffffff;
  border-radius: 18px;
  max-width: 520px;
  padding: 20px;
  position: relative;
  width: 100%;
}

.cms-modal-close {
  align-items: center;
  background: #2b211b;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 22px;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
}

.cms-modal-card img {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

.cms-modal-card h2 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 16px 0 8px;
  overflow-wrap: anywhere;
}

.cms-modal-card p {
  color: #5d5047;
  font-size: 13px;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}

.cms-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cms-modal-actions button {
  border: 0;
  border-radius: 999px;
  background: var(--gopang);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
}

@media (max-width: 860px) {
  .cms-header,
  .cms-shell {
    grid-template-columns: 1fr;
  }

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

  .cms-form-grid {
    grid-template-columns: 1fr;
  }

  .cms-password-form {
    grid-template-columns: 1fr;
  }
}

/* ===== CMS DASHBOARD REDESIGN ===== */
.cms-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 91, 0, 0.1), transparent 34%),
    linear-gradient(135deg, #fff8ef 0%, #f4e7d6 100%);
}

.cms-app {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.cms-mobile-header,
.cms-sidebar-overlay {
  display: none;
}

.cms-sidebar {
  background:
    linear-gradient(180deg, rgba(255, 91, 0, 0.14), transparent 34%),
    #19120d;
  box-shadow: 18px 0 42px rgba(25, 18, 13, 0.08);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 100vh;
  padding: 28px 22px;
  position: sticky;
  top: 0;
}

.cms-brand p,
.cms-mobile-header p,
.cms-view-header p,
.cms-drawer-header p {
  color: var(--gopang);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cms-brand h1 {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  margin: 0;
}

.cms-mobile-header h1 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  margin: 0;
}

.cms-side-nav {
  display: grid;
  gap: 10px;
}

.cms-side-nav button,
.cms-side-links a,
.cms-side-links button {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  justify-content: space-between;
  padding: 13px 14px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cms-side-nav button:hover,
.cms-side-links a:hover,
.cms-side-links button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

.cms-side-nav button.active {
  background: var(--gopang);
  border-color: var(--gopang);
}

.cms-side-links {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.cms-workspace {
  display: grid;
  gap: 22px;
  padding: 36px;
}

.cms-view {
  display: grid;
  gap: 22px;
  margin-inline: auto;
  max-width: 1120px;
  width: 100%;
}

.cms-view-header {
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 91, 0, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(146, 64, 14, 0.08);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px;
}

.cms-view-header h2 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  margin: 0;
}

.cms-primary-btn,
.cms-secondary-btn,
.cms-upload-btn {
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--gopang);
  box-shadow: 0 12px 26px rgba(255, 91, 0, 0.18);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.cms-secondary-btn {
  background: #2b211b;
  box-shadow: none;
}

.cms-upload-btn input {
  display: none;
}

.cms-toolbar {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 91, 0, 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 45px rgba(146, 64, 14, 0.06);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) 180px;
  padding: 14px;
}

.cms-toolbar input,
.cms-toolbar select {
  border: 1px solid rgba(25, 18, 13, 0.14);
  border-radius: 12px;
  font: 15px/1.4 var(--font-body);
  padding: 11px 12px;
}

.cms-article-list {
  display: grid;
  gap: 14px;
}

.cms-article-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 91, 0, 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 45px rgba(146, 64, 14, 0.06);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 18px;
}

.cms-category,
.cms-pill {
  color: var(--gopang);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.cms-article-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
  margin: 5px 0 7px;
}

.cms-article-card p {
  color: #6b5a4f;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cms-card-meta {
  color: #7d6a5b;
  display: grid;
  font-size: 13px;
  gap: 6px;
  min-width: 92px;
}

.cms-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cms-card-actions a,
.cms-card-actions button {
  border: 0;
  border-radius: 999px;
  background: #fff3e9;
  color: #19120d;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 13px;
  text-decoration: none;
}

.cms-card-actions .danger {
  background: #2b211b;
  color: #ffffff;
}

.cms-media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cms-media-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 91, 0, 0.12);
  border-radius: 20px;
  box-shadow: 0 14px 45px rgba(146, 64, 14, 0.06);
  color: #19120d;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.cms-media-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.cms-media-card span {
  display: block;
  font-size: 13px;
  overflow-wrap: anywhere;
  padding: 12px;
}

.cms-empty-state {
  background: rgba(255, 255, 255, 0.86);
  border: 1px dashed rgba(255, 91, 0, 0.28);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.cms-empty-state h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
}

.cms-empty-state p {
  color: #7d6a5b;
  margin: 0;
}

.cms-benefits-form {
  max-width: 920px;
}

.cms-benefit-card-editor {
  display: grid;
  gap: 16px;
}

.cms-benefit-edit-card {
  background: #fffaf4;
  border: 1px solid rgba(25, 18, 13, 0.1);
  border-radius: 16px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.cms-benefit-icon-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cms-benefit-icon-row img {
  background: #120f0d;
  border-radius: 12px;
  height: 70px;
  object-fit: contain;
  padding: 10px;
  width: 90px;
}

#benefitsStatus {
  color: #4f453e;
  font-size: 14px;
  font-weight: 700;
}

.cms-display-form {
  display: grid;
  gap: 16px;
}

.cms-switch-row {
  align-items: center;
  color: #19120d;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  gap: 12px;
}

.cms-switch-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cms-switch {
  background: #2b211b;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  display: inline-flex;
  flex: 0 0 58px;
  height: 32px;
  padding: 4px;
  transition: background 0.2s ease;
  width: 58px;
}

.cms-switch::before {
  background: #ffffff;
  border-radius: 50%;
  content: "";
  height: 24px;
  transform: translateX(0);
  transition: transform 0.2s ease;
  width: 24px;
}

.cms-switch-row input:checked + .cms-switch {
  background: var(--gopang);
}

.cms-switch-row input:checked + .cms-switch::before {
  transform: translateX(26px);
}

.cms-display-form button {
  border: 0;
  border-radius: 999px;
  background: var(--gopang);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  justify-self: start;
  padding: 12px 18px;
}

#siteSettingsStatus {
  color: #4f453e;
  font-size: 14px;
  font-weight: 700;
}

.cms-drawer {
  background: rgba(25, 18, 13, 0.58);
  backdrop-filter: blur(7px);
  inset: 0;
  position: fixed;
  z-index: 450;
}

.cms-drawer-panel {
  background: #ffffff;
  box-shadow: -22px 0 60px rgba(25, 18, 13, 0.2);
  height: 100vh;
  margin-left: auto;
  max-width: 760px;
  overflow-y: auto;
  padding: 26px;
  width: min(92vw, 760px);
}

.cms-drawer-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cms-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0;
}

.cms-drawer-header button {
  align-items: center;
  background: #2b211b;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.cms-form-section {
  border: 1px solid rgba(25, 18, 13, 0.1);
  border-radius: 18px;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.cms-form-section h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0;
}

.cms-image-picker {
  display: grid;
  gap: 16px;
  grid-template-columns: 180px minmax(0, 1fr);
}

.cms-image-preview {
  background: #fffaf4;
  border: 1px solid rgba(25, 18, 13, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.cms-image-preview img {
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.cms-image-preview:has(img[src=""]) {
  min-height: 180px;
}

.cms-drawer-actions {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid rgba(25, 18, 13, 0.1);
  bottom: 0;
  display: flex;
  gap: 12px;
  margin-top: 22px;
  padding-top: 16px;
  position: sticky;
}

.cms-drawer-actions button {
  border: 0;
  border-radius: 999px;
  background: var(--gopang);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 18px;
}

.cms-settings-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(146, 64, 14, 0.08);
  gap: 20px;
  max-width: 720px;
  padding: 24px;
}

.cms-settings-card h2 {
  font-size: 28px;
}

.cms-settings-card p {
  color: #6b5a4f;
}

.cms-password-form {
  grid-template-columns: 1fr;
}

.cms-password-form button {
  justify-self: start;
  min-width: 190px;
}

.cms-confirm-card {
  max-width: 420px;
}

@media (max-width: 980px) {
  .cms-app {
    display: block;
    grid-template-columns: 1fr;
    padding-top: 88px;
  }

  .cms-mobile-header {
    align-items: center;
    background:
      linear-gradient(90deg, rgba(255, 91, 0, 0.16), transparent),
      #19120d;
    box-shadow: 0 14px 34px rgba(25, 18, 13, 0.16);
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 16px 20px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 420;
  }

  .cms-mobile-header p {
    margin-bottom: 5px;
  }

  .cms-mobile-header button {
    align-items: center;
    background: var(--gopang);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 26px rgba(255, 91, 0, 0.22);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
    height: 46px;
    justify-content: center;
    padding: 0;
    width: 50px;
  }

  .cms-mobile-header button span {
    background: #ffffff;
    border-radius: 999px;
    display: block;
    height: 3px;
    width: 22px;
  }

  .cms-sidebar {
    bottom: 0;
    left: 0;
    max-width: 330px;
    min-height: 100dvh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    width: min(82vw, 330px);
    z-index: 440;
  }

  .cms-app.sidebar-open .cms-sidebar {
    transform: translateX(0);
  }

  .cms-app.sidebar-open .cms-sidebar-overlay {
    background: rgba(25, 18, 13, 0.58);
    backdrop-filter: blur(4px);
    bottom: 0;
    display: block;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 430;
  }

  .cms-side-nav,
  .cms-side-links {
    grid-template-columns: 1fr;
  }

  .cms-workspace {
    padding: 22px;
  }

  .cms-article-card {
    grid-template-columns: 1fr;
  }

  .cms-card-actions {
    justify-content: flex-start;
  }

  .cms-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .cms-toolbar,
  .cms-image-picker,
  .cms-form-grid {
    grid-template-columns: 1fr;
  }

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

  .cms-side-nav,
  .cms-side-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blog-label-line { width: 30px; }
  .blog-divider-line { width: 60px; }
  .blog-card { min-width: 260px; max-width: 280px; }
  .blog-card-img { height: 160px; }
}

/* ===== BLOG DETAIL PAGE ===== */
.blog-detail-page {
  min-height: 100vh;
  background: #fffaf1;
  color: var(--dark);
}

.blog-detail-nav {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.blog-detail-logo img {
  width: 132px;
  height: auto;
  display: block;
}

.blog-detail-back {
  color: var(--gopang);
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-display);
}

.blog-detail-back:hover { color: var(--gopang-dark); }

.blog-detail-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.blog-detail-article {
  background: var(--white);
  border: 1px solid rgba(255, 91, 0, 0.12);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 18px 50px rgba(146, 64, 14, 0.09);
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--gopang);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.3px;
}

.blog-detail-meta span:first-child {
  background: rgba(255, 91, 0, 0.1);
  border-radius: 999px;
  padding: 6px 14px;
}

.blog-detail-article h1 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #19120d;
  margin-bottom: 18px;
}

.blog-detail-excerpt {
  max-width: 720px;
  color: #6b5a4f;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.blog-detail-hero {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 38px;
  display: block;
}

.blog-detail-content {
  max-width: 720px;
  margin: 0 auto;
}

.blog-detail-content section + section { margin-top: 34px; }

.blog-detail-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  color: #21160f;
  margin-bottom: 10px;
}

.blog-detail-content p {
  color: #4f453e;
  font-size: 16px;
  line-height: 1.9;
}

.blog-detail-cta {
  margin-top: 28px;
  background: #17120f;
  color: var(--white);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.blog-detail-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 6px;
}

.blog-detail-cta p {
  color: rgba(255,255,255,.74);
  max-width: 460px;
}

.blog-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.blog-detail-actions a {
  background: var(--gopang);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
}

.blog-detail-actions a:hover { background: var(--gopang-light); }

@media (max-width: 720px) {
  .blog-detail-nav { align-items: flex-start; flex-direction: column; }
  .blog-detail-cta { align-items: flex-start; flex-direction: column; }
  .blog-detail-actions { width: 100%; }
  .blog-detail-actions a { flex: 1; text-align: center; }
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0; text-align: center; color: var(--white);
  background: linear-gradient(135deg, var(--gopang), var(--gopang-dark));
  position: relative; overflow: hidden;
}
.cta-section::before {
  content:''; position: absolute; inset:0;
  background: radial-gradient(circle at 30% 50%, rgba(255,193,0,.2) 0%, transparent 50%);
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-title .highlight { color: var(--gold); }
.cta-desc { color: rgba(255,255,255,.85); max-width: 500px; margin: 0 auto 36px; font-size: 1.1rem; }
.store-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,.3); backdrop-filter: blur(8px);
  color: var(--white); padding: 14px 28px; border-radius: 14px;
  text-decoration: none; transition: var(--transition);
  border: 1px solid rgba(255,255,255,.15);
}
.store-btn:hover { background: rgba(0,0,0,.5); transform: translateY(-2px); }
.store-btn svg { width: 28px; height: 28px; fill: currentColor; }
.store-btn-label { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; opacity: .8; }
.store-btn-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }

/* ===== FOOTER ===== */
.footer {
  background: #040914; /* very dark navy */
  padding: 80px 0 40px;
  color: var(--white);
  font-family: var(--font-body);
}
.footer-info {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
}
.footer-row,
.footer-group {
  display: flex;
  margin-bottom: 16px;
}
.footer-key {
  width: 140px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}
.footer-val {
  flex: 1;
  font-size: 15px;
}
.footer-val a {
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-val a:hover {
  color: var(--gold);
}
.footer-socials,
.footer-phone-list {
  display: grid;
  gap: 6px;
}
.footer-socials a {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  width: fit-content;
}
.footer-social-icon {
  align-items: center;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  flex: 0 0 24px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}
.footer-social-icon-img {
  flex: 0 0 24px;
  height: 24px;
  object-fit: contain;
  width: 24px;
}
.footer-social-ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
}
.footer-social-tiktok {
  background: #050505;
  box-shadow: inset 2px 0 0 #25f4ee, inset -2px 0 0 #fe2c55;
}
.footer-copyright {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 48px;
  letter-spacing: 1px;
}

/* ===== WAVE DIVIDER ===== */
.wave-divider { position: relative; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 60px; }
.wave-divider.flip { transform: rotate(180deg); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity:0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .reward-grid { grid-template-columns: 1fr; }
  .reward-features { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:768px) {
  .nav-links { 
    display: none; position: fixed; top:0; left:0; right:0; bottom:0;
    background: rgba(26,26,26,.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.3rem; color: var(--white); }
  .nav-toggle { display: flex; z-index: 101; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .reward-features { grid-template-columns: 1fr; }
  .store-buttons { flex-direction: column; align-items: center; }
}
@media(max-width:480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-card { padding: 20px 12px; }
  .stat-value { font-size: 1.8rem; }
  .step-item { gap: 16px; }
  .step-number { width: 48px; height: 48px; font-size: 1rem; }
  .steps-line { left: 23px; }
  .prize-card { min-width: 240px; }
  .testimonial-card { min-width: 260px; }
  
  .footer-row,
  .footer-group { flex-direction: column; margin-bottom: 24px; }
  .footer-key { width: auto; margin-bottom: 4px; }
}

/* ===== FLOATING APP LINKS ===== */
.floating-apps {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-btn {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.06);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
}
.app-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 4px 8px rgba(0,0,0,0.08);
}

.combine-header .combine-label {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .floating-apps {
    top: 16px;
    right: 16px;
  }
  .app-btn {
    width: 50px;
    height: 50px;
  }
  .app-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== DAFTAR HADIAH SECTION ===== */
.prize-list-section {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  transform: translateY(100%);
  z-index: 5;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-image: url('../img/prize-list-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prize-list-section::-webkit-scrollbar {
  display: none;
}

.prize-list-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 40, 1) 0%, rgba(10, 20, 40, 0.5) 20%, rgba(20, 30, 50, 0.4) 80%, rgba(10, 20, 40, 1) 100%);
  z-index: 1;
}

.prize-list-section .container {
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.prize-list-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.prize-list-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 12px;
  text-shadow: none;
}

.prize-list-subtitle {
  font-size: 17px;
  color: #1a1a1a;
  margin: 0;
}

/* ===== PRIZE LAYOUT (3-2-2-2-1) ===== */
.prize-layout {
  max-width: 500px;
  margin: 0 auto;
}

/* TOP ROW: 3 CARDS */
.prize-top-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 6px;
  align-items: flex-end;
  margin-bottom: 12px;
}

.prize-card {
  position: relative;
  min-width: 0; /* Fixes grid item blowout */
  background: linear-gradient(135deg, rgba(6, 32, 68, 0.8) 0%, rgba(2, 15, 38, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.prize-card.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 12px 4px 10px;
}

.prize-card.vertical.rank-1 {
  transform: translateY(-10px);
  z-index: 2;
  padding: 20px 4px 14px;
}
.prize-card.vertical.rank-1:hover {
  transform: translateY(-13px);
}

.prize-card.legendary {
  border: 1px solid rgba(255, 209, 27, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 209, 27, 0.15);
}

.prize-card.epic {
  border: 1px solid rgba(162, 0, 255, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(162, 0, 255, 0.15);
}

.prize-card.rare {
  border: 1px solid rgba(0, 195, 255, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(0, 195, 255, 0.15);
}

/* Vertical specific styling */
.prize-card.vertical h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 6px 0;
  width: 100%;
  word-wrap: break-word;
}
.prize-card.vertical.rank-1 h4 {
  font-size: 0.8rem;
}

.prize-card.vertical .prize-img-wrap {
  width: 50px;
  height: 50px;
  margin: 0 0 8px;
}
.prize-card.vertical.rank-1 .prize-img-wrap {
  width: 65px;
  height: 65px;
}

/* Rank Badges */
.rank-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  color: #1a1a1a;
  border: 2px solid #fff;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.rank-badge.gold-badge {
  background: linear-gradient(135deg, #FFD11B, #FF9900);
  width: 30px; height: 30px; top: -15px; font-size: 14px;
}
.rank-badge.silver-badge {
  background: linear-gradient(135deg, #E0E0E0, #9E9E9E);
}
.rank-badge.bronze-badge {
  background: linear-gradient(135deg, #FF9D5C, #D85A19);
  color: #fff;
}

.prize-badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legendary .prize-badge, .legendary .prize-badge-inline { color: #FFD11B; }
.epic .prize-badge, .epic .prize-badge-inline { color: #A200FF; }
.rare .prize-badge, .rare .prize-badge-inline { color: #00C3FF; }

/* BOTTOM GRID */
.prize-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.prize-card.horizontal {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 6px;
  gap: 8px;
  text-align: left;
}
.prize-card.horizontal.full-width {
  grid-column: span 2;
}

.rank-badge-side {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.prize-card.horizontal .prize-img-wrap {
  width: 35px;
  height: 35px;
  margin: 0;
}

.prize-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prize-info h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prize-badge-inline {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.diamond-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: currentColor;
  transform: rotate(45deg);
}

.prize-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.prize-img-wrap::after {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  z-index: 0;
}

.prize-card.legendary .prize-img-wrap::after {
  background: radial-gradient(circle, rgba(255,209,27,0.2) 0%, transparent 60%);
}

.prize-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .prize-layout {
    max-width: 700px;
  }
  .prize-top-row { gap: 16px; }
  .prize-grid-bottom { gap: 12px; }
  .prize-card.vertical { padding: 24px 16px 16px; }
  .prize-card.vertical.rank-1 { padding: 30px 16px 20px; }
  .prize-card.vertical h4 { font-size: 1rem; }
  .prize-card.vertical.rank-1 h4 { font-size: 1.15rem; }
  .prize-card.vertical .prize-img-wrap { width: 80px; height: 80px; margin-bottom: 16px; }
  .prize-card.vertical.rank-1 .prize-img-wrap { width: 110px; height: 110px; }
  .prize-card.horizontal { padding: 16px; gap: 16px; }
  .prize-card.horizontal .prize-img-wrap { width: 50px; height: 50px; }
  .prize-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
  .prize-badge-inline { font-size: 0.7rem; }
}

.prize-list-logo-bottom {
  margin-top: 32px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.prize-list-logo-bottom img {
  width: auto;
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

@media (min-width: 1024px) {
  body.landing-page .overlap-container,
  body.landing-page .reward-stats-section,
  body.landing-page .prize-list-section,
  body.landing-page .howworks-section,
  body.landing-page .combine-section,
  body.landing-page .benefits-section,
  body.landing-page .blog-section,
  body.landing-page .footer {
    max-width: none;
    width: 100%;
  }

  body.landing-page .content-slide-wrapper {
    display: block;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    overflow: hidden;
    position: relative;
    right: auto;
    width: 100%;
  }

  body.landing-page .overlap-container {
    left: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    right: auto;
  }

  body.landing-page .reward-stats-section,
  body.landing-page .prize-list-section,
  body.landing-page .howworks-section,
  body.landing-page .combine-section,
  body.landing-page .benefits-section,
  body.landing-page .blog-section {
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    overflow-y: hidden !important;
  }

  body.landing-page .reward-stats-inner {
    max-width: 100%;
    padding: 110px 16px 24px;
  }

  body.landing-page .reward-stats-label {
    gap: 14px;
    margin-bottom: 22px;
  }

  body.landing-page .reward-stats-label span {
    flex-basis: 50px;
    width: 50px;
  }

  body.landing-page .reward-stats-label strong {
    font-size: 13px;
    padding: 8px 22px;
  }

  body.landing-page .reward-stats-intro {
    font-size: 11.5px;
    margin-bottom: 6px;
  }

  body.landing-page .reward-stats-heading {
    font-size: 13px;
    margin-bottom: 6px;
    max-width: 430px;
  }

  body.landing-page .reward-stats-outro {
    font-size: 11.5px;
    margin-top: 8px;
    margin-bottom: 10px;
  }

  body.landing-page .reward-stats-number {
    font-size: 34px;
  }

  body.landing-page .reward-stats-panel {
    border-radius: 12px;
    padding: 6px 18px;
    width: 92%;
  }

  body.landing-page .reward-stat-row {
    gap: 12px;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    padding: 18px 0;
  }

  body.landing-page .reward-stat-row span {
    font-size: 14px;
  }

  body.landing-page .reward-stat-row strong {
    font-size: 28px;
  }

  body.landing-page .prize-list-section {
    padding: 24px 0;
  }

  body.landing-page .prize-list-section .container {
    max-width: 100%;
    padding: 0 16px;
  }

  body.landing-page .prize-list-title {
    font-size: 40px;
    line-height: 1.15;
  }

  body.landing-page .prize-list-subtitle {
    font-size: 17px;
  }

  body.landing-page .prize-layout {
    max-width: 500px;
  }

  body.landing-page .prize-top-row,
  body.landing-page .prize-grid-bottom {
    gap: 6px;
  }

  body.landing-page .prize-card.vertical {
    padding: 12px 4px 10px;
  }

  body.landing-page .prize-card.vertical.rank-1 {
    padding: 20px 4px 14px;
  }

  body.landing-page .prize-card.vertical h4 {
    font-size: 0.7rem;
  }

  body.landing-page .prize-card.vertical.rank-1 h4 {
    font-size: 0.8rem;
  }

  body.landing-page .prize-card.vertical .prize-img-wrap {
    height: 50px;
    margin: 0 0 8px;
    width: 50px;
  }

  body.landing-page .prize-card.vertical.rank-1 .prize-img-wrap {
    height: 65px;
    width: 65px;
  }

  body.landing-page .prize-card.horizontal {
    gap: 8px;
    padding: 8px 6px;
  }

  body.landing-page .prize-card.horizontal .prize-img-wrap {
    height: 35px;
    width: 35px;
  }

  body.landing-page .prize-info h4 {
    font-size: 0.75rem;
    margin: 0 0 2px;
  }

  body.landing-page .prize-badge-inline {
    font-size: 0.55rem;
  }

  body.landing-page #scrollCanvas,
  body.landing-page .scroll-overlay {
    left: var(--frame-left, calc(100vw - var(--desktop-shell-gutter) - var(--desktop-frame-width))) !important;
    right: auto !important;
    margin: 0 !important;
    width: var(--frame-width, var(--desktop-frame-width)) !important;
  }

  body.landing-page .scroll-down-hint {
    left: calc(var(--frame-left, calc(100vw - var(--desktop-shell-gutter) - var(--desktop-frame-width))) + var(--frame-width, var(--desktop-frame-width)) / 2) !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

  body.landing-page .floating-apps {
    right: calc(100vw - var(--frame-left, calc(100vw - var(--desktop-shell-gutter) - var(--desktop-frame-width))) - var(--frame-width, var(--desktop-frame-width)) + 24px) !important;
  }

  body.landing-page .download-popup {
    left: var(--frame-left, calc(100vw - var(--desktop-shell-gutter) - var(--desktop-frame-width))) !important;
    right: auto !important;
    width: var(--frame-width, var(--desktop-frame-width)) !important;
  }

  body.landing-page .scroll-text.logo-text img {
    width: min(280px, 70%) !important;
  }

  body.landing-page .scroll-text.hero-line {
    font-size: 2.1rem !important;
  }

  body.landing-page .scroll-text.hero-sub {
    font-size: 0.95rem !important;
    max-width: min(500px, calc(var(--frame-width, var(--desktop-frame-width)) - 48px)) !important;
  }

  body.landing-page .howworks-carousel {
    padding: 16px 24px 64px 24px !important;
    cursor: grab !important;
  }

  body.landing-page .howworks-card {
    width: calc(var(--frame-width, var(--desktop-frame-width)) * 0.82) !important;
    max-width: 100% !important;
    padding: 20px 16px !important;
  }

  body.landing-page .howworks-card-img {
    width: 70px !important;
    height: 70px !important;
  }

  body.landing-page .howworks-card h3 {
    font-size: 1rem !important;
  }

  body.landing-page .howworks-card p {
    font-size: 13px !important;
  }

  body.landing-page .combine-benefits-header h2 {
    font-size: 2.1rem !important;
  }

  body.landing-page .benefits-cta {
    font-size: 0.95rem !important;
  }

  body.landing-page .blog-title {
    font-size: 2.1rem !important;
  }

  body.landing-page .combine-header h2 {
    font-size: 2.1rem !important;
  }

  body.landing-page .howworks-logo-inline {
    height: 80px !important;
  }

  body.landing-page .blog-grid {
    cursor: grab !important;
  }
}
