/* =========================================================
   Royal X Casino (royalxccasinos.com.pk)  - style.css
   Layout ported from the y888 portfolio template (single
   white "entry-content" card, gradient-text headings, spec
   strip, TOC card, feature/games grids, tabbed guides, FAQ
   accordion)  - restyled with this site's own gold/wine
   palette in place of y888's magenta/violet.
   ========================================================= */

:root {
  --ink: #0b0b10;
  --ink-soft: #15151d;
  --ink-panel: #1c1c26;
  --ivory: #f6f1e4;
  --ivory-dim: #ece4cf;
  --gold: #c9a227;
  --gold-light: #e8c84a;
  --gold-pale: #f4e5a1;
  --gold-dark: #8a6a14;
  --wine: #7a1330;
  --wine-light: #a2264a;
  --text-on-dark: #efe9d8;
  --text-on-dark-dim: #b7ae98;
  --text-body: #35322a;
  --text-muted: #6b6656;
  --border-dark: #2c2c38;
  --border-light: #e3dcc7;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --max-w: 1240px;
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino,
    serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* tints derived from --gold / --wine, used the way y888 uses its
     magenta/violet tints for card backgrounds, borders and gradients */
  --gold-tint: #faf6e9;
  --gold-tint-strong: #f3e6b8;
  --gold-border: rgba(201, 162, 39, 0.35);
  --wine-tint: rgba(122, 19, 48, 0.08);
  --wine-border: rgba(122, 19, 48, 0.3);
  --page-bg: #f7f5ef;
  --card-bg-alt: #faf8f2;
  --muted-gold: #cbb98a;
}

/* ── 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: var(--font-body);
  background-color: var(--page-bg);
  color: var(--text-body);
}

img {
  max-width: 100%;
}

/* ── Main content wrapper (white card container) ─────── */
.entry-content {
  --card-pad: 30px;
  max-width: 1200px;
  margin: 30px auto;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: var(--card-pad);
  box-shadow: 0 4px 16px rgba(30, 10, 10, 0.06);
}

.hero-section,
.toc-section,
.intro-section,
.features-section,
.faqs-section,
.pros-cons-section,
.register-section,
.download-page-section,
.privacy-section,
.terms-section,
.about-section {
  background-color: transparent !important;
  padding: 0 !important;
  margin-bottom: 26px;
}

.hero-container,
.toc-container,
.intro-container,
.features-container,
.faqs-container,
.pros-cons-container,
.register-container,
.download-container,
.privacy-container,
.terms-container,
.about-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .entry-content {
    --card-pad: 16px;
    margin: 14px;
    padding: var(--card-pad);
    border-radius: 8px;
  }
}

/* ── Scrollbar ─────────────────────────────────────── */
html {
  scrollbar-color: var(--gold) var(--ink);
  scrollbar-width: thin;
}

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

::-webkit-scrollbar-track {
  background-color: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
  border: 2px solid var(--ink);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

a {
  color: var(--gold-dark);
}

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  display: flex;
  flex-direction: column;
  background-color: var(--ink);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  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: var(--gold-light);
}

.nav-cta {
  background-color: var(--gold);
  color: #1a1400 !important;
  padding: 8px 18px;
  border-radius: 6px;
}

.nav-cta:hover {
  background-color: var(--gold-light);
  color: #1a1400 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--ink-soft);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.mobile-menu.open {
  display: flex;
  animation: mobileMenuDrop 0.22s ease;
}

@keyframes mobileMenuDrop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 1180px) {
  .navbar-right {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 14px;
  }
  .logo {
    font-size: 17px;
    gap: 6px;
  }
  .logo img {
    height: 26px;
    width: 26px;
  }
}

/* ── Breadcrumb ────────────────────────────────────── */
.breadcrumb-nav {
  background-color: var(--gold-tint);
  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: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.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: 24px;
  margin: 24px 0;
}

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

.screenshot-box figure {
  margin: 0;
  max-width: 260px;
  text-align: center;
}

.screenshot-caption {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}

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

.hero-title {
  background: linear-gradient(115deg, var(--gold-dark) 15%, var(--gold) 45%, var(--wine) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-dark);
}

.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, var(--gold-tint) 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(201, 162, 39, 0.35);
  }
  .hero-buttons .register-btn {
    background-color: #ffffff;
    color: var(--gold-dark);
    border: 2px solid var(--gold);
  }
  .hero-buttons .register-btn:hover {
    background-color: var(--gold-tint);
    color: var(--gold-dark);
  }
}

@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: var(--gold);
  color: #1a1400;
  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: var(--gold-dark);
  color: #ffffff;
}

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

/* ── Spec strip (banded table, hero) ──────────────────── */
.spec-strip-wrap {
  margin: 30px 0 0;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border-light);
}

