/* ─── 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: linear-gradient(135deg, #FFE4EE 0%, #FFB3CB 100%);
  min-height: 100vh; width: 100%;
  overflow-x: hidden;
  color: #2d0014;
  -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 {
  --pink:        #FF6B9D;
  --pink-light:  #FF8CC8;
  --pink-dark:   #E0558A;
  --dark:        #4A0020;
  --dark-mid:    #7a0035;
  --green:       #00C97A;
  --green-dark:  #00A063;
  --red:         #FF4D6D;
  --blue:        #4D9EFF;
  --orange:      #FF8C42;
  --white:       #FFFFFF;
  --bg:          linear-gradient(135deg, #FFE4EE 0%, #FFB3CB 100%);
  --card-bg:     rgba(255,255,255,0.92);
  --shadow:      0 8px 32px rgba(74,0,32,0.10);
  --shadow-hover:0 16px 48px rgba(74,0,32,0.18);
  --radius:      16px;
  --radius-btn:  50px;
  --radius-sm:   8px;
  --transition:  0.25s ease;
}

/* ─── 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} }

.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(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.global-loading.hidden { display: none; }
.loading-spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--pink-light);
  border-top-color: var(--pink);
  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.15);
  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: var(--green); }
.toast.error   { background: var(--red); }
.toast.info    { background: var(--blue); }
.toast.warning { background: var(--orange); }

/* ─── 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.55; cursor: not-allowed; transform: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(255,107,157,0.4);
}
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
  box-shadow: 0 8px 24px rgba(255,107,157,0.5);
  transform: translateY(-1px);
}
.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) {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  box-shadow: 0 8px 24px rgba(0,201,122,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; border: 2px solid var(--pink);
  color: var(--pink);
}
.btn-outline:hover:not(:disabled) { background: var(--pink); color: #fff; }
.btn-dark {
  background: var(--dark); color: #fff;
}
.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);
  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(--dark); margin-bottom: 6px; }
.card-sub   { font-size: 14px; color: #8a3050; }

/* ─── Forms ─────────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--dark-mid); }
.form-input {
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 2px solid #ffd6e7; background: #fff;
  font-size: 15px; color: var(--dark); transition: border-color var(--transition);
  outline: none; width: 100%;
}
.form-input:focus  { border-color: var(--pink); }
.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: #c0748f;
}

/* ─── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,157,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(--pink);
  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: var(--dark-mid); transition: var(--transition); cursor: pointer; border: none; background: none;
}
.navbar-link:hover { background: #ffedf4; color: var(--pink); }
.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(--pink) 0%, var(--dark) 100%);
  color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: default;
}

/* ─── Stats pills ───────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.stat-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 20px 16px;
  text-align: center; box-shadow: var(--shadow);
}
.stat-card .stat-icon { font-size: 28px; margin-bottom: 6px; }
.stat-card .stat-value { font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.stat-card .stat-label { font-size: 12px; color: #8a3050; 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: #ffedf4; color: var(--pink-dark);
}
.pill-green  { background: #e6fff4; color: var(--green-dark); }
.pill-blue   { background: #e8f3ff; color: #1a6fd4; }
.pill-orange { background: #fff3e8; color: #c85c00; }

/* ─── Quick amount buttons ──────────────────────────────────────────────────── */
.quick-amounts { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.quick-btn {
  padding: 8px 16px; border-radius: 50px; border: 2px solid var(--pink);
  background: transparent; color: var(--pink); font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--transition);
}
.quick-btn:hover, .quick-btn.active { background: var(--pink); color: #fff; }

/* ─── Progress bar ───────────────────────────────────────────────────────────── */
.progress-bar { background: #ffd6e7; border-radius: 50px; height: 12px; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, var(--green) 0%, #00e68a 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: #fff; border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(74,0,32,0.06);
}
.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: #e6fff4; }
.tx-icon.perda    { background: #ffe8ed; }
.tx-icon.deposito { background: #e8f3ff; }
.tx-icon.saque    { background: #fff3e8; }
.tx-icon.bonus    { background: #f3e8ff; }
.tx-info { flex: 1; }
.tx-desc { font-size: 14px; font-weight: 600; color: var(--dark); }
.tx-date { font-size: 12px; color: #8a3050; }
.tx-valor { font-size: 16px; font-weight: 700; }
.tx-valor.pos { color: var(--green-dark); }
.tx-valor.neg { color: var(--red); }

/* ─── Modal ─────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(74,0,32,0.45); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: #fff; 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;
}
.modal-title {
  font-size: 20px; font-weight: 800; color: var(--dark);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: #ffedf4; border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); transition: var(--transition);
}
.modal-close:hover { background: var(--pink); color: #fff; }

/* ─── QR Code area ───────────────────────────────────────────────────────────── */
.qr-area { text-align: center; }
.qr-area img { margin: 0 auto 12px; border-radius: 12px; border: 3px solid var(--pink-light); }
.qr-copy-box {
  background: #ffedf4; border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 13px; word-break: break-all;
  font-family: monospace; color: var(--dark); cursor: pointer;
  border: 1px dashed var(--pink); margin-bottom: 10px;
}
.qr-timer { font-size: 13px; color: var(--red); font-weight: 700; text-align: center; }

/* ─── Landing Hero ───────────────────────────────────────────────────────────── */
.landing-hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #FFE4EE 0%, #FFB3CB 60%, #ff8cc8 100%);
  padding: 0 20px; position: relative; overflow: hidden;
}
.hero-content { max-width: 560px; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.7); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700; color: var(--pink); margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(255,107,157,0.2);
}
.hero-title {
  font-size: clamp(40px, 8vw, 72px); font-weight: 800; line-height: 1.05;
  color: var(--dark); margin-bottom: 18px; letter-spacing: -1px;
}
.hero-title span { color: var(--pink); }
.hero-sub {
  font-size: 17px; color: var(--dark-mid); margin-bottom: 32px;
  line-height: 1.6; max-width: 420px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

/* Decorative helix */
.helix-deco {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  font-size: clamp(120px, 18vw, 200px); opacity: 0.25;
  animation: spin-slow 8s linear infinite;
  pointer-events: none; user-select: none;
}
.bg-blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: float 4s ease-in-out infinite;
}

/* Notification bubbles */
.notif-bubble {
  position: absolute; right: 24px;
  background: #fff; border-radius: 50px;
  padding: 10px 16px; box-shadow: 0 4px 16px rgba(74,0,32,0.12);
  font-size: 13px; font-weight: 700; color: var(--green-dark);
  animation: float 3.5s ease-in-out infinite;
  display: flex; align-items: center; gap: 8px; z-index: 2;
}
.notif-bubble:nth-child(1) { top: 18%; animation-delay: 0s; }
.notif-bubble:nth-child(2) { top: 35%; animation-delay: 1s; }
.notif-bubble:nth-child(3) { top: 52%; animation-delay: 2s; }

/* ─── How it works ───────────────────────────────────────────────────────────── */
.how-section { padding: 80px 20px; text-align: center; }
.section-title { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.section-sub   { font-size: 16px; color: var(--dark-mid); margin-bottom: 48px; }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 800px; margin: 0 auto; }
.how-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow); transition: var(--transition);
}
.how-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.how-icon { font-size: 48px; margin-bottom: 14px; }
.how-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.how-desc  { font-size: 14px; color: #7a3050; line-height: 1.5; }

/* ─── Stats bar ──────────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 28px 20px; display: flex; justify-content: center;
  gap: clamp(24px, 6vw, 80px); flex-wrap: wrap;
}
.sbar-item { text-align: center; }
.sbar-value { font-size: 28px; font-weight: 800; color: var(--pink-light); }
.sbar-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ─── Testimonials ───────────────────────────────────────────────────────────── */
.test-section { padding: 80px 20px; background: rgba(255,255,255,0.5); }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.test-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
}
.test-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px;
}
.test-stars { color: #FFB800; font-size: 16px; margin-bottom: 10px; }
.test-text { font-size: 14px; color: #5a2035; line-height: 1.6; margin-bottom: 14px; }
.test-name  { font-size: 14px; font-weight: 700; color: var(--dark); }
.test-sub   { font-size: 12px; color: #8a3050; }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.8);
  padding: 40px 20px; text-align: center;
}
.footer-brand { font-size: 24px; font-weight: 800; color: var(--pink-light); margin-bottom: 12px; }
.footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--pink-light); }
.footer-warning {
  max-width: 500px; margin: 0 auto; font-size: 12px; line-height: 1.5;
  opacity: 0.6; padding: 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
}

/* ─── Auth pages ─────────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: linear-gradient(135deg, #FFE4EE 0%, #FFB3CB 100%);
}
.auth-card {
  background: #fff; border-radius: var(--radius); padding: 40px 36px;
  width: 100%; max-width: 420px; box-shadow: 0 16px 48px rgba(74,0,32,0.14);
  animation: popIn 0.35s ease both;
}
.auth-logo {
  text-align: center; margin-bottom: 28px;
  font-size: 28px; font-weight: 800; color: var(--pink);
}
.auth-title  { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; text-align: center; }
.auth-sub    { font-size: 14px; color: #8a3050; text-align: center; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: #8a3050; }
.auth-footer a { color: var(--pink); 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, var(--dark) 0%, var(--dark-mid) 100%); border-radius: var(--radius); padding: 28px; }
.game-card-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.game-card-sub   { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.pills-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pills-row .pill { background: rgba(255,255,255,0.12); color: #fff; 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(--dark-mid); pointer-events: none;
}
.input-money { padding-left: 44px !important; }
.meta-preview {
  background: rgba(255,255,255,0.1); border-radius: 10px;
  padding: 12px 16px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.meta-preview-label { color: rgba(255,255,255,0.7); font-size: 14px; }
.meta-preview-value { color: #fff; font-weight: 800; font-size: 18px; }
.users-playing {
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 12px;
}

/* ─── Jogo page ──────────────────────────────────────────────────────────────── */
.jogo-page { min-height: 100vh; position: relative; background: #0a0010; }
.jogo-hud {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,0,16,0.85); backdrop-filter: blur(8px);
  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(255,255,255,0.5); font-weight: 600; text-transform: uppercase; }
.hud-value { font-size: 18px; font-weight: 800; color: #fff; }
.hud-value.green { color: var(--green); }
.hud-value.pink  { color: var(--pink-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.75); display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.resultado-overlay.hidden { display: none; }
.resultado-box {
  background: #fff; border-radius: var(--radius); padding: 40px 32px;
  text-align: center; max-width: 380px; width: 100%;
  animation: popIn 0.4s ease both;
}
.resultado-icon { font-size: 64px; margin-bottom: 10px; }
.resultado-title { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.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: #8a3050; }
.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: #ffd6e7; 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: #e6fff4; color: var(--green-dark); }
.badge-red    { background: #ffe8ed; color: var(--red); }
.badge-blue   { background: #e8f3ff; color: #1a6fd4; }
.badge-orange { background: #fff3e8; color: #c85c00; }
.badge-purple { background: #f3e8ff; color: #7b1fa2; }

/* ─── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #ffe4ee; }
::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 50px; }

/* ═══════════════════════════════════════════════════════════════════════════════
   LANDING PAGE REDESIGN — Tema escuro com game-bg
   ═══════════════════════════════════════════════════════════════════════════════ */

#page-landing { background: #0d0020; }

/* ── Navbar ── */
.lnd-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,0,20,0.88);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lnd-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 21px; font-weight: 800; color: var(--pink); letter-spacing: -0.5px; cursor: pointer;
}
.lnd-nav-menu { display: flex; align-items: center; gap: 8px; }
.lnd-nav-link {
  padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.75); background: transparent; border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lnd-nav-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.lnd-cta-sm {
  padding: 9px 20px; border-radius: 50px; font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(255,107,157,0.4); transition: transform 0.2s, box-shadow 0.2s;
}
.lnd-cta-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,157,0.55); }

/* ── Hero ── */
@keyframes lnd-orb-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.05); }
}
.lnd-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 24px 60px;
  background:
    linear-gradient(160deg, rgba(8,0,24,0.75) 0%, rgba(30,0,60,0.45) 55%, rgba(8,0,24,0.80) 100%),
    url('../images/game-bg.png') center/cover no-repeat;
}

