/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px; scroll-behavior: smooth;
  overflow-x: hidden; width: 100%;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #06040A;
  min-height: 100vh; width: 100%;
  overflow-x: hidden;
  color: #e8d9b0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ─── CSS Variables ──────────────────────────────────────────────────────────── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #F0D060;
  --gold-bright:  #FFE066;
  --gold-dark:    #8B6914;
  --gold-dim:     #7A5C1E;
  --cream:        #F5EDD0;
  --dark:         #06040A;
  --dark-mid:     #110D1E;
  --dark-card:    #0E0A1A;
  --dark-card2:   #130F22;
  --green:        #00C97A;
  --green-dark:   #00A063;
  --red:          #FF4D6D;
  --blue:         #4D9EFF;
  --orange:       #FF8C42;
  --white:        #FFFFFF;
  --card-bg:      rgba(20,14,36,0.95);
  --shadow:       0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold:  0 8px 32px rgba(201,168,76,0.2);
  --shadow-hover: 0 16px 48px rgba(201,168,76,0.28);
  --radius:       16px;
  --radius-btn:   50px;
  --radius-sm:    8px;
  --transition:   0.25s ease;
  --border-gold:  1px solid rgba(201,168,76,0.25);
  --border-gold-bright: 1px solid rgba(201,168,76,0.5);
}

/* ─── Pages / Router ────────────────────────────────────────────────────────── */
.page { display: none; min-height: 100vh; width: 100%; max-width: 100%; overflow-x: hidden; }
.page.active { display: block; }