.spec-strip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.spec-strip-table td {
  padding: 15px var(--card-pad, 30px);
  vertical-align: middle;
}

.spec-strip-table td:first-child {
  font-weight: 700;
}

.spec-row-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-strip-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.spec-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.18);
}

.spec-icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.spec-strip-table tr:nth-child(odd) {
  background-color: var(--gold-dark);
  background-image: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.spec-strip-table tr:nth-child(odd) td {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-strip-table tr:nth-child(even) {
  background-color: var(--card-bg-alt);
}

.spec-strip-table tr:nth-child(even) td {
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}

.spec-strip-table tr:nth-child(even) .spec-icon {
  background-color: var(--gold-tint-strong);
}

.spec-strip-table tr:nth-child(even) .spec-icon svg {
  fill: var(--gold-dark);
}

.spec-strip-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 560px) {
  .spec-strip-table {
    font-size: 13px;
  }
  .spec-strip-table td {
    padding: 12px var(--card-pad, 16px);
  }
  .spec-icon {
    width: 24px;
    height: 24px;
  }
  .spec-icon svg {
    width: 13px;
    height: 13px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--gold-tint-strong);
  color: var(--gold-dark);
  border: 1px solid var(--gold-border);
  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 var(--border-light);
  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: var(--gold-tint-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold-dark);
}

.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 var(--border-light);
  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 {
  display: inline-block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.2;
  padding-bottom: 14px;
  position: relative;
  background: linear-gradient(110deg, var(--gold-dark) 10%, var(--gold) 50%, var(--wine) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-dark);
}

.intro-heading::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 0;
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--wine));
}

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

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

.tip-heading {
  font-size: 17px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 18px;
  padding-left: 11px;
  border-left: 3px solid var(--gold);
}

/* ── 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: var(--gold-tint);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

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

.toc-icon {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.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: var(--gold-dark);
}

/* ── 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 var(--border-light);
  border-radius: 10px;
  padding: 22px;
  background-color: var(--gold-tint);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--gold);
  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 var(--border-light);
  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: var(--gold-tint);
  border: 1px solid var(--gold-border);
}

.cons-card {
  background-color: var(--wine-tint);
  border: 1px solid var(--wine-border);
}

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

.pros-title {
  color: var(--gold-dark);
}

.cons-title {
  color: var(--wine);
}

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

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

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  background-color: var(--card-bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 16px rgba(30, 10, 10, 0.05);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  font-size: 38px;
  font-weight: 300;
  color: var(--muted-gold);
  line-height: 1;
}

.step-title {
  font-size: 19px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
}

.step-content {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .step-card {
    gap: 16px;
    padding: 22px 20px;
    border-radius: 16px;
  }
  .step-number {
    width: 34px;
    font-size: 30px;
  }
}

/* ── 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: var(--gold-tint);
  border: 1px solid var(--border-light);
  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: var(--gold);
  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: var(--ink);
  color: #ffffff;
}

.footer-top {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--wine), var(--gold), var(--gold-dark)) 1;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 44px 20px 34px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-brand-name {
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.footer-logo {
  margin-bottom: 0;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #b7ae98;
  margin-bottom: 18px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--wine));
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
}

.footer-cta:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--wine));
}

.footer-col-title {
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #b3adba;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: #8c8794;
  margin: 0;
}

.footer-top-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  text-decoration: none;
  white-space: nowrap;
}

.footer-top-link:hover {
  color: var(--gold-pale);
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-inner {
    justify-content: flex-start;
  }
}

/* ── 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 var(--gold-border);
  background-color: var(--gold-tint);
  border-radius: 10px;
  padding: 26px;
  text-align: center;
}

.summary-icon {
  width: 26px;
  height: 26px;
  fill: var(--gold);
  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 var(--border-light);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  background-color: var(--gold-tint);
  transition: border-color 0.2s ease;
}

.blog-card:hover {
  border-color: var(--gold);
}

.blog-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  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 {
  display: inline-block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.25;
  margin-top: 28px;
  padding-bottom: 10px;
  margin-bottom: 16px;
  position: relative;
  background: linear-gradient(110deg, var(--gold-dark) 10%, var(--gold) 50%, var(--wine) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold-dark);
}

.article-body h2::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 0;
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--wine));
}

.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: var(--gold-dark);
  font-weight: 600;
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.03);
  border: 1.5px dashed rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  color: #9a9a9a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  padding: 16px;
}

.hero-logo-box .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, #1c1c1c, #0d0d0d);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: 32px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-logo.logo-mark {
  height: 40px;
  width: 40px;
  border-radius: 9px;
  font-size: 15px;
  margin-bottom: 0;
}

.screenshot-box .img-placeholder {
  max-width: 260px;
  width: 100%;
  height: 320px;
}