/* Game iframe background in hero */
.lnd-game-bg {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; height: 100%;
  min-width: 600px;
  border: none;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.lnd-game-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(160deg, rgba(8,0,24,0.72) 0%, rgba(30,0,60,0.35) 45%, rgba(8,0,24,0.72) 100%);
  pointer-events: none;
}
.lnd-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.lnd-orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  animation: lnd-orb-drift 8s ease-in-out infinite;
}
.lnd-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.lnd-hero-left { max-width: 560px; }

/* 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: 9px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px); border-radius: 50px;
  padding: 7px 18px; margin-bottom: 28px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.88);
}
.lnd-live-dot {
  width: 9px; height: 9px; 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(44px, 9vw, 84px); font-weight: 800; line-height: 1.0;
  color: #fff; margin-bottom: 22px; letter-spacing: -2px;
}
.lnd-title em { color: var(--pink); font-style: normal; display: block; }

/* Subtitle */
.lnd-sub {
  font-size: 17px; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 38px; max-width: 440px;
}
.lnd-sub strong { color: var(--pink); font-weight: 800; }

/* Actions */
.lnd-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 38px; }
@keyframes lnd-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,201,122,0.45); }
  50% { box-shadow: 0 8px 44px rgba(0,201,122,0.75), 0 0 80px rgba(0,201,122,0.22); }
}
.lnd-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #00C97A 0%, #00ea8c 100%);
  color: #fff; font-weight: 800; font-size: 16px;
  padding: 18px 40px; 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: 0.5px;
}
.lnd-cta-btn:hover { transform: translateY(-2px) scale(1.02); }
.lnd-cta-btn:active { transform: scale(0.97); }
.lnd-ghost-btn {
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.62); font-size: 15px; font-weight: 600;
  transition: color 0.2s; padding: 0;
}
.lnd-ghost-btn:hover { color: #fff; }

/* Trust badges */
.lnd-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.lnd-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,201,122,0.10); border: 1px solid rgba(0,201,122,0.22);
  border-radius: 50px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: #00e882;
}