/* ─── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeIn    { from { opacity:0 } to { opacity:1 } }
@keyframes slideUp   { from { opacity:0; transform:translateY(24px) } to { opacity:1; transform:translateY(0) } }
@keyframes pulse     { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes float     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes spin      { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes shimmer   { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
@keyframes popIn     { 0%{transform:scale(0.7);opacity:0} 80%{transform:scale(1.05)} 100%{transform:scale(1);opacity:1} }
@keyframes toastIn   { from{opacity:0;transform:translateX(60px)} to{opacity:1;transform:translateX(0)} }
@keyframes toastOut  { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(60px)} }
@keyframes confetti  { 0%{transform:translateY(-10px) rotate(0deg);opacity:1} 100%{transform:translateY(100vh) rotate(720deg);opacity:0} }
@keyframes gold-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.anim-fade    { animation: fadeIn  0.4s ease both; }
.anim-slide   { animation: slideUp 0.5s ease both; }
.anim-pulse   { animation: pulse 2s infinite; }
.anim-float   { animation: float 3s ease-in-out infinite; }

/* ─── Global Loading ────────────────────────────────────────────────────────── */
.global-loading {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(6,4,10,0.85);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.global-loading.hidden { display: none; }
.loading-spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ─── Toast ─────────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 8888;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  padding: 14px 20px; border-radius: var(--radius-sm);
  color: #fff; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease both;
  max-width: 320px; display: flex; align-items: center; gap: 10px;
}
.toast.out     { animation: toastOut 0.3s ease both; }
.toast.success { background: linear-gradient(135deg, #00a063, #00c97a); }
.toast.error   { background: linear-gradient(135deg, #c0192f, #ff4d6d); }
.toast.info    { background: linear-gradient(135deg, #1a4fa0, #4d9eff); }
.toast.warning { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #06040A; }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-btn);
  border: none; cursor: pointer; font-weight: 700; font-size: 15px;
  transition: var(--transition); user-select: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #06040A; font-weight: 800;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-primary:hover:not(:disabled) {
  box-shadow: 0 8px 32px rgba(201,168,76,0.6);
  transform: translateY(-2px);
}
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, #00e68a 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(0,201,122,0.4);
}
.btn-green:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(0,201,122,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover:not(:disabled) { background: var(--gold); color: #06040A; }
.btn-dark { background: rgba(255,255,255,0.06); color: #fff; border: var(--border-gold); }
.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-lg  { padding: 18px 40px; font-size: 17px; }
.btn-full { width: 100%; }

/* ─── Cards ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border: var(--border-gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); }
.card-sm { padding: 18px; }
.card-title { font-size: 18px; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.card-sub   { font-size: 14px; color: rgba(232,217,176,0.55); }

/* ─── Forms ─────────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.4px; text-transform: uppercase; }
.form-input {
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,0.2); background: rgba(255,255,255,0.04);
  font-size: 15px; color: var(--cream); transition: border-color var(--transition);
  outline: none; width: 100%;
}
.form-input::placeholder { color: rgba(232,217,176,0.3); }
.form-input:focus  { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.form-input.error  { border-color: var(--red); }
.form-input.valid  { border-color: var(--green); }
.form-error { font-size: 12px; color: var(--red); font-weight: 600; }
.input-wrap { position: relative; }
.input-wrap .form-input { padding-right: 44px; }
.input-icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); cursor: pointer; font-size: 18px; color: rgba(201,168,76,0.5);
}

/* ─── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,4,10,0.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 12px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.navbar-brand {
  font-size: 22px; font-weight: 800; color: var(--gold);
  display: flex; align-items: center; gap: 8px;
}
.navbar-menu { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.navbar-link {
  padding: 8px 14px; border-radius: 50px; font-size: 14px; font-weight: 600;
  color: rgba(232,217,176,0.65); transition: var(--transition); cursor: pointer; border: none; background: none;
}
.navbar-link:hover { background: rgba(201,168,76,0.1); color: var(--gold-light); }
.balance-badge {
  background: linear-gradient(135deg, var(--green) 0%, #00e68a 100%);
  color: #fff; padding: 8px 16px; border-radius: 50px;
  font-weight: 700; font-size: 15px; min-width: 110px; text-align: center;
}
.avatar-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: #06040A; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: default; border: 1px solid rgba(201,168,76,0.4);
}

/* ─── Stats pills ───────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.stat-card {
  background: var(--dark-card); border-radius: var(--radius); padding: 20px 16px;
  text-align: center; box-shadow: var(--shadow); border: var(--border-gold);
}
.stat-card .stat-icon { font-size: 28px; margin-bottom: 6px; }
.stat-card .stat-value { font-size: 20px; font-weight: 800; color: var(--gold-light); line-height: 1.1; }
.stat-card .stat-label { font-size: 12px; color: rgba(232,217,176,0.45); font-weight: 600; margin-top: 2px; }

/* ─── Pills ─────────────────────────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; background: rgba(201,168,76,0.1); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}
.pill-green  { background: rgba(0,201,122,0.1); color: var(--green); border-color: rgba(0,201,122,0.2); }
.pill-blue   { background: rgba(77,158,255,0.1); color: #7ab8ff; border-color: rgba(77,158,255,0.2); }
.pill-orange { background: rgba(255,140,66,0.1); color: #ffb070; border-color: rgba(255,140,66,0.2); }

/* ─── Quick amount buttons ──────────────────────────────────────────────────── */
.quick-amounts { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.quick-btn {
  padding: 8px 16px; border-radius: 50px; border: 1px solid rgba(201,168,76,0.3);
  background: transparent; color: var(--gold); font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--transition);
}
.quick-btn:hover, .quick-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #06040A; border-color: transparent;
}

/* ─── Progress bar ───────────────────────────────────────────────────────────── */
.progress-bar { background: rgba(255,255,255,0.07); border-radius: 50px; height: 12px; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-bright) 100%);
  transition: width 0.4s ease;
}

/* ─── Transaction list ──────────────────────────────────────────────────────── */
.tx-list { display: flex; flex-direction: column; gap: 10px; }
.tx-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: var(--dark-card); border-radius: var(--radius-sm);
  border: var(--border-gold); box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.tx-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.tx-icon.ganho    { background: rgba(0,201,122,0.12); }
.tx-icon.perda    { background: rgba(255,77,109,0.12); }
.tx-icon.deposito { background: rgba(77,158,255,0.12); }
.tx-icon.saque    { background: rgba(201,168,76,0.12); }
.tx-icon.bonus    { background: rgba(168,85,247,0.12); }
.tx-info { flex: 1; }
.tx-desc { font-size: 14px; font-weight: 600; color: var(--cream); }
.tx-date { font-size: 12px; color: rgba(232,217,176,0.4); }
.tx-valor { font-size: 16px; font-weight: 700; }
.tx-valor.pos { color: var(--green); }
.tx-valor.neg { color: var(--red); }

/* ─── Modal ─────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--dark-card2);
  border: var(--border-gold-bright);
  border-radius: var(--radius); padding: 32px;
  width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto;
  animation: popIn 0.3s ease both;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.1);
}
.modal-title {
  font-size: 20px; font-weight: 800; color: var(--gold-light);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: var(--transition);
}
.modal-close:hover { background: var(--gold); color: #06040A; }

/* ─── QR Code area ───────────────────────────────────────────────────────────── */
.qr-area { text-align: center; }
.qr-area img { margin: 0 auto 12px; border-radius: 12px; border: 2px solid rgba(201,168,76,0.4); }
.qr-copy-box {
  background: rgba(201,168,76,0.07); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 13px; word-break: break-all;
  font-family: monospace; color: var(--cream); cursor: pointer;
  border: 1px dashed rgba(201,168,76,0.3); margin-bottom: 10px;
}
.qr-timer { font-size: 13px; color: var(--red); font-weight: 700; text-align: center; }

/* ─── Auth pages ─────────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: radial-gradient(ellipse at 20% 50%, rgba(139,105,20,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
              #06040A;
}
.auth-card {
  background: var(--dark-card2);
  border: var(--border-gold-bright);
  border-radius: var(--radius); padding: 40px 36px;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 40px rgba(201,168,76,0.08);
  animation: popIn 0.35s ease both;
}
.auth-logo {
  text-align: center; margin-bottom: 28px;
  font-size: 28px; font-weight: 800; color: var(--gold);
}
.auth-title  { font-size: 22px; font-weight: 800; color: var(--gold-light); margin-bottom: 6px; text-align: center; }
.auth-sub    { font-size: 14px; color: rgba(232,217,176,0.5); text-align: center; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: rgba(232,217,176,0.45); }
.auth-footer a { color: var(--gold); font-weight: 700; cursor: pointer; }

/* ─── Painel ────────────────────────────────────────────────────────────────── */
.painel-content { max-width: 1000px; margin: 0 auto; padding: 24px 16px; }
.painel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width: 700px) { .painel-grid { grid-template-columns: 1fr; } }

.game-card {
  background: linear-gradient(135deg, #0a0616 0%, #140f24 100%);
  border: var(--border-gold);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-gold);
}
.game-card-title { font-size: 20px; font-weight: 800; color: var(--gold-light); margin-bottom: 6px; }
.game-card-sub   { font-size: 14px; color: rgba(232,217,176,0.5); margin-bottom: 20px; }
.pills-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pills-row .pill { background: rgba(201,168,76,0.1); color: var(--gold); font-size: 12px; }
.input-money-wrap { position: relative; margin-bottom: 14px; }
.input-money-prefix {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-weight: 700; font-size: 15px; color: var(--gold); pointer-events: none;
}
.input-money { padding-left: 44px !important; }
.meta-preview {
  background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px; padding: 12px 16px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.meta-preview-label { color: rgba(232,217,176,0.55); font-size: 14px; }
.meta-preview-value { color: var(--gold-light); font-weight: 800; font-size: 18px; }
.users-playing {
  text-align: center; font-size: 13px; color: rgba(232,217,176,0.35); margin-top: 12px;
}

/* ─── Jogo page ──────────────────────────────────────────────────────────────── */
.jogo-page { min-height: 100vh; position: relative; background: #04020A; }
.jogo-hud {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(4,2,10,0.90); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 10px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hud-item { display: flex; flex-direction: column; align-items: center; }
.hud-label { font-size: 11px; color: rgba(201,168,76,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.hud-value { font-size: 18px; font-weight: 800; color: var(--cream); }
.hud-value.green { color: var(--green); }
.hud-value.pink  { color: var(--gold-light); }
.hud-progress { flex: 1; min-width: 140px; }
.jogo-iframe-wrap {
  position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
}
.jogo-iframe-wrap iframe { width: 100%; height: 100%; border: none; }

.resultado-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.82); display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.resultado-overlay.hidden { display: none; }
.resultado-box {
  background: var(--dark-card2);
  border: var(--border-gold-bright);
  border-radius: var(--radius); padding: 40px 32px;
  text-align: center; max-width: 380px; width: 100%;
  animation: popIn 0.4s ease both;
  box-shadow: 0 24px 60px rgba(0,0,0,0.8), 0 0 40px rgba(201,168,76,0.12);
}
.resultado-icon { font-size: 64px; margin-bottom: 10px; }
.resultado-title { font-size: 26px; font-weight: 800; margin-bottom: 8px; color: var(--gold-light); }
.resultado-valor { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.resultado-valor.ganhou { color: var(--green); }
.resultado-valor.perdeu { color: var(--red); }

/* ─── Utilities ──────────────────────────────────────────────────────────────── */
.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-sm  { gap: 8px; }
.gap-md  { gap: 16px; }
.gap-lg  { gap: 24px; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mb-md { margin-bottom: 16px; }
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.text-muted { color: rgba(232,217,176,0.45); }
.font-bold { font-weight: 700; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* ─── Container ──────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ─── Divider ────────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: rgba(201,168,76,0.12); margin: 20px 0; }

/* ─── Badge ──────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.badge-green  { background: rgba(0,201,122,0.12); color: var(--green); }
.badge-red    { background: rgba(255,77,109,0.12); color: var(--red); }
.badge-blue   { background: rgba(77,158,255,0.12); color: #7ab8ff; }
.badge-orange { background: rgba(255,140,66,0.12); color: #ffb070; }
.badge-purple { background: rgba(168,85,247,0.12); color: #c084fc; }

/* ─── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0816; }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 50px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════════════════════════════
   LANDING PAGE — Casino Premium Theme (Ouro / Preto)
   ═══════════════════════════════════════════════════════════════════════════════ */

#page-landing {
  background: #06040A;
}

/* ── Navbar ── */
.lnd-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4,2,10,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 0 32px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

/* Gold top line */
.lnd-nav::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.lnd-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lnd-nav-menu { display: flex; align-items: center; gap: 8px; }
.lnd-nav-link {
  padding: 8px 18px; border-radius: 50px; font-size: 14px; font-weight: 600;
  color: rgba(232,217,176,0.6); background: transparent; border: none; cursor: pointer;
  transition: all 0.2s;
}
.lnd-nav-link:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
}
.lnd-cta-sm {
  padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #06040A; border: none; cursor: pointer; letter-spacing: 0.3px;
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lnd-cta-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.55);
}

/* ── Hero ── */
@keyframes lnd-orb-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.05); }
}
@keyframes gold-particle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

.lnd-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 32px 60px;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(139,105,20,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(201,168,76,0.10) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(100,60,0,0.18) 0%, transparent 50%),
    linear-gradient(170deg, #08050F 0%, #0D0820 40%, #0A0615 100%),
    url('../images/game-bg.png') center/cover no-repeat;
  background-blend-mode: normal, normal, normal, normal, overlay;
}

/* Subtle grid overlay */
.lnd-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

.lnd-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.lnd-orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: lnd-orb-drift 10s ease-in-out infinite;
}

.lnd-hero-inner {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.lnd-hero-left { max-width: 580px; }

/* Live badge */
@keyframes lnd-ping { 0% { transform:scale(1); opacity:1; } 100% { transform:scale(2.4); opacity:0; } }
.lnd-live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.28);
  backdrop-filter: blur(10px); border-radius: 50px;
  padding: 8px 20px; margin-bottom: 32px;
  font-size: 13px; font-weight: 700; color: rgba(240,208,96,0.9);
  letter-spacing: 0.2px;
}
.lnd-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; position: relative;
}
.lnd-live-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--green); animation: lnd-ping 1.6s ease-out infinite;
}

