/* ── 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;
  background: linear-gradient(115deg, #C97F0A 15%, #F5A623 45%, #E5123A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #C97F0A;
  margin-bottom: 16px;
}

.privacy-container h2,
.terms-container h2,
.about-container h2 {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: #161412;
  letter-spacing: -0.2px;
  margin-top: 26px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  position: relative;
}

.privacy-container h2::after,
.terms-container h2::after,
.about-container h2::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 0;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #F5A623, #E5123A);
}

.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: #C97F0A;
  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: #C97F0A;
  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: #C97F0A;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 32px;
  border-radius: 8px;
  border: 2px solid #F5A623;
  transition: background-color 0.2s ease, color 0.2s ease;
}

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

.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 {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  color: #161412;
  letter-spacing: -0.2px;
  margin: 26px 0 18px;
  padding-bottom: 11px;
  position: relative;
}

.how-to-title::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 0;
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #F5A623, #E5123A);
}

.process-list {
  background-color: #FBF3E3;
  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: #C97F0A;
}

.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;
}

.comparison-table td {
  text-align: center;
  padding: 10px 8px;
}

.comparison-table td:first-child {
  text-align: left;
}

.comparison-table tr:first-child td {
  font-weight: 700;
  color: #111111;
  border-bottom: 2px solid #e0e0e0;
}

@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 #ece0e1;
  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: #C97F0A;
  border-bottom-color: #F5A623;
}

.guide-tab:hover {
  color: #C97F0A;
}

.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: #F5A623;
  color: #1a1200;
  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: #FFF7E4;
  border-left: 3px solid #F5A623;
  border-radius: 0 8px 8px 0;
  padding: 9px 14px;
  font-size: 13.5px;
  color: #5c4520;
  margin-top: 10px;
}

.gs-tip strong {
  color: #4a3216;
}

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

/* ── Data tables (bonus / games / limits / comparison) ─ */
.data-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0 30px;
  border-radius: 10px;
  border: 1px solid #ece0e1;
}

.data-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.data-table thead th {
  background: linear-gradient(135deg, #C97F0A, #F5A623);
  color: #1a1200;
  text-align: left;
  font-weight: 700;
  padding: 12px 16px;
  white-space: nowrap;
}

.data-table thead th:first-child {
  border-top-left-radius: 9px;
}

.data-table thead th:last-child {
  border-top-right-radius: 9px;
}

.data-table tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0e8e9;
  color: #333333;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:nth-child(even) {
  background-color: #FBF4E9;
}

.data-table tbody td:first-child {
  font-weight: 600;
  color: #111111;
}

.data-table-note {
  font-size: 13px;
  color: #888888;
  margin-top: -16px;
  margin-bottom: 26px;
}

/* ── Gold VIP / highlight callout ──────────────────────── */
.gold-callout {
  background: linear-gradient(135deg, #FFF3D6, #FFE9B8);
  border: 1px solid #F0CD73;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px 0;
}

.gold-callout h3 {
  font-size: 16px;
  font-weight: 800;
  color: #8A5A00;
  margin-bottom: 6px;
}

.gold-callout p {
  font-size: 14.5px;
  color: #5c4a1f;
  line-height: 1.7;
  margin: 0;
}