/* Win notification cards */
.lnd-wins-col { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
@keyframes lnd-float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.lnd-win-card {
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 18px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; min-width: 235px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  animation: lnd-float-card 4s ease-in-out infinite;
}
.lnd-win-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.lnd-win-info { flex: 1; min-width: 0; }
.lnd-win-name   { font-size: 12px; color: rgba(255,255,255,0.58); font-weight: 600; }
.lnd-win-amount { font-size: 20px; font-weight: 800; color: #00e882; line-height: 1.2; }
.lnd-win-label  { font-size: 11px; color: rgba(255,255,255,0.38); }

/* ── Stats bar ── */
.lnd-stats {
  background: rgba(8,0,20,0.97);
  border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 36px 24px;
  display: flex; justify-content: center; gap: clamp(24px,6vw,80px); flex-wrap: wrap;
}
.lnd-stat { text-align: center; }
.lnd-stat-val { font-size: 34px; font-weight: 800; color: var(--pink-light); margin-bottom: 4px; }
.lnd-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.48); font-weight: 600; }

/* ── How it works ── */
.lnd-how { background: #0d0020; padding: 90px 24px; }
.lnd-container { max-width: 1100px; margin: 0 auto; }
.lnd-section-head { text-align: center; margin-bottom: 56px; }
.lnd-section-head h2 {
  font-size: clamp(26px, 5vw, 42px); font-weight: 800; color: #fff; margin-bottom: 10px;
}
.lnd-section-head p { font-size: 16px; color: rgba(255,255,255,0.48); }
.lnd-how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.lnd-how-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px); border-radius: 22px; padding: 34px 24px; text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.lnd-how-card:hover { transform: translateY(-7px); border-color: rgba(255,107,157,0.3); }
.lnd-how-num {
  font-size: 54px; font-weight: 800; line-height: 1; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--pink), #a855f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lnd-how-icon {
  width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,107,157,0.14), rgba(168,85,247,0.14));
  border: 1px solid rgba(255,107,157,0.18);
}
.lnd-how-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.lnd-how-card p  { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.65; }

