/* ── Legal / info pages ─────────────────────────────── */
.privacy-section,
.terms-section,
.about-section {
  background-color: #000000;
  padding: 40px 20px 80px 20px;
  min-height: 60vh;
}

.privacy-container,
.terms-container,
.about-container {
  max-width: 1300px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

.privacy-container h1,
.terms-container h1,
.about-container h1 {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.privacy-container h2,
.terms-container h2,
.about-container h2 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid #ffc600;
}

.privacy-container p,
.terms-container p,
.about-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 15px;
}

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

.privacy-container ul li,
.terms-container ul li,
.about-container ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 8px;
}

.privacy-container a,
.terms-container a,
.about-container a {
  color: #ffc600;
  text-decoration: none;
}

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

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

  .privacy-container h2,
  .terms-container h2,
  .about-container h2 {
    font-size: 18px;
  }
}

/* ── Register / Deposit / Withdraw / Login pages ─────── */
.register-section {
  background-color: #000000;
  padding: 20px 20px 80px 20px;
  min-height: 60vh;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.register-container {
  max-width: 1300px;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
}

.register-intro {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: left;
}

.register-intro a {
  color: #ffc600;
  text-decoration: none;
}

.register-intro a:hover {
  text-decoration: underline;
}

.cta-wrapper {
  text-align: center;
  margin: 30px 0 20px 0;
}

.register-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(to right, #ffc500, #1e204c);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  padding: 18px 60px;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(50, 139, 239, 0.3);
  font-family: "Poppins", sans-serif;
}

.register-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 139, 239, 0.4);
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.logo-box img {
  width: auto;
  max-width: 100%;
  max-height: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.how-to-title {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #ffc500;
  margin: 30px 0;
}

.process-list {
  background-color: #000000;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 40px;
}

.process-list p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 15px;
  padding-left: 5px;
}

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

.process-list a {
  color: #ffc600;
  text-decoration: none;
}

.warning-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffc500;
  border-left: 5px solid #ffc107;
  border-radius: 8px;
  padding: 12px 20px;
  margin: 25px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
}

.warning-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}

.summary-box {
  border: 1px solid #ffc500;
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  background: #f8fbff;
  margin-top: 30px;
}

.summary-icon {
  width: 32px;
  height: 32px;
  fill: #ffc500;
  margin-bottom: 15px;
}

.summary-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 10px;
}

.summary-box p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #333333;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .register-container {
    padding: 0 10px;
  }
  .register-cta-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }
  .how-to-title {
    font-size: 20px;
  }
  .summary-box {
    padding: 20px 15px;
  }
  .warning-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ── Download page ────────────────────────────────────── */
.download-page-section {
  background-color: #000000;
  padding: 60px 20px;
  min-height: 60vh;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}
.download-container {
  max-width: 1300px;
  margin: 0 auto;
}
.download-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.app-details-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.app-details-table tr:nth-child(odd) {
  background-color: #111111;
}
.app-details-table tr:nth-child(even) {
  background-color: #000000;
}
.app-details-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: #ffffff;
  border: none;
}
.app-details-table td:first-child {
  width: 40%;
  font-weight: 700;
  text-align: left;
}
.app-details-table td:last-child {
  text-align: left;
  font-weight: 400;
}
.download-cta-wrapper {
  text-align: center;
  margin-bottom: 50px;
}
.download-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(to right, #ffc500, #1e204c);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 50px;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(50, 139, 239, 0.3);
}
.download-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50, 139, 239, 0.4);
}
.download-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.steps-box {
  background: #111111;
  padding: 30px;
  border-radius: 16px;
  margin: 50px 0;
}
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.step-number {
  width: 40px;
  height: 40px;
  background: #ffc500;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.warning-note {
  background: #111111;
  border-left: 5px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  margin: 40px 0;
}
.dl-summary-box {
  border: 2px solid #ffc500;
  border-radius: 16px;
  padding: 35px;
  text-align: center;
  background: #111111;
  margin-top: 40px;
}
.dl-summary-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.dl-summary-box p {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .app-details-table td {
    font-size: 14px;
    padding: 12px;
  }
  .download-cta-btn {
    width: 100%;
    padding: 15px 20px;
  }
  .dl-summary-box {
    padding: 20px 15px;
  }
}

/* ── Blog ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.blog-card {
  display: block;
  border: 1px solid #ffc500;
  border-radius: 15px;
  padding: 24px;
  background-color: #000000;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  background-color: #111111;
}

.blog-card-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  background-color: #ffc500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
}
