/* ═══════════════════════════════════════════════
   GOLDEN DYNASTY POKER — STYLESHEET
   Dark luxury theme with gold accents
═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:          #060c18;
  --bg-2:        #0a1220;
  --bg-card:     #0d1628;
  --bg-card-h:   #111e38;
  --gold:        #c9a227;
  --gold-l:      #e8c04a;
  --gold-d:      #9a7b18;
  --gold-glow:   rgba(201, 162, 39, 0.18);
  --red:         #c0392b;
  --red-l:       #e74c3c;
  --text:        #e8dcc8;
  --text-2:      #8a9bb5;
  --text-3:      #4a5a72;
  --border:      rgba(201, 162, 39, 0.14);
  --border-h:    rgba(201, 162, 39, 0.35);
  --white:       #ffffff;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.45);
  --shadow-gold: 0 4px 32px rgba(201,162,39,0.22);
  --font-head:   'Cinzel', serif;
  --font-body:   'Inter', sans-serif;
  --nav-h:       72px;
  --transition:  0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea {
  font: inherit;
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section shared ── */
section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}
.gold-text { color: var(--gold); }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #0a0c10;
  box-shadow: 0 2px 16px rgba(201,162,39,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-l), var(--gold));
  box-shadow: 0 4px 24px rgba(201,162,39,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--border-h);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}