/* ── Testimonials ── */
.lnd-test { background: linear-gradient(180deg, #0d0020, #130030); padding: 90px 24px; }
.lnd-test-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.lnd-test-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px; padding: 28px; transition: transform 0.3s;
}
.lnd-test-card:hover { transform: translateY(-5px); }
.lnd-test-stars { color: #FFB800; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.lnd-test-text  {
  font-size: 14px; color: rgba(255,255,255,0.66); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.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;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ADMIN PANEL — Dashdark X
   ═══════════════════════════════════════════════════════════════════════════════ */
#page-admin.active { display: flex; min-height: 100vh; background: #080b16; color: #fff; }
#page-admin ::-webkit-scrollbar { width: 4px; }
#page-admin ::-webkit-scrollbar-track { background: transparent; }
#page-admin ::-webkit-scrollbar-thumb { background: rgba(255,255,255,.06); border-radius: 10px; }

.adm-sidebar {
  width: 260px; min-height: 100vh; background: #0a0d19;
  border-right: 1px solid rgba(255,255,255,.04);
  display: flex; flex-direction: column; position: sticky; top: 0;
  max-height: 100vh; overflow-y: auto;
}
.adm-sidebar-logo { padding: 28px 24px 20px; }
.adm-sidebar-logo-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, #7c5cfc, #6c47ec);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff;
}
.adm-sidebar-logo-text {
  font-size: 17px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 10px; letter-spacing: -0.4px;
}
.adm-sidebar-logo-sub {
  font-size: 11px; color: rgba(255,255,255,.15); margin-top: 4px; font-weight: 400;
}
.adm-sidebar-search {
  margin: 0 16px 8px; padding: 9px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.04); background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.5); font-size: 13px; outline: none;
  width: calc(100% - 32px); transition: .2s;
}
.adm-sidebar-search:focus {
  border-color: rgba(124,92,252,.2); color: #fff; background: rgba(255,255,255,.04);
}
.adm-sidebar-search::placeholder { color: rgba(255,255,255,.1); }
.adm-nav-section {
  padding: 24px 24px 8px; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.1);
}
.adm-nav-group { padding: 0 12px; }
.adm-nav-item {
  display: flex; align-items: center; gap: 11px; padding: 9px 12px;
  border: none; background: none; color: rgba(255,255,255,.3);
  font-size: 13px; font-weight: 400; border-radius: 8px;
  cursor: pointer; transition: all .15s ease;
  text-align: left; width: 100%; margin-bottom: 1px;
}
.adm-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .3; }
.adm-nav-item:hover { background: rgba(124,92,252,.04); color: rgba(255,255,255,.55); }
.adm-nav-item:hover svg { opacity: .5; }
.adm-nav-item.active {
  background: rgba(124,92,252,.08); color: rgba(196,181,253,.85); font-weight: 500;
}
.adm-nav-item.active svg { opacity: .8; color: #a78bfa; }

.adm-nav-badge {
  margin-left: auto; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 9px; background: #f87171; color: #fff; font-size: 10px;
  font-weight: 700; line-height: 18px; text-align: center;
}

.adm-main {
  flex: 1; padding: 32px 40px; overflow-y: auto; min-height: 100vh; background: #080b16;
}
.adm-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.adm-header h1 {
  font-size: 18px; font-weight: 600; color: rgba(255,255,255,.8); margin: 0;
  letter-spacing: -0.3px;
}
.adm-header-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }

.adm-period-bar { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.adm-period-btn {
  padding: 7px 16px; border-radius: 6px; border: 1px solid transparent;
  background: transparent; color: rgba(255,255,255,.28);
  font-size: 12px; font-weight: 500; cursor: pointer; transition: .15s;
}
.adm-period-btn:hover { color: rgba(255,255,255,.55); background: rgba(255,255,255,.03); }
.adm-period-btn.active {
  background: rgba(124,92,252,.1); border-color: rgba(124,92,252,.18); color: #b4a0f4;
}
.adm-period-custom { display: flex; align-items: center; gap: 8px; }
.adm-period-custom input[type="date"] {
  padding: 7px 12px; border-radius: 6px; border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03); color: rgba(255,255,255,.5); font-size: 12px; outline: none;
}

