/* ── Fonts (Poppins) ───────────────────────────────── */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2) format('woff2');
}

/* ── Reset & Base ──────────────────────────────────── */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #2a2a2a;
}

/* ── Scrollbar ─────────────────────────────────────── */
html {
  scrollbar-color: #62C21B #111111;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background-color: #111111;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4a9614, #62C21B);
  border-radius: 10px;
  border: 2px solid #111111;
}

::-webkit-scrollbar-thumb:hover {
  background: #8de84a;
}

a {
  color: #4a9614;
}

/* ── Navbar ────────────────────────────────────────── */
.scroll-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(98, 194, 27, 0.15);
  z-index: 100;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4a9614, #62C21B, #8de84a);
  box-shadow: 0 0 10px rgba(98, 194, 27, 0.7);
  transition: width 0.08s linear;
}

.navbar {
  display: flex;
  align-items: center;
  height: 64px;
  background-color: #111111;
  border-bottom: 2px solid #62C21B;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo img {
  height: 32px;
  width: 32px;
  border-radius: 6px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #62C21B;
}

.nav-cta {
  background-color: #62C21B;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 6px;
}

.nav-cta:hover {
  background-color: #4a9614;
  color: #ffffff !important;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background-color: #ffffff;
  transition: all 0.25s ease-in-out;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .navbar-right {
    position: fixed;
    left: -100%;
    top: 64px;
    flex-direction: column;
    gap: 0;
    background-color: #111111;
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    border-bottom: 2px solid #62C21B;
    padding: 10px 0;
  }
  .navbar-right.active {
    left: 0;
  }
  .nav-link {
    display: block;
    margin: 14px 0;
  }
  .nav-cta {
    display: inline-block;
    margin: 6px auto 14px;
  }
}

