/* ── Legal / info pages ─────────────────────────────── */
.privacy-section,
.terms-section,
.about-section {
  background-color: #ffffff;
  padding: 36px 20px 70px;
  min-height: 50vh;
}

.privacy-container,
.terms-container,
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-container h1,
.terms-container h1,
.about-container h1 {
  font-size: 30px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 16px;
}

.privacy-container h2,
.terms-container h2,
.about-container h2 {
  font-size: 19px;
  font-weight: 700;
  color: #111111;
  margin-top: 26px;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 4px solid #62C21B;
}

.privacy-container p,
.terms-container p,
.about-container p {
  font-size: 15px;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 12px;
}

.privacy-container ul,
.terms-container ul,
.about-container ul {
  margin: 0 0 16px 20px;
}

.privacy-container ul li,
.terms-container ul li,
.about-container ul li {
  font-size: 15px;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 6px;
}

.privacy-container a,
.terms-container a,
.about-container a {
  color: #4a9614;
  text-decoration: none;
  font-weight: 600;
}

.privacy-container a:hover,
.terms-container a:hover,
.about-container a:hover {
  text-decoration: underline;
}

/* ── Register / Deposit / Withdraw / Download pages ──── */
.register-section,
.download-page-section {
  background-color: #ffffff;
  padding: 36px 20px 70px;
  min-height: 50vh;
}

.register-container,
.download-container {
  max-width: 1200px;
  margin: 0 auto;
}

.register-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 26px;
}

.register-intro a {
  color: #4a9614;
  text-decoration: none;
  font-weight: 600;
}

.cta-wrapper {
  text-align: center;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.secondary-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 380px;
  background: #ffffff;
  color: #4a9614;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 8px;
  border: 2px solid #62c21b;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.secondary-cta-btn:hover {
  background: #f3faee;
}

.cta-wrapper .register-cta-btn,
.cta-wrapper .download-cta-btn {
  width: 100%;
  max-width: 380px;
}

.logo-box {
  text-align: center;
  margin: 26px 0;
}

.logo-box img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.screenshot-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
}

.screenshot-box img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.how-to-title {
  font-size: 21px;
  font-weight: 800;
  color: #111111;
  margin: 26px 0 16px;
  padding-left: 12px;
  border-left: 4px solid #62C21B;
}

.process-list {
  background-color: #f6f8f5;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.process-list p {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 10px;
}

.process-list p:last-child {
  margin-bottom: 0;
}

.process-list a {
  color: #4a9614;
}

.app-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 20px 0 30px;
}

.app-details-table td {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.app-details-table td:first-child {
  font-weight: 600;
  color: #555555;
}

.app-details-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #111111;
}

@media (max-width: 600px) {
  .privacy-container h1,
  .terms-container h1,
  .about-container h1 {
    font-size: 24px;
  }
}

/* ── Tabbed step-by-step guide (per payment method) ──── */
.guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #e4e8e1;
  margin-bottom: 28px;
}

.guide-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #777777;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.guide-tab-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.guide-tab-dot.ep {
  background: #00b900;
}

.guide-tab-dot.jc {
  background: #e53935;
}

.guide-tab-dot.bt {
  background: #1565c0;
}

.guide-tab.active {
  color: #4a9614;
  border-bottom-color: #62c21b;
}

.guide-tab:hover {
  color: #4a9614;
}

.guide-panel {
  display: none;
}

.guide-panel.active {
  display: block;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.guide-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.guide-step:last-child {
  border-bottom: none;
}

.gs-num {
  width: 36px;
  height: 36px;
  background: #62c21b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.gs-body {
  flex: 1;
  min-width: 0;
}

.gs-body h3,
.gs-body .gs-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}

.gs-body p {
  font-size: 14.5px;
  color: #333333;
  line-height: 1.7;
}

.gs-body p + p {
  margin-top: 6px;
}

.gs-tip {
  background: #f3faee;
  border-left: 3px solid #62c21b;
  border-radius: 0 8px 8px 0;
  padding: 9px 14px;
  font-size: 13.5px;
  color: #3a5a22;
  margin-top: 10px;
}

.gs-tip strong {
  color: #2f4a1b;
}

@media (max-width: 600px) {
  .guide-tab {
    padding: 10px 14px;
    font-size: 13px;
  }
}