.adm-stats-row {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px; margin-bottom: 24px;
}
.adm-stat-card {
  background: #0e1225; border: 1px solid rgba(255,255,255,.04);
  border-radius: 12px; padding: 20px; transition: all .2s ease;
}
.adm-stat-card:hover {
  border-color: rgba(255,255,255,.07); box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.adm-stat-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.adm-stat-icon svg { width: 20px; height: 20px; }
.adm-stat-icon.green  { background: rgba(52,211,153,.06); color: #34d399; }
.adm-stat-icon.red    { background: rgba(248,113,113,.06); color: #f87171; }
.adm-stat-icon.blue   { background: rgba(129,140,248,.06); color: #818cf8; }
.adm-stat-icon.purple { background: rgba(167,139,250,.06); color: #a78bfa; }
.adm-stat-icon.amber  { background: rgba(251,191,36,.06); color: #fbbf24; }
.adm-stat-icon.cyan   { background: rgba(34,211,238,.06); color: #22d3ee; }
.adm-stat-label {
  font-size: 12px; color: rgba(255,255,255,.25); margin-bottom: 8px; font-weight: 400;
}
.adm-stat-value {
  font-size: 22px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.5px;
}
.adm-stat-value.green  { color: #34d399; }
.adm-stat-value.blue   { color: #818cf8; }
.adm-stat-value.pink   { color: #f472b6; }
.adm-stat-value.amber  { color: #fbbf24; }
.adm-stat-value.red    { color: #f87171; }
.adm-stat-value.cyan   { color: #22d3ee; }
.adm-stat-sub { font-size: 11px; color: rgba(255,255,255,.15); margin-top: 6px; }

.adm-card {
  background: #0e1225; border: 1px solid rgba(255,255,255,.04);
  border-radius: 12px; padding: 24px; margin-bottom: 16px;
}
.adm-card-title {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.4);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .3px;
}

.adm-table { width: 100%; border-collapse: collapse; }
.adm-table thead th {
  text-align: left; font-size: 11px; text-transform: uppercase;
  color: rgba(255,255,255,.15); padding: 12px 16px; letter-spacing: .4px;
  border-bottom: 1px solid rgba(255,255,255,.04); font-weight: 600;
}
.adm-table tbody td {
  padding: 12px 16px; font-size: 13px; color: rgba(255,255,255,.45);
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.adm-table tbody tr { transition: background .1s; }
.adm-table tbody tr:hover { background: rgba(124,92,252,.03); }

.adm-badge {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 500;
}
.adm-badge.green  { background: rgba(52,211,153,.07); color: #34d399; }
.adm-badge.red    { background: rgba(248,113,113,.07); color: #f87171; }
.adm-badge.blue   { background: rgba(129,140,248,.07); color: #818cf8; }
.adm-badge.yellow { background: rgba(251,191,36,.07); color: #fbbf24; }
.adm-badge.purple { background: rgba(167,139,250,.07); color: #c4b5fd; }
.adm-badge.orange { background: rgba(251,146,60,.07); color: #fb923c; }

.adm-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px;
  border: none; border-radius: 8px; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .15s ease;
}
.adm-btn-sm { padding: 6px 12px; font-size: 12px; }
.adm-btn-primary { background: #7c5cfc; color: #fff; }
.adm-btn-primary:hover { background: #6d4aed; }
.adm-btn-green { background: rgba(52,211,153,.07); color: #34d399; border: 1px solid rgba(52,211,153,.07); }
.adm-btn-green:hover { background: rgba(52,211,153,.12); }
.adm-btn-danger { background: rgba(248,113,113,.05); color: #f87171; border: 1px solid rgba(248,113,113,.05); }
.adm-btn-danger:hover { background: rgba(248,113,113,.1); }
.adm-btn-ghost { background: rgba(255,255,255,.02); color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.04); }
.adm-btn-ghost:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.55); }

.adm-toggle-slider::before {
  position: absolute; content: ""; height: 22px; width: 22px; left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%; transition: .3s;
}
input:checked + .adm-toggle-slider { background: #7c5cfc !important; }
input:checked + .adm-toggle-slider::before { transform: translateX(22px); }

.adm-input, .adm-select {
  width: 100%; padding: 10px 14px; background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05); border-radius: 8px;
  color: rgba(255,255,255,.65); font-size: 13px; outline: none; transition: .15s;
}
.adm-input:focus, .adm-select:focus { border-color: rgba(124,92,252,.3); background: rgba(255,255,255,.03); }
.adm-input::placeholder { color: rgba(255,255,255,.1); }
.adm-select option { background: #0e1225; color: #fff; }
.adm-form-group { margin-bottom: 14px; }
.adm-form-label {
  display: block; font-size: 11px; color: rgba(255,255,255,.2);
  margin-bottom: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: .3px;
}

.adm-cfg-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px; margin-bottom: 24px;
}
.adm-cfg-card {
  background: #0e1225; border: 1px solid rgba(255,255,255,.04);
  border-radius: 12px; padding: 20px; transition: .15s;
}
.adm-cfg-card:hover { border-color: rgba(255,255,255,.07); }
.adm-cfg-card-title {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 4px;
}
.adm-cfg-card-desc { font-size: 12px; color: rgba(255,255,255,.18); margin-bottom: 14px; line-height: 1.4; }
.adm-cfg-card-row { display: flex; gap: 8px; align-items: center; }
.adm-cfg-card-row .adm-input { flex: 1; }

/* ── Hamburger button (mobile only) ── */
.adm-hamburger {
  display: none; position: fixed; top: 16px; left: 16px; z-index: 1001;
  width: 42px; height: 42px; border-radius: 10px;
  background: #0e1225; border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.5); cursor: pointer; padding: 0;
  align-items: center; justify-content: center; transition: .15s;
}
.adm-hamburger:hover { background: rgba(124,92,252,.1); color: #a78bfa; }
.adm-hamburger svg { width: 20px; height: 20px; }

/* ── Sidebar overlay (mobile) ── */
.adm-sidebar-overlay {
  display: none; position: fixed; inset: 0; z-index: 1049;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .25s ease;
}
.adm-sidebar-overlay.active { display: block; opacity: 1; }

/* ── Dashboard grid layouts ── */
.adm-stats-grid-main {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 20px;
}
.adm-stats-grid-secondary {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-bottom: 24px;
}
.adm-dash-bottom-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ── Large stat cards ── */
.adm-stat-card--lg {
  padding: 24px; display: flex; flex-direction: column; gap: 0;
}
.adm-stat-card--lg .adm-stat-value { font-size: 28px; margin: 12px 0 16px; }
.adm-stat-card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.adm-stat-period-tag {
  font-size: 11px; color: rgba(255,255,255,.2); font-weight: 400;
  padding: 4px 10px; border-radius: 6px; background: rgba(255,255,255,.02);
}
.adm-stat-bottom { display: flex; align-items: center; gap: 12px; }
.adm-stat-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,.04); border-radius: 4px;
  overflow: hidden;
}
.adm-stat-bar-fill { height: 100%; border-radius: 4px; transition: width .5s ease; }
.adm-stat-bar-fill.green  { background: #34d399; }
.adm-stat-bar-fill.red    { background: #f87171; }
.adm-stat-bar-fill.blue   { background: #818cf8; }
.adm-stat-bar-fill.purple { background: #a78bfa; }

/* ── Small stat cards ── */
.adm-stat-card--sm { padding: 18px; }
.adm-stat-card--sm .adm-stat-icon { width: 36px; height: 36px; margin-bottom: 12px; }
.adm-stat-card--sm .adm-stat-label { margin-bottom: 6px; }
.adm-stat-card--sm .adm-stat-value { font-size: 20px; }

/* ── Alert dot ── */
.adm-stat-alert-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fbbf24;
  display: inline-block; animation: admPulse 1.5s ease infinite;
}
@keyframes admPulse { 0%, 100% { opacity: 1 } 50% { opacity: .3 } }

/* ── Table wrap for horizontal scroll ── */
.adm-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Status bar (gateway + online) ── */
.adm-status-bar {
  display: flex; align-items: center; gap: 20px; margin-bottom: 20px;
  padding: 10px 16px; background: rgba(255,255,255,.02); border-radius: 10px;
  border: 1px solid rgba(255,255,255,.03);
}
.adm-status-item {
  display: flex; align-items: center; gap: 8px; font-size: 12px;
  color: rgba(255,255,255,.3); font-weight: 400;
}
.adm-status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  animation: admPulse 2s ease infinite;
}

/* ── Mini bar chart ── */
.adm-mini-chart {
  display: flex; align-items: flex-end; gap: 8px; height: 180px;
  padding: 12px 0 0;
}
.adm-chart-col {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-width: 0;
}
.adm-chart-value {
  font-size: 9px; color: rgba(255,255,255,.2); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%;
}
.adm-chart-bar-wrap {
  width: 100%; flex: 1; display: flex; align-items: flex-end;
  justify-content: center; min-height: 4px;
}
.adm-chart-bar {
  width: 70%; max-width: 36px; border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #7c5cfc, rgba(124,92,252,.4));
  transition: height .5s ease; min-height: 2px;
}
.adm-chart-label {
  font-size: 10px; color: rgba(255,255,255,.15); font-weight: 500;
  text-transform: uppercase;
}

/* ── Transaction feed ── */
.adm-txn-feed { display: flex; flex-direction: column; gap: 2px; max-height: 320px; overflow-y: auto; }
.adm-txn-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: 8px; transition: background .1s;
}
.adm-txn-item:hover { background: rgba(124,92,252,.03); }
.adm-txn-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.adm-txn-icon svg { width: 16px; height: 16px; }
.adm-txn-icon.green { background: rgba(52,211,153,.06); color: #34d399; }
.adm-txn-icon.red   { background: rgba(248,113,113,.06); color: #f87171; }
.adm-txn-info { flex: 1; min-width: 0; }
.adm-txn-name { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm-txn-time { font-size: 11px; color: rgba(255,255,255,.15); margin-top: 2px; }
.adm-txn-right { text-align: right; flex-shrink: 0; }
.adm-txn-amount { font-size: 13px; font-weight: 600; margin-bottom: 3px; }

/* ── Rank badge ── */
.adm-rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.3);
}
.adm-rank-badge.rank-1 { background: rgba(251,191,36,.1); color: #fbbf24; }
.adm-rank-badge.rank-2 { background: rgba(192,192,192,.08); color: #c0c0c0; }
.adm-rank-badge.rank-3 { background: rgba(205,127,50,.08); color: #cd7f32; }

/* ── Triple grid (bottom section) ── */
.adm-dash-triple-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 14px; margin-top: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   USERS TAB — Components
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Toolbar (filter + search) ── */
.adm-users-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px; flex-wrap: wrap;
}
.adm-users-toolbar-right {
  display: flex; align-items: center; gap: 8px;
}

/* ── Search box ── */
.adm-search-box,
.adm-search-wrap {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 8px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.04);
  transition: .15s; min-width: 200px; position: relative;
}
.adm-search-box:focus-within,
.adm-search-wrap:focus-within { border-color: rgba(124,92,252,.2); background: rgba(255,255,255,.03); }
.adm-search-box svg,
.adm-search-wrap svg { color: rgba(255,255,255,.15); flex-shrink: 0; width: 16px; height: 16px; }
.adm-search-input,
.adm-search {
  background: none; border: none; outline: none; color: rgba(255,255,255,.6);
  font-size: 13px; width: 100%;
}
.adm-search-input::placeholder,
.adm-search::placeholder { color: rgba(255,255,255,.1); }
.adm-search-icon { width: 16px; height: 16px; flex-shrink: 0; color: rgba(255,255,255,.15); }

/* ── Icon button ── */
.adm-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02); cursor: pointer; transition: .15s;
}
.adm-icon-btn:hover { background: rgba(255,255,255,.06); }

/* ── Filter tabs ── */
.adm-filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.adm-filter-tab {
  padding: 6px 14px; border-radius: 6px; border: 1px solid transparent;
  background: transparent; color: rgba(255,255,255,.25); font-size: 12px;
  font-weight: 500; cursor: pointer; transition: .15s; white-space: nowrap;
}
.adm-filter-tab:hover { color: rgba(255,255,255,.45); background: rgba(255,255,255,.03); }
.adm-filter-tab.active {
  background: rgba(124,92,252,.1); border-color: rgba(124,92,252,.15); color: #b4a0f4;
}

/* ── Icon buttons ── */
.adm-icon-btn {
  width: 30px; height: 30px; border-radius: 7px; border: none;
  background: rgba(255,255,255,.02); color: rgba(255,255,255,.25);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .15s; padding: 0;
}
.adm-icon-btn svg { width: 14px; height: 14px; }
.adm-icon-btn:hover { background: rgba(124,92,252,.08); color: rgba(255,255,255,.55); }
.adm-icon-btn.red:hover { background: rgba(248,113,113,.08); color: #f87171; }
.adm-icon-btn.green:hover { background: rgba(52,211,153,.08); color: #34d399; }
.adm-icon-btn.amber:hover { background: rgba(251,191,36,.08); color: #fbbf24; }

/* ── User row ── */
.adm-user-row { cursor: pointer; }
.adm-user-row:hover { background: rgba(124,92,252,.04) !important; }
.adm-user-cell { display: flex; align-items: center; gap: 12px; }
.adm-user-avatar {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
}
.adm-user-info { min-width: 0; }
.adm-user-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm-user-phone { font-size: 11px; color: rgba(255,255,255,.2); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.adm-user-actions { display: flex; gap: 4px; justify-content: flex-end; }

/* ── User detail drawer ── */
.adm-drawer-overlay {
  position: fixed; inset: 0; z-index: 1060;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  display: flex; justify-content: flex-end;
  opacity: 0; transition: opacity .2s ease;
}
.adm-drawer-overlay.active { opacity: 1; }
.adm-drawer {
  width: 420px; max-width: 90vw; height: 100vh; background: #0c0f1f;
  border-left: 1px solid rgba(255,255,255,.04);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.adm-drawer-overlay.active .adm-drawer { transform: translateX(0); }
.adm-drawer-header {
  display: flex; align-items: center; gap: 12px; padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.adm-drawer-close {
  width: 34px; height: 34px; border-radius: 8px; border: none;
  background: rgba(255,255,255,.03); color: rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .15s;
}
.adm-drawer-close:hover { background: rgba(248,113,113,.08); color: #f87171; }
.adm-drawer-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); }
.adm-drawer-body { flex: 1; overflow-y: auto; padding: 24px; }
.adm-drawer-profile { text-align: center; margin-bottom: 28px; }
.adm-drawer-avatar {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(124,92,252,.15), rgba(124,92,252,.05));
  color: #a78bfa; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; letter-spacing: 1px;
}
.adm-drawer-name { font-size: 17px; font-weight: 600; color: #fff; }
.adm-drawer-sub { font-size: 12px; color: rgba(255,255,255,.2); margin-top: 4px; }
.adm-drawer-section { margin-bottom: 24px; }
.adm-drawer-section-title {
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: rgba(255,255,255,.12); margin-bottom: 12px;
}
.adm-drawer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.adm-drawer-field {
  padding: 10px 12px; border-radius: 8px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.03);
}
.adm-drawer-field-label {
  display: block; font-size: 10px; color: rgba(255,255,255,.15);
  text-transform: uppercase; letter-spacing: .3px; margin-bottom: 4px;
}
.adm-drawer-field-value {
  font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500;
  word-break: break-all;
}
.adm-drawer-actions {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.04);
}

/* Value pills for table */
.adm-val-pill {
  display: inline-block; padding: 3px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.adm-val-pill.green { background: rgba(52,211,153,.12); color: #34d399; }
.adm-val-pill.blue { background: rgba(96,165,250,.12); color: #60a5fa; }
.adm-val-pill.amber { background: rgba(251,191,36,.12); color: #fbbf24; }
.adm-val-pill.muted { background: rgba(255,255,255,.04); color: rgba(255,255,255,.18); }

/* Affiliate link in drawer */
.adm-affiliate-link-wrap {
  display: flex; align-items: center; gap: 8px; margin-top: 4px;
}
.adm-affiliate-link {
  font-size: 11px; word-break: break-all; color: #60a5fa;
  background: rgba(96,165,250,.06); padding: 6px 10px; border-radius: 6px; flex: 1;
}

.adm-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px); animation: admFadeIn .15s ease;
}
@keyframes admFadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes admPopIn { from { opacity: 0; transform: scale(.97) translateY(5px) } to { opacity: 1; transform: scale(1) translateY(0) } }
.adm-modal {
  background: #111631; border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 28px; width: 90%; max-width: 440px;
  animation: admPopIn .2s ease;
}
.adm-modal-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 20px; }

.adm-empty { text-align: center; padding: 48px; color: rgba(255,255,255,.1); font-size: 13px; }
.adm-loading { text-align: center; padding: 60px; color: rgba(255,255,255,.12); font-size: 13px; }
.adm-error { text-align: center; padding: 48px; color: #f87171; font-size: 13px; }

.adm-section-card {
  background: rgba(124,92,252,.03); border: 1px solid rgba(124,92,252,.05);
  border-radius: 12px; padding: 16px 20px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.adm-section-card-icon {
  width: 38px; height: 38px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 16px;
  background: rgba(124,92,252,.06); flex-shrink: 0;
}
.adm-section-card-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.75); }
.adm-section-card-desc { font-size: 11px; color: rgba(255,255,255,.18); margin-top: 2px; }

.adm-welcome { margin-bottom: 32px; }
.adm-welcome h2 {
  font-size: 22px; font-weight: 600; color: #fff; margin: 0 0 6px; letter-spacing: -0.3px;
}
.adm-welcome p { font-size: 13px; color: rgba(255,255,255,.2); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tablet (1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .adm-hamburger { display: flex; }

  .adm-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 1050;
    width: 280px; min-height: 100vh; max-height: 100vh;
    transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    flex-direction: column;
  }
  .adm-sidebar.open { transform: translateX(0); }

  .adm-main { padding: 24px 20px; padding-top: 72px; }

  .adm-stats-grid-main { grid-template-columns: repeat(2, 1fr); }
  .adm-stats-grid-secondary { grid-template-columns: repeat(3, 1fr); }
  .adm-dash-bottom-grid { grid-template-columns: 1fr; }
  .adm-dash-triple-grid { grid-template-columns: 1fr 1fr; }
  .adm-dash-triple-grid .adm-card:last-child { grid-column: 1 / -1; }

  .adm-header { flex-direction: column; gap: 12px; }
  .adm-period-bar { flex-wrap: wrap; }
  .adm-status-bar { flex-wrap: wrap; gap: 12px; }
  .adm-users-toolbar { flex-direction: column; align-items: stretch; }
  .adm-users-toolbar-right { justify-content: space-between; }
  .adm-search-box, .adm-search-wrap { min-width: 0; flex: 1; }
  .adm-user-actions { flex-wrap: wrap; }
  .adm-drawer { width: 360px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Mobile (768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .adm-main { padding: 16px; padding-top: 68px; }

  .adm-stats-grid-main { grid-template-columns: 1fr 1fr; gap: 10px; }
  .adm-stats-grid-main .adm-stat-card--lg:last-child {
    grid-column: 1 / -1;
  }
  .adm-stat-card--lg .adm-stat-value { font-size: 22px; }
  .adm-stat-card--lg { padding: 18px; }

  .adm-stats-grid-secondary { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .adm-stat-card--sm .adm-stat-value { font-size: 18px; }

  .adm-cfg-grid { grid-template-columns: 1fr; }
  .adm-welcome h2 { font-size: 18px; }
  .adm-welcome p { font-size: 12px; }

  .adm-period-btn { padding: 6px 10px; font-size: 11px; }
  .adm-period-custom { flex-wrap: wrap; }

  .adm-card { padding: 16px; }
  .adm-table thead th { padding: 10px 12px; font-size: 10px; }
  .adm-table tbody td { padding: 10px 12px; font-size: 12px; }

  .adm-modal { padding: 20px; width: 94%; }
  .adm-dash-triple-grid { grid-template-columns: 1fr; }
  .adm-dash-triple-grid .adm-card:last-child { grid-column: auto; }
  .adm-mini-chart { height: 140px; gap: 4px; }
  .adm-chart-value { font-size: 8px; }
  .adm-txn-feed { max-height: 260px; }
  .adm-status-bar { padding: 8px 12px; gap: 10px; }
  .adm-status-item { font-size: 11px; }
  .adm-filter-tabs { gap: 3px; }
  .adm-filter-tab { padding: 5px 10px; font-size: 11px; }
  .adm-search-box, .adm-search-wrap { min-width: 0; }
  .adm-user-avatar { width: 32px; height: 32px; font-size: 11px; }
  .adm-icon-btn { width: 28px; height: 28px; }
  .adm-icon-btn svg { width: 13px; height: 13px; }
  .adm-drawer { width: 100%; max-width: 100vw; }
  .adm-drawer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Small mobile (480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .adm-main { padding: 12px; padding-top: 64px; }

  .adm-stats-grid-main { grid-template-columns: 1fr; gap: 8px; }
  .adm-stats-grid-main .adm-stat-card--lg:last-child { grid-column: auto; }
  .adm-stat-card--lg .adm-stat-value { font-size: 20px; }
  .adm-stat-card--lg { padding: 16px; }

  .adm-stats-grid-secondary { grid-template-columns: 1fr 1fr; gap: 8px; }
  .adm-stat-card--sm { padding: 14px; }
  .adm-stat-card--sm .adm-stat-value { font-size: 16px; }
  .adm-stat-card--sm .adm-stat-icon { width: 30px; height: 30px; margin-bottom: 8px; }
  .adm-stat-card--sm .adm-stat-icon svg { width: 14px; height: 14px; }

  .adm-stat-period-tag { display: none; }

  .adm-header h1 { font-size: 16px; }
  .adm-period-bar { gap: 3px; }
  .adm-period-btn { padding: 5px 8px; font-size: 10px; }

  .adm-welcome { margin-bottom: 20px; }
  .adm-welcome h2 { font-size: 16px; }

  .adm-btn { padding: 7px 12px; font-size: 12px; }
  .adm-btn-sm { padding: 5px 10px; font-size: 11px; }

  .adm-card { padding: 14px; border-radius: 10px; }
  .adm-card-title { font-size: 12px; }
  .adm-mini-chart { height: 120px; gap: 3px; }
  .adm-chart-value { display: none; }
  .adm-chart-bar { width: 80%; }
  .adm-txn-item { padding: 8px; gap: 8px; }
  .adm-txn-name { font-size: 12px; }
  .adm-txn-amount { font-size: 12px; }
  .adm-txn-icon { width: 28px; height: 28px; }
  .adm-txn-icon svg { width: 14px; height: 14px; }
  .adm-status-bar { flex-direction: column; align-items: flex-start; gap: 6px; }
  .adm-user-name { font-size: 12px; }
  .adm-user-phone { font-size: 10px; }
  .adm-user-avatar { width: 28px; height: 28px; border-radius: 8px; font-size: 10px; }
  .adm-user-cell { gap: 8px; }
  .adm-icon-btn { width: 26px; height: 26px; }
  .adm-icon-btn svg { width: 12px; height: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   TOAST SVG ICONS
   ═══════════════════════════════════════════════════════════ */
.toast-icon { display:flex; align-items:center; flex-shrink:0; }
.toast-icon svg { width:16px; height:16px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Tabs (filter tabs, val-pills, cfg-grid)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .adm-cfg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .adm-filter-tabs { gap: 0; flex-wrap: wrap; }
  .adm-filter-tab { padding: 7px 14px; font-size: 11px; }
  .adm-val-pill { font-size: 11px; padding: 3px 8px; }
  .adm-cfg-grid { grid-template-columns: 1fr; }
  .adm-cfg-card { padding: 16px; }
  .adm-header { flex-wrap: wrap; gap: 10px; }
  .adm-header-actions { flex-wrap: wrap; gap: 6px; }
  .adm-table th, .adm-table td { padding: 8px 10px; font-size: 12px; }
  .adm-badge { font-size: 10px; padding: 2px 8px; }
}
@media (max-width: 480px) {
  .adm-filter-tabs { border-radius: 8px; }
  .adm-filter-tab { padding: 6px 10px; font-size: 10px; flex: 1; text-align: center; }
  .adm-cfg-card-row { flex-direction: column; }
  .adm-cfg-card-row .adm-btn { width: 100%; }
}

.lnd-test-name  { font-size: 14px; font-weight: 700; color: #fff; }
.lnd-test-since { font-size: 12px; color: rgba(255,255,255,0.40); margin-top: 2px; }

/* ── CTA section ── */
.lnd-cta-sec {
  padding: 90px 24px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2a0066 0%, #7b1fa2 50%, #4A0020 100%);
}
.lnd-cta-sec h2 {
  position: relative; z-index: 1;
  font-size: clamp(28px, 5vw, 48px); font-weight: 800; color: #fff; margin-bottom: 16px;
}
.lnd-cta-sec p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.70); font-size: 17px; line-height: 1.65;
  max-width: 440px; margin: 0 auto 36px;
}
.lnd-cta-sec .lnd-cta-btn { position: relative; z-index: 1; }

/* ── Footer ── */
.lnd-footer {
  background: #050010; border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px; text-align: center;
}
.lnd-footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 22px; font-weight: 800; color: var(--pink-light); margin-bottom: 20px;
}
.lnd-footer-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.lnd-footer-links a { font-size: 14px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.lnd-footer-links a:hover { color: var(--pink-light); }
.lnd-footer-warning {
  max-width: 500px; margin: 0 auto 20px; font-size: 12px;
  color: rgba(255,255,255,0.30); line-height: 1.55;
  padding: 12px 16px; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px;
}
.lnd-footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ── Responsive ── */
@media (max-width: 780px) {
  .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 26px; }
  .lnd-sub { margin-left: auto; margin-right: auto; }
  .lnd-actions { justify-content: center; }
  .lnd-trust { justify-content: center; }
  .lnd-title em { display: inline; }
  .lnd-game-bg { opacity: 0.3; }
}