/* ── Breadcrumb ────────────────────────────────────── */
.breadcrumb-nav {
  background-color: #f6f8f5;
  padding: 12px 20px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

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

.breadcrumb-item.active {
  color: #666666;
}

.breadcrumb-separator {
  color: #999999;
}

/* ── Hero ──────────────────────────────────────────── */
.hero-section {
  background-color: #ffffff;
  padding: 50px 20px 40px;
}

.hero-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-left {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hero-right {
  flex-shrink: 0;
}

.hero-logo-box {
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-box img {
  width: 100%;
  height: 100%;
}

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

.hero-title, .page-title {
  font-size: 36px;
  font-weight: 800;
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.hero-title {
  color: #4a9614;
}

.hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444444;
  max-width: 640px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .hero-section {
    background: linear-gradient(180deg, #f3faee 0%, #ffffff 55%);
  }
  .hero-flex {
    flex-direction: column;
    gap: 30px;
  }
  .hero-left {
    text-align: left;
  }
  .hero-logo-box {
    width: 200px;
    height: 200px;
  }
  .hero-logo-box img {
    filter: drop-shadow(0 10px 20px rgba(17, 17, 17, 0.18));
  }
  .hero-buttons {
    width: 100%;
  }
  .hero-buttons .download-btn {
    box-shadow: 0 8px 18px rgba(98, 194, 27, 0.35);
  }
  .hero-buttons .register-btn {
    background-color: #ffffff;
    color: #4a9614;
    border: 2px solid #62C21B;
  }
  .hero-buttons .register-btn:hover {
    background-color: #f3faee;
    color: #4a9614;
  }
}

@media (max-width: 768px) {
  .hero-title, .page-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a {
    width: 100%;
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-buttons {
    justify-content: center;
  }
}

.download-btn, .register-cta-btn, .download-cta-btn, .register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #62C21B;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  border: none;
}

.download-btn:hover, .register-cta-btn:hover, .download-cta-btn:hover, .register-btn:hover {
  background-color: #4a9614;
}

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

/* ── Stat Cards (App Info) ─────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

@media (max-width: 1000px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stats-disclaimer {
  font-size: 13px;
  color: #888888;
  margin-top: 14px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #eaf6e0;
  color: #2e7d0f;
  border: 1px solid #cbe8b9;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid #eef2ea;
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.stat-card:hover, .stat-card:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.09);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background-color: #eaf6e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: #4a9614;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 14px;
  color: #555555;
}

/* ── App Info Table (legacy, used on subpages) ─────── */
.app-info-container {
  width: 100%;
  max-width: 560px;
  margin-top: 6px;
  background-color: #ffffff;
  border: 1px solid #e4e8e1;
  border-radius: 10px;
  padding: 8px 20px;
}

.app-info-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  padding: 14px 0 8px;
  border-bottom: 1px solid #eeeeee;
}

.app-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.app-info-table tr:not(:last-child) td {
  border-bottom: 1px solid #f0f0f0;
}

.app-info-table td {
  padding: 10px 0;
}

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

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

/* ── Generic Section / Intro ──────────────────────── */
.intro-section {
  background-color: #ffffff;
  padding: 36px 20px;
}

.intro-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro-heading {
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  padding-left: 14px;
  border-left: 4px solid #62C21B;
}

.intro-text {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
}

.intro-text a {
  font-weight: 600;
}

.tip-heading {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 18px;
}

/* ── Table of Contents ────────────────────────────── */
.toc-section {
  padding: 0 20px 10px;
  background-color: #ffffff;
}

.toc-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.toc-header {
  background-color: #f6f8f5;
  border: 1px solid #e4e8e1;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toc-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
}

.toc-icon {
  font-size: 20px;
  font-weight: 700;
  color: #62C21B;
}

.toc-content {
  padding: 16px 10px 6px 24px;
  display: none;
}

.toc-content.open {
  display: block;
}

.toc-list, .toc-sublist {
  list-style: disc;
  margin: 0;
}

.toc-sublist {
  padding-left: 18px;
  margin-top: 6px;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a, .toc-sublist a {
  text-decoration: none;
  color: #3a3a3a;
  font-size: 15px;
}

.toc-list a:hover, .toc-sublist a:hover {
  color: #62C21B;
}

/* ── Feature Cards ─────────────────────────────────── */
.features-section {
  padding: 10px 20px 30px;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

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

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  border: 1px solid #e4e8e1;
  border-radius: 10px;
  padding: 22px;
  background-color: #fafcf9;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: #62C21B;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 15px;
  color: #444444;
  line-height: 1.6;
}

/* ── Game List ─────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.game-card {
  border: 1px solid #e4e8e1;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.game-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.game-card-text {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

/* ── Pros & Cons ───────────────────────────────────── */
.pros-cons-section {
  padding: 10px 20px 40px;
  background-color: #ffffff;
}

.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .pros-cons-container {
    grid-template-columns: 1fr;
  }
}

.pc-card {
  border-radius: 10px;
  padding: 22px;
}

.pros-card {
  background-color: #f3faee;
  border: 1px solid #cbe8b9;
}

.cons-card {
  background-color: #fdf2f2;
  border: 1px solid #f3c9c9;
}

.pc-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pros-title {
  color: #2e7d0f;
}

.cons-title {
  color: #c0392b;
}

.pc-text {
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}

/* ── Steps ─────────────────────────────────────────── */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.step-card {
  display: flex;
  gap: 16px;
  border: 1px solid #e4e8e1;
  border-radius: 10px;
  padding: 18px 20px;
}

.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #62C21B;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.step-content {
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
}

/* ── FAQ ───────────────────────────────────────────── */
.faqs-section {
  padding: 10px 20px 50px;
  background-color: #ffffff;
}

.faqs-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background-color: #fafcf9;
  border: 1px solid #e4e8e1;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  fill: #62C21B;
  transition: transform 0.25s ease;
}

.faq-question.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 14px 18px;
  font-size: 15px;
  color: #444444;
  line-height: 1.7;
  border: 1px solid #eeeeee;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background-color: #111111;
  color: #ffffff;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  max-width: 480px;
}

.footer-logo {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #bbbbbb;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #dddddd;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #62C21B;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  text-align: center;
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: #999999;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}

/* ── Warning / Summary boxes (used on register/deposit/withdraw) ── */
.warning-bar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #fff8e1;
  border-left: 4px solid #f0ad4e;
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 14px;
  color: #5a4a1f;
  line-height: 1.6;
}

.warning-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #f0ad4e;
  stroke-width: 2;
  flex-shrink: 0;
}

.summary-box {
  border: 1px solid #cbe8b9;
  background-color: #f3faee;
  border-radius: 10px;
  padding: 26px;
  text-align: center;
}

.summary-icon {
  width: 26px;
  height: 26px;
  fill: #62C21B;
  margin-bottom: 10px;
}

.summary-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}

.summary-box p {
  font-size: 14px;
  color: #444444;
  line-height: 1.7;
}

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

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: block;
  border: 1px solid #e4e8e1;
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  background-color: #fafcf9;
  transition: border-color 0.2s ease;
}

.blog-card:hover {
  border-color: #62C21B;
}

.blog-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #4a9614;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.article-meta {
  font-size: 14px;
  color: #777777;
  margin-bottom: 24px;
}

.article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 16px;
}

.article-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: #111111;
  margin-top: 28px;
  margin-bottom: 12px;
}

.article-body ul {
  margin: 0 0 16px 20px;
}

.article-body ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 6px;
}

.article-body a {
  color: #4a9614;
  font-weight: 600;
}