.btn-lg  { padding: 14px 36px; font-size: 1rem; border-radius: 10px; }
.btn-xl  { padding: 18px 52px; font-size: 1.1rem; border-radius: 12px; font-weight: 700; }
.btn-sm  { padding: 9px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(6, 12, 24, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(6, 12, 24, 0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-suit {
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}
.logo-text em {
  font-style: normal;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li.has-dropdown:hover > a {
  color: var(--gold);
  background: var(--gold-glow);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 160px;
  padding: 8px 0;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover {
  color: var(--gold);
  background: var(--gold-glow);
}

/* Nav end */
.nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.lang-toggle { display: flex; gap: 4px; }
.lang-btn {
  padding: 5px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  border-radius: 5px;
  transition: all var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  color: var(--gold);
  background: var(--gold-glow);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #0d1f42 0%, #060c18 70%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201,162,39,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,0.05) 0%, transparent 45%);
  pointer-events: none;
}

/* Floating suits */
.hero-suits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.suit {
  position: absolute;
  font-size: 5rem;
  color: rgba(201,162,39,0.06);
  animation: floatSuit 20s ease-in-out infinite;
  user-select: none;
}
.suit.red { color: rgba(192,57,43,0.05); }
.s1 { top: 10%; left: 5%;  animation-delay: 0s;    font-size: 7rem; }
.s2 { top: 60%; left: 8%;  animation-delay: -4s;   font-size: 4rem; }
.s3 { top: 20%; right: 6%; animation-delay: -8s;   font-size: 6rem; }
.s4 { top: 70%; right: 5%; animation-delay: -12s;  font-size: 5rem; }
.s5 { top: 85%; left: 45%; animation-delay: -6s;   font-size: 3rem; }
.s6 { top: 8%;  left: 55%; animation-delay: -10s;  font-size: 4rem; }

@keyframes floatSuit {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  33%       { transform: translateY(-30px) rotate(5deg); opacity: 1; }
  66%       { transform: translateY(15px) rotate(-3deg); opacity: 0.4; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  color: var(--gold-l);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(13,22,40,0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 32px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; }
.stat-n {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l {
  font-size: 0.78rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────── */
.features {
  background: var(--bg-2);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-h), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   POKER ROOMS
───────────────────────────────────────────── */
.rooms-section { background: var(--bg); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.room-card:hover {
  border-color: var(--border-h);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}
.room-featured {
  border-color: var(--gold-d);
  background: linear-gradient(145deg, #0d1a2e 0%, #0a1220 100%);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.room-featured:hover { transform: translateY(-12px); }
.room-badge-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #0a0c10;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.room-abbr {
  width: 68px;
  height: 68px;
  background: var(--gold-glow);
  border: 1.5px solid var(--border-h);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 20px;
}
.room-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.room-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 20px;
  line-height: 1.6;
}
.room-list {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.room-list li {
  font-size: 0.86rem;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.room-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   DEPOSIT SECTION
───────────────────────────────────────────── */
.deposit-section {
  background: var(--bg-2);
  position: relative;
}
.deposit-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-h), transparent);
}

/* Provider chips */
.providers-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.84rem;
  color: var(--text-2);
  font-weight: 500;
  transition: all var(--transition);
}
.provider-chip:hover {
  border-color: var(--border-h);
  color: var(--gold);
  background: var(--bg-card-h);
}
.provider-chip span {
  font-size: 1rem;
  line-height: 1;
}

/* Benefits row */
.deposit-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.dep-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-2);
  font-weight: 500;
}
.dep-benefit svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* CTA */
.deposit-cta-wrap {
  text-align: center;
}
.deposit-footnote {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ─────────────────────────────────────────────
   OUR CLUBS
───────────────────────────────────────────── */
.clubs-section { background: var(--bg); }
.clubs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.clubs-text .section-title {
  text-align: left;
  margin-bottom: 18px;
}
.clubs-text p {
  color: var(--text-2);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.check-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  font-size: 0.9rem;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Visual stack */
.clubs-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.clubs-card-stack {
  position: relative;
  width: 200px;
  height: 200px;
}
.stack-card {
  position: absolute;
  width: 120px;
  height: 160px;
  border-radius: 12px;
  border: 1.5px solid var(--border-h);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--gold);
  box-shadow: var(--shadow);
}
.stack-card.red { color: var(--red); }
.c1 { transform: rotate(-10deg) translate(-20px, 0); z-index: 1; }
.c2 { transform: rotate(0deg)   translate(10px, 10px); z-index: 2; background: var(--bg-card-h); }
.c3 { transform: rotate(8deg)   translate(30px, 0); z-index: 1; }

.clubs-trust-badge {
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  border-radius: 14px;
  padding: 16px 28px;
  text-align: center;
}
.trust-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: var(--text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ─────────────────────────────────────────────
   JOIN FORM
───────────────────────────────────────────── */
.join-section {
  background: var(--bg-2);
  position: relative;
}
.join-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-h), transparent);
}
.join-form {
  max-width: 760px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-d);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.form-group select option {
  background: var(--bg-card);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold);
  margin-top: 2px;
}
.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}
.form-submit { width: 100%; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 8px;
  color: #4ec67a;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* ─────────────────────────────────────────────
   BLOG
───────────────────────────────────────────── */
.blog-section { background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.blog-img {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.blog-img-1 { background: linear-gradient(135deg, #0a1f3a 0%, #1a3a5c 50%, #0d2940 100%); }
.blog-img-2 { background: linear-gradient(135deg, #1a0a2e 0%, #3a1a5c 50%, #2a0d40 100%); }
.blog-img-3 { background: linear-gradient(135deg, #0a1a10 0%, #1a3a20 50%, #0d2915 100%); }
.blog-img::before {
  content: '🃏';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  opacity: 0.4;
}
.blog-platform {
  position: absolute;
  bottom: 12px; left: 16px;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  color: var(--gold-l);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.blog-body { padding: 24px; }
.blog-date {
  font-size: 0.78rem;
  color: var(--text-3);
  display: block;
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-card p {
  font-size: 0.86rem;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.6;
}
.read-more {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.read-more:hover { gap: 8px; }
.read-more span { transition: transform var(--transition); }
.read-more:hover span { transform: translateX(4px); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: #040810;
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--border-h);
  color: var(--gold);
  background: var(--gold-glow);
}
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.86rem;
  color: var(--text-3);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-3);
}
.footer-disclaimer { font-size: 0.75rem !important; }

/* ─────────────────────────────────────────────
   DEPOSIT MODAL
───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-h);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: translateY(16px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
}
.modal-close {
  width: 32px; height: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-2);
  transition: all var(--transition);
}
.modal-close:hover {
  border-color: var(--border-h);
  color: var(--text);
}
.modal-body {
  padding: 28px;
}

/* Amount row */
.amount-row {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.amount-row:focus-within {
  border-color: var(--gold-d);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.amount-row input {
  flex: 1;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  background: transparent;
  border: none;
  outline: none;
}
.amount-row select {
  padding: 12px 14px;
  background: var(--bg);
  border: none;
  border-left: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  min-width: 80px;
}

/* Provider grid */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 4px;
}
.provider-grid::-webkit-scrollbar { width: 4px; }
.provider-grid::-webkit-scrollbar-track { background: var(--bg); }
.provider-grid::-webkit-scrollbar-thumb { background: var(--border-h); border-radius: 4px; }

.provider-option {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.provider-option:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
}
.provider-option.selected {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.provider-option .p-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.provider-option .p-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.provider-option.selected .p-name { color: var(--gold); }
.provider-option .p-note {
  font-size: 0.6rem;
  color: var(--text-3);
  line-height: 1.2;
}

/* Modal states */
.modal-error {
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #e07070;
  margin-bottom: 16px;
  display: none;
}
.modal-loading {
  text-align: center;
  padding: 40px 0;
}
.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-loading p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.modal-loading small { color: var(--text-3); font-size: 0.82rem; }

.modal-error-state {
  text-align: center;
  padding: 32px 0;
}
.error-icon {
  width: 56px; height: 56px;
  background: rgba(192,57,43,0.15);
  border: 1.5px solid rgba(192,57,43,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--red-l);
  margin: 0 auto 18px;
}
.modal-error-state h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.modal-error-state p {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.features-grid .fade-in:nth-child(1) { transition-delay: 0.05s; }
.features-grid .fade-in:nth-child(2) { transition-delay: 0.12s; }
.features-grid .fade-in:nth-child(3) { transition-delay: 0.19s; }
.features-grid .fade-in:nth-child(4) { transition-delay: 0.26s; }
.rooms-grid   .fade-in:nth-child(1) { transition-delay: 0.05s; }
.rooms-grid   .fade-in:nth-child(2) { transition-delay: 0.12s; }
.rooms-grid   .fade-in:nth-child(3) { transition-delay: 0.19s; }
.blog-grid    .fade-in:nth-child(1) { transition-delay: 0.05s; }
.blog-grid    .fade-in:nth-child(2) { transition-delay: 0.12s; }
.blog-grid    .fade-in:nth-child(3) { transition-delay: 0.19s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .clubs-inner { grid-template-columns: 1fr; gap: 40px; }
  .clubs-visual { display: none; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6,12,24,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
  }
  .nav-links.open .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-2);
    border-radius: 8px;
    padding: 4px 0 4px 16px;
    margin-top: 4px;
    display: none;
  }
  .burger { display: flex; }
  .lang-toggle { display: none; }

  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat-divider { display: none; }
  .stat-item { padding: 12px 20px; }

  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-featured { transform: none; }

  .blog-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .provider-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; width: fit-content; }
  .stat-divider { display: block; width: 40px; height: 1px; }

  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .deposit-benefits { gap: 16px; justify-content: flex-start; }
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-h); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-d); }

/* ── Selection ── */
::selection { background: rgba(201,162,39,0.3); color: var(--text); }