/* Title */
.lnd-title {
  font-size: clamp(48px, 9vw, 88px); font-weight: 800; line-height: 1.0;
  color: #fff; margin-bottom: 24px; letter-spacing: -3px;
}
.lnd-title em {
  font-style: normal; display: block;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-bright) 60%, var(--gold) 80%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gold-shine 4s linear infinite;
}

/* Subtitle */
.lnd-sub {
  font-size: 17px; color: rgba(232,217,176,0.6);
  line-height: 1.75; margin-bottom: 42px; max-width: 460px;
}
.lnd-sub strong { color: var(--gold); font-weight: 800; }

/* Brand promo */
.brand-promo {
  background: rgba(0,201,122,0.08) !important;
  border: 1px solid rgba(0,201,122,0.25) !important;
  color: #00e882 !important;
  border-radius: 12px; padding: 10px 16px; font-size: 14px;
  font-weight: 600; text-align: center; margin-bottom: 12px;
}

/* Actions */
.lnd-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 42px; }

@keyframes lnd-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 8px 48px rgba(201,168,76,0.65), 0 0 80px rgba(201,168,76,0.18); }
}

.lnd-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-bright) 100%);
  color: #06040A; font-weight: 900; font-size: 15px;
  padding: 18px 44px; border-radius: 50px; border: none; cursor: pointer;
  animation: lnd-glow 2.5s ease-in-out infinite;
  transition: transform 0.2s; text-transform: uppercase; letter-spacing: 1px;
}
.lnd-cta-btn:hover { transform: translateY(-2px) scale(1.02); }
.lnd-cta-btn:active { transform: scale(0.97); }
.lnd-cta-btn svg { stroke: #06040A; }

.lnd-ghost-btn {
  background: transparent; border: none; cursor: pointer;
  color: rgba(232,217,176,0.5); font-size: 15px; font-weight: 600;
  transition: color 0.2s; padding: 0;
}
.lnd-ghost-btn:hover { color: var(--gold-light); }

/* Trust badges */
.lnd-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.lnd-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 50px; padding: 7px 16px;
  font-size: 12px; font-weight: 700; color: rgba(240,208,96,0.85);
  letter-spacing: 0.2px;
}
.lnd-trust-item svg { stroke: var(--gold); }

/* Win notification cards */
.lnd-wins-col { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
@keyframes lnd-float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.lnd-win-card {
  background: rgba(14,10,26,0.85);
  border: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 20px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; min-width: 250px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
  animation: lnd-float-card 4s ease-in-out infinite;
  position: relative; overflow: hidden;
}
.lnd-win-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}
.lnd-win-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.lnd-win-info { flex: 1; min-width: 0; }
.lnd-win-name   { font-size: 12px; color: rgba(232,217,176,0.5); font-weight: 600; }
.lnd-win-amount {
  font-size: 20px; font-weight: 800; line-height: 1.2;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lnd-win-label  { font-size: 11px; color: rgba(232,217,176,0.3); }

/* ── Stats bar ── */
.lnd-stats {
  background: #070510;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 42px 32px; position: relative; overflow: hidden;
  display: flex; justify-content: center; gap: clamp(28px,7vw,100px); flex-wrap: wrap;
}
.lnd-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.lnd-stat { text-align: center; position: relative; z-index: 1; }
.lnd-stat-val {
  font-size: 38px; font-weight: 800; margin-bottom: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lnd-stat-lbl { font-size: 13px; color: rgba(232,217,176,0.4); font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; }

/* ── How it works ── */
.lnd-how { background: #07050E; padding: 100px 32px; }
.lnd-container { max-width: 1140px; margin: 0 auto; }
.lnd-section-head { text-align: center; margin-bottom: 64px; }
.lnd-section-head h2 {
  font-size: clamp(28px, 5vw, 44px); font-weight: 800; margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lnd-section-head p { font-size: 16px; color: rgba(232,217,176,0.4); }
.lnd-how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.lnd-how-card {
  background: rgba(12,8,22,0.9);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 24px; padding: 38px 26px; text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.lnd-how-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.lnd-how-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(201,168,76,0.1);
}
.lnd-how-card:hover::before { opacity: 1; }
.lnd-how-num {
  font-size: 52px; font-weight: 800; line-height: 1; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lnd-how-icon {
  width: 68px; height: 68px; border-radius: 20px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(139,105,20,0.08));
  border: 1px solid rgba(201,168,76,0.2);
}
.lnd-how-card h3 { font-size: 16px; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.lnd-how-card p  { font-size: 14px; color: rgba(232,217,176,0.45); line-height: 1.7; }

/* ── Testimonials ── */
.lnd-test {
  background: #06040A; padding: 100px 32px;
  position: relative; overflow: hidden;
}
.lnd-test::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,105,20,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.lnd-test-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px; max-width: 960px; margin: 0 auto; position: relative; z-index: 1;
}
.lnd-test-card {
  background: rgba(12,8,20,0.95);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 24px; padding: 30px;
  transition: transform 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.lnd-test-card::after {
  content: '"';
  position: absolute; top: 12px; right: 20px;
  font-size: 80px; font-weight: 800; line-height: 1;
  color: rgba(201,168,76,0.06); font-family: Georgia, serif;
  pointer-events: none;
}
.lnd-test-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.35);
}
.lnd-test-stars {
  color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 3px;
}
.lnd-test-text  {
  font-size: 14px; color: rgba(232,217,176,0.60); line-height: 1.75;
  margin-bottom: 22px;
}
.lnd-test-author { display: flex; align-items: center; gap: 12px; }
.lnd-test-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800; color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.lnd-test-name  { font-size: 14px; font-weight: 700; color: var(--gold-light); }
.lnd-test-since { font-size: 12px; color: rgba(232,217,176,0.35); margin-top: 2px; }

/* ── CTA section ── */
.lnd-cta-sec {
  padding: 100px 32px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(170deg, #0C0818 0%, #1A1030 50%, #0C0818 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.lnd-cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139,105,20,0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative diamond */
.lnd-cta-sec::after {
  content: '◆';
  position: absolute; top: 32px; left: 50%; transform: translateX(-50%);
  font-size: 14px; color: rgba(201,168,76,0.4); letter-spacing: 20px;
  pointer-events: none;
}

.lnd-cta-sec h2 {
  position: relative; z-index: 1;
  font-size: clamp(30px, 5vw, 52px); font-weight: 800; margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 20%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lnd-cta-sec p {
  position: relative; z-index: 1;
  color: rgba(232,217,176,0.55); font-size: 17px; line-height: 1.7;
  max-width: 460px; margin: 0 auto 42px;
}
.lnd-cta-sec .lnd-cta-btn { position: relative; z-index: 1; }

/* ── Footer ── */
.lnd-footer {
  background: #040208; border-top: 1px solid rgba(201,168,76,0.12);
  padding: 56px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.lnd-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), var(--gold-light), rgba(201,168,76,0.3), transparent);
}
.lnd-footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 24px; font-weight: 800; margin-bottom: 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lnd-footer-links {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 28px;
}
.lnd-footer-links a {
  font-size: 14px; color: rgba(232,217,176,0.35);
  transition: color 0.2s; font-weight: 500;
}
.lnd-footer-links a:hover { color: var(--gold); }
.lnd-footer-warning {
  max-width: 520px; margin: 0 auto 24px; font-size: 12px;
  color: rgba(232,217,176,0.25); line-height: 1.6;
  padding: 14px 18px;
  border: 1px solid rgba(201,168,76,0.08); border-radius: 10px;
  background: rgba(201,168,76,0.03);
}
.lnd-footer-copy { font-size: 12px; color: rgba(232,217,176,0.18); }

/* ── Brand logo ── */
.brand-logo-wrap { display: flex; align-items: center; gap: 8px; }
.brand-logo-icon { color: var(--gold); }
.brand-name {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-weight: 800;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .lnd-hero-inner { flex-direction: column; }
  .lnd-wins-col { display: none; }
  .lnd-hero-left { text-align: center; max-width: 100%; }
  .lnd-live-badge { margin: 0 auto 28px; }
  .lnd-sub { margin-left: auto; margin-right: auto; }
  .lnd-actions { justify-content: center; }
  .lnd-trust { justify-content: center; }
  .lnd-title em { display: inline; }
  .lnd-nav { padding: 0 20px; }
  .lnd-hero { padding: 70px 20px 50px; }
  .lnd-how { padding: 70px 20px; }
  .lnd-test { padding: 70px 20px; }
  .lnd-cta-sec { padding: 70px 20px; }
  .lnd-footer { padding: 40px 20px; }
  .lnd-stats { padding: 32px 20px; }
}

/* ══ BOTTOM NAV (Mobile Only) ════════════════════════════════════════ */
@media (min-width: 768px) {
  .lnd-bottom-nav { display: none !important; }
  body { padding-bottom: 0 !important; }
}
.lnd-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 64px;
  padding-bottom: max(env(safe-area-inset-bottom), 0px);
  background: #07050F;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: stretch; justify-content: space-around; z-index: 200;
}
.lnd-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; background: none; border: none;
  cursor: pointer; color: rgba(232,217,176,0.35); font-size: 10px; font-weight: 600;
  font-family: inherit; transition: color .2s; padding: 0;
}
.lnd-nav-item svg { width: 22px; height: 22px; stroke: currentColor; opacity: 0.8; }
.lnd-nav-item:hover, .lnd-nav-active { color: var(--gold-light); }
.lnd-nav-active svg { color: var(--gold); opacity: 1; filter: drop-shadow(0 0 6px rgba(201,168,76,0.5)); }

.lnd-nav-center-wrap {
  position: relative; flex: 0 0 70px; display: flex; justify-content: center; cursor: default;
}
.lnd-nav-center {
  position: absolute; top: -20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-bright));
  border: 3px solid #07050F;
  display: flex; align-items: center; justify-content: center;
  color: #06040A; box-shadow: 0 4px 20px rgba(201,168,76,0.45);
  cursor: pointer; transition: transform .2s;
}
.lnd-nav-center:active { transform: scale(0.95); }
.lnd-nav-center svg { width: 24px; height: 24px; stroke: none; fill: currentColor; opacity: 1; }