/* ─── IMPORTAÇÃO DE FONTES (halloweenhelix style) ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

/* ─── 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: 'Montserrat', sans-serif;
  background: var(--color-background);
  min-height: 100vh; width: 100%;
  overflow-x: hidden;
  color: var(--color-text);
  -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 — Tema HalloweenHelix ───────────────────────────────────── */
:root {
  --color-primary:        #FF1414;
  --color-secondary:      #E60000;
  --color-background:     #0E061E;
  --color-background-2:   #240000;
  --color-header:         #000000;
  --color-text:           #FFFFFF;
  --color-primary-rgb:    255,20,20;
  --color-secondary-rgb:  230,0,0;

  /* alias antigos mantidos para compatibilidade */
  --pink:        #FF6B9D;
  --pink-light:  #FF8CC8;
  --pink-dark:   #E0558A;
  --dark:        #0E061E;
  --dark-mid:    #240000;
  --green:       #FF7A00;
  --green-dark:  #E65C00;
  --red:         #FF1414;
  --blue:        #4D9EFF;
  --orange:      #FF7A00;
  --white:       #FFFFFF;
  --bg:          #0E061E;
  --card-bg:     rgba(22, 7, 40, 0.92);
  --shadow:      0 8px 32px rgba(0,0,0,0.40);
  --shadow-hover:0 16px 48px rgba(255,20,20,0.18);
  --radius:      16px;
  --radius-btn:  50px;
  --radius-sm:   8px;
  --transition:  0.25s ease;
}

/* ─── Pages / Router ────────────────────────────────────────────────────────── */
.page { display: none; width: 100%; max-width: 100%; overflow-x: hidden; }
.page.active { display: block; }

/* Login e Cadastro: página contida em 100vh com scroll interno */
#page-login.active,
#page-cadastro.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--color-background);
}

/* Demais páginas: scroll normal do body */
#page-landing.active,
#page-painel.active,
#page-jogo.active {
  min-height: 100vh;
}

/* ─── 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 pulseStar { 0%{transform:scale(1);opacity:.8} 50%{transform:scale(1.3);opacity:1} 100%{transform:scale(1);opacity:.8} }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.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(14,6,30,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: 4px solid rgba(255,20,20,0.25);
  border-top-color: var(--color-primary);
  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.35);
  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,#00C97A,#00ea8c); }
.toast.error   { background: linear-gradient(135deg,#FF1414,#E60000); }
.toast.info    { background: linear-gradient(135deg,#4D9EFF,#1a6fd4); }
.toast.warning { background: linear-gradient(135deg,#FF7A00,#FFB300); }

/* ─── 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(90deg, var(--color-primary), #FF5500);
  color: #fff; box-shadow: 0 4px 20px rgba(255,20,20,0.4);
}
.btn-primary:hover:not(:disabled) {
  box-shadow: 0 8px 28px rgba(255,20,20,0.55);
  transform: translateY(-1px);
}
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, #00ea8c 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: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover:not(:disabled) { background: var(--color-primary); color: #fff; }
.btn-dark { background: #000; 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);
  border: 1px solid rgba(255,20,20,0.15);
  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: #fff; margin-bottom: 6px; }
.card-sub   { font-size: 14px; color: rgba(255,206,166,0.7); }

/* ─── Forms ─────────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: #FFD6B0; }
.form-input {
  padding: 13px 16px; border-radius: 14px;
  border: 1px solid rgba(255,136,0,0.18); background: rgba(255,255,255,0.04);
  font-size: 15px; color: #fff; transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-input:focus  { border-color: rgba(255,145,0,0.55); box-shadow: 0 0 0 4px rgba(255,123,0,0.08); background: rgba(255,255,255,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(255,180,100,0.8);
}

/* ─── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,122,0,0.22);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  padding: 12px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.navbar-brand {
  font-size: 22px; font-weight: 900; color: var(--color-primary); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; letter-spacing: 1px;
}
.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: 700;
  color: rgba(255,255,255,0.85); transition: var(--transition); cursor: pointer; border: none; background: none;
}
.navbar-link:hover { background: rgba(255,20,20,0.12); color: #fff; }
.balance-badge {
  background: linear-gradient(135deg, #FF7A00, #FFB300);
  color: #200800; padding: 8px 16px; border-radius: 50px;
  font-weight: 900; font-size: 15px; min-width: 110px; text-align: center;
}
.avatar-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #7a0000);
  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: rgba(22,7,40,0.9); border-radius: var(--radius);
  border: 1px solid rgba(255,20,20,0.15);
  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: #FF9A1F; line-height: 1.1; }
.stat-card .stat-label { font-size: 12px; color: rgba(255,206,166,0.6); 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(255,20,20,0.12); color: #FF6060;
}
.pill-green  { background: rgba(0,201,122,0.12); color: var(--green); }
.pill-blue   { background: rgba(77,158,255,0.12); color: #4D9EFF; }
.pill-orange { background: rgba(255,122,0,0.12); color: #FF7A00; }

/* ─── 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 rgba(255,122,0,0.4);
  background: transparent; color: #FF9A1F; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--transition);
}
.quick-btn:hover, .quick-btn.active {
  background: linear-gradient(90deg,#FF7A00,#FFB300); color: #200800; border-color: transparent;
}

/* ─── Progress bar ───────────────────────────────────────────────────────────── */
.progress-bar { background: rgba(255,20,20,0.15); 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: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.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.15); }
.tx-icon.perda    { background: rgba(255,20,20,0.15); }
.tx-icon.deposito { background: rgba(77,158,255,0.15); }
.tx-icon.saque    { background: rgba(255,122,0,0.15); }
.tx-icon.bonus    { background: rgba(255,179,0,0.15); }
.tx-info { flex: 1; }
.tx-desc { font-size: 14px; font-weight: 600; color: #fff; }
.tx-date { font-size: 12px; color: rgba(255,206,166,0.55); }
.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(8,0,12,0.82);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: linear-gradient(135deg, #2A0D22 0%, #140711 55%, #0B050A 100%);
  border: 1px solid rgba(255,138,0,0.24);
  border-radius: 22px; padding: 32px;
  width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto;
  animation: popIn 0.3s ease both;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.52), 0 0 22px rgba(255,120,0,0.10);
}
.modal-title {
  font-size: 20px; font-weight: 900; color: #FFF4E6;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
  text-transform: uppercase;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,146,0,0.08); border: 1px solid rgba(255,146,0,0.22); color: #FFD8B0;
  border-radius: 50%; width: 34px; height: 34px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,146,0,0.2); color: #FFB55A; }

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

/* ─── Buttons submit modal ──────────────────────────────────────────────────── */
.btn-submit {
  width: 100%; padding: 15px; border-radius: 50px; border: none;
  background: linear-gradient(90deg, #FF7A00 0%, #FFB300 100%);
  color: #2D1200; font-weight: 900; font-size: 1.1rem;
  cursor: pointer; margin-top: 10px;
  box-shadow: 0 10px 28px rgba(255,123,0,0.30);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(255,123,0,0.42); }
.btn-submit:active { transform: scale(0.98); }

/* ─── Stats pills ───────────────────────────────────────────────────────────── */
.stats-bar {
  background: #000000; width: 100%; padding: 40px 20px;
  display: flex; justify-content: center;
  gap: clamp(24px, 6vw, 80px); flex-wrap: wrap;
}
.sbar-item { text-align: center; }
.sbar-value { font-size: 2rem; font-weight: 900; color: #39FF14; }
.sbar-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ─── 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(255,206,166,0.55); }
.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(255,122,0,0.15); 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.15); color: var(--green); }
.badge-red    { background: rgba(255,20,20,0.15); color: var(--red); }
.badge-blue   { background: rgba(77,158,255,0.15); color: #4D9EFF; }
.badge-orange { background: rgba(255,122,0,0.15); color: #FF7A00; }
.badge-purple { background: rgba(160,80,255,0.15); color: #B06AFF; }

/* ─── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0E061E; }
::-webkit-scrollbar-thumb { background: rgba(255,20,20,0.4); border-radius: 50px; }

/* ═══════════════════════════════════════════════════════════════════════════════
   AUTH PAGES (Login / Cadastro)
   ═══════════════════════════════════════════════════════════════════════════════ */
#page-login.active {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; width: 100%; overflow-x: hidden;
  padding: 24px 16px;
  background:
    linear-gradient(160deg, rgba(20,0,0,0.90) 0%, rgba(80,0,0,0.65) 55%, rgba(14,6,30,0.95) 100%),
    var(--auth-login-bg-image, url('../images/game-bg.png')) center/cover no-repeat scroll;
}
#page-cadastro.active {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; width: 100%; overflow-x: hidden;
  padding: 24px 16px;
  background:
    linear-gradient(160deg, rgba(20,0,0,0.90) 0%, rgba(80,0,0,0.65) 55%, rgba(14,6,30,0.95) 100%),
    var(--auth-cadastro-bg-image, var(--auth-login-bg-image, url('../images/game-bg.png'))) center/cover no-repeat scroll;
}

/* Auth cards */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: var(--color-background);
}
.auth-card {
  background: linear-gradient(135deg, #2A0D22 0%, #140711 55%, #0B050A 100%);
  border: 1px solid rgba(255,138,0,0.24);
  border-radius: 22px; padding: 40px 36px;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.52), 0 0 22px rgba(255,120,0,0.10);
  animation: popIn 0.35s ease both;
}
.auth-logo {
  text-align: center; margin-bottom: 28px;
  font-size: 28px; font-weight: 900; color: var(--color-primary);
  text-transform: uppercase; letter-spacing: 2px;
}
.auth-title  { font-size: 22px; font-weight: 900; color: #FFF4E6; margin-bottom: 6px; text-align: center; text-transform: uppercase; }
.auth-sub    { font-size: 14px; color: rgba(255,214,176,0.70); text-align: center; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: rgba(255,214,176,0.68); }
.auth-footer a { color: #FF9A1F; font-weight: 700; cursor: pointer; }

/* lgn-wrap / reg-wrap herdados do login/cadastro.js */
#page-login.active .lgn-wrap,
#page-cadastro.active .reg-wrap {
  background: linear-gradient(135deg, rgba(42,13,34,0.94) 0%, rgba(11,5,10,0.96) 100%) !important;
  border-color: rgba(255,138,0,0.24) !important;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   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, #1a0008 0%, #2a0000 100%);
  border: 1px solid rgba(255,20,20,0.2);
  border-radius: var(--radius); padding: 28px;
  box-shadow: 0 8px 32px rgba(255,20,20,0.08);
}
.game-card-title { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 6px; text-transform: uppercase; }
.game-card-sub   { font-size: 14px; color: rgba(255,206,166,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.08); color: rgba(255,206,166,0.8); 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: rgba(255,206,166,0.8); pointer-events: none;
}
.input-money { padding-left: 44px !important; }
.meta-preview {
  background: rgba(255,255,255,0.06); border-radius: 10px;
  border: 1px solid rgba(255,122,0,0.15);
  padding: 12px 16px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.meta-preview-label { color: rgba(255,206,166,0.7); font-size: 14px; }
.meta-preview-value { color: #FF9A1F; font-weight: 900; font-size: 18px; }
.users-playing {
  text-align: center; font-size: 13px; color: rgba(255,206,166,0.45); 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(0,0,0,0.88); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,20,20,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(255,206,166,0.55); font-weight: 600; text-transform: uppercase; }
.hud-value { font-size: 18px; font-weight: 900; color: #fff; }
.hud-value.green { color: var(--green); }
.hud-value.pink  { color: #FF9A1F; }
.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: linear-gradient(135deg, #2A0D22 0%, #0B050A 100%);
  border: 1px solid rgba(255,138,0,0.24);
  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: 900; margin-bottom: 8px; color: #FFF4E6; }
.resultado-valor { font-size: 36px; font-weight: 900; margin-bottom: 20px; }
.resultado-valor.ganhou { color: var(--green); }
.resultado-valor.perdeu { color: var(--red); }

/* ═══════════════════════════════════════════════════════════════════════════════
   LANDING PAGE — Tema HalloweenHelix
   ═══════════════════════════════════════════════════════════════════════════════ */

#page-landing { background: var(--color-background); }

/* ── FAKE WINNERS (notificações flutuantes) ── */
.fake-winners-container {
  position: fixed; top: 85px; right: 20px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
.fw-card {
  background: linear-gradient(135deg, rgba(34,9,24,0.95) 0%, rgba(16,7,20,0.95) 100%);
  border: 1px solid rgba(255,136,0,0.38); border-radius: 12px;
  padding: 12px 15px; display: flex; align-items: center; gap: 12px;
  width: 280px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5), 0 0 18px rgba(255,106,0,0.12);
  backdrop-filter: blur(8px);
  transform: translateX(120%); transition: transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275), opacity 0.5s;
  opacity: 0;
}
.fw-card.show { transform: translateX(0); opacity: 1; }
.fw-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-weight: bold; font-size: 1.2rem; color: white; flex-shrink: 0;
  border: 2px solid rgba(255,170,0,0.38);
  box-shadow: 0 0 14px rgba(255,123,0,0.18);
}
.fw-info { display: flex; flex-direction: column; flex: 1; }
.fw-name { font-size: 0.85rem; color: rgba(255,236,214,0.82); margin-bottom: 2px; }
.fw-name span { font-weight: bold; color: #FFE8D0; }
.fw-amount { font-size: 1.1rem; font-weight: 900; color: #FF9A1F; text-shadow: 0 0 12px rgba(255,123,0,0.22); }
.fw-time { font-size: 0.7rem; color: rgba(255,206,166,0.58); text-align: right; margin-top: -15px; }
.fw-star { color: #FFB300; font-size: 0.8rem; text-shadow: 0 0 10px rgba(255,162,0,0.35); animation: pulseStar 1s infinite; }

/* ── Navbar / Header ── */
.lnd-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.98) 0%, rgba(8,0,12,0.98) 100%);
  border-bottom: 1px solid rgba(255,122,0,0.28);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35), 0 0 22px rgba(255,122,0,0.08);
  padding: 15px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lnd-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 900; color: var(--color-primary);
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
}
.lnd-nav-brand img { height: 48px; width: auto; max-width: 280px; }
.lnd-nav-menu { display: flex; align-items: center; gap: 8px; }
.lnd-nav-link {
  padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 700;
  color: rgba(255,255,255,0.85); background: transparent; border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lnd-nav-link:hover { background: rgba(255,20,20,0.12); color: #fff; }
.lnd-cta-sm {
  padding: 9px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 900;
  background: var(--color-primary); color: #003300;
  border: none; cursor: pointer; text-transform: uppercase;
  box-shadow: 0 0 15px rgba(57,255,20,0.35); transition: transform 0.2s, box-shadow 0.2s;
}
.lnd-cta-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(57,255,20,0.45); }

/* ── Hero Section ── */
.lnd-hero {
  --lnd-hero-bg-image: url('../images/game-bg.png');
  position: relative; overflow: hidden;
  min-height: auto; display: flex; align-items: flex-start;
  padding-top: 95px;
  padding-left: 16px; padding-right: 16px;
  padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(circle at center, rgba(60,0,28,0.9) 0%, rgba(23,0,20,0.88) 55%, rgba(9,0,11,0.95) 100%),
    var(--lnd-hero-bg-image) center/cover no-repeat;
}
.lnd-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--lnd-hero-bg-image, url('../images/game-bg.png')) center center / cover no-repeat;
  z-index: 0; pointer-events: none; opacity: 0.18; filter: blur(8px); transform: scale(1.04);
}
.lnd-witches { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.lnd-witch {
  position: absolute; left: -150px;
  animation: lnd-witch-fly linear infinite;
  opacity: 0.9;
}
.lnd-witch.reverse {
  left: auto; right: -150px;
  transform: scaleX(-1);
  animation: lnd-witch-fly-reverse linear infinite;
}
@keyframes lnd-witch-fly {
  0% { transform: translateX(0) translateY(0) rotate(-10deg); }
  25% { transform: translateX(35vw) translateY(-30px) rotate(5deg); }
  50% { transform: translateX(70vw) translateY(20px) rotate(-5deg); }
  100% { transform: translateX(120vw) translateY(-10px) rotate(10deg); }
}
@keyframes lnd-witch-fly-reverse {
  0% { transform: scaleX(-1) translateX(0) translateY(0) rotate(-10deg); }
  25% { transform: scaleX(-1) translateX(35vw) translateY(30px) rotate(5deg); }
  50% { transform: scaleX(-1) translateX(70vw) translateY(-20px) rotate(-5deg); }
  100% { transform: scaleX(-1) translateX(120vw) translateY(10px) rotate(10deg); }
}
.lnd-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: flex-start; justify-content: center;
}
.lnd-hero-left {
  max-width: 720px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* 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(0,255,136,0.35);
  backdrop-filter: blur(10px); border-radius: 50px;
  padding: 7px 18px; margin: 0 auto 28px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.92);
}
.lnd-live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #00FF88; flex-shrink: 0; position: relative;
}
.lnd-live-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid #00FF88; animation: lnd-ping 1.6s ease-out infinite;
}

/* Título Hero */
.lnd-title {
  display: flex; flex-direction: column; align-items: center; gap: 0.02em;
  font-size: clamp(40px, 8vw, 78px); font-weight: 900; line-height: 1.0;
  margin: 0 0 22px; letter-spacing: 0.04em; text-transform: uppercase;
}
.lnd-title-line { display: block; width: 100%; }
.lnd-title-line--white { color: #fff; }
.lnd-title-line--gold  { color: #FF7A00; text-shadow: 0 0 40px rgba(255,122,0,0.3); }
.lnd-title-line--neon  { color: #FF1414; text-shadow: 0 0 48px rgba(255,20,20,0.4); }

/* Subtítulo */
.lnd-sub {
  font-size: clamp(15px, 2.2vw, 18px); color: rgba(255,255,255,0.78);
  line-height: 1.65; margin: 0 auto 32px; max-width: 34em;
}
.lnd-sub-hl { color: #FF9A1F; font-weight: 700; }
.lnd-sub strong { color: #FF9A1F; font-weight: 700; }

/* Actions */
.lnd-actions {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; width: 100%; margin-bottom: 32px;
}
@keyframes lnd-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,20,20,0.45); }
  50% { box-shadow: 0 8px 44px rgba(255,20,20,0.75), 0 0 80px rgba(255,20,20,0.22); }
}
.lnd-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FF1414; color: #FFF;
  font-weight: 900; font-size: 1.1rem;
  padding: 18px 40px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 0 30px rgba(255,20,20,0.45);
  transition: transform 0.2s; text-transform: uppercase;
}
.lnd-cta-btn:hover { transform: scale(1.05); box-shadow: 0 0 40px rgba(255,20,20,0.6); }
.lnd-cta-btn:active { transform: scale(0.97); }
.lnd-ghost-btn {
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 600;
  transition: color 0.2s; padding: 0;
}
.lnd-ghost-btn:hover { color: #fff; }

/* Trust pills */
.lnd-trust {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 100%; max-width: 380px;
}
.lnd-trust-item {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; box-sizing: border-box;
  background: rgba(0,0,0,0.22); border: 1px solid rgba(255,122,0,0.4);
  border-radius: 50px; padding: 10px 18px;
  font-size: 13px; font-weight: 600; color: #FF7A00;
}
.lnd-trust-item svg { flex-shrink: 0; stroke: #FF7A00; }

/* ── AO VIVO (marquee) ── */
@keyframes lnd-marquee-live {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}
@keyframes lnd-aovivo-dot {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.25;transform:scale(0.72)}
}
.lnd-aovivo {
  width: 100%; background: #1a0505;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lnd-aovivo-inner {
  display: flex; align-items: center;
  min-height: 120px; width: 100%; max-width: 100%; overflow: hidden;
}
.lnd-aovivo-badge {
  height: 64px; min-width: 96px;
  background: #2a0a0a; border-radius: 0 16px 16px 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  margin-left: 8px; margin-right: 16px; flex-shrink: 0;
}
.lnd-aovivo-badge-row { display: flex; align-items: center; gap: 4px; }
.lnd-aovivo-ao, .lnd-aovivo-vivo { font-weight: 900; font-size: 14px; color: #ef4444; line-height: 1.1; }
.lnd-aovivo-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: lnd-aovivo-dot 1s infinite; }
.lnd-aovivo-marquee { flex: 1; min-width: 0; overflow: hidden; display: flex; align-items: center; }
.lnd-aovivo-track {
  display: flex; width: max-content; gap: 16px; align-items: center;
  padding-right: 16px; animation: lnd-marquee-live 22s linear infinite;
}
.lnd-aovivo-card {
  height: 64px; min-width: 170px; box-sizing: border-box;
  background: #1c0707; border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px; display: flex; align-items: center;
  padding: 0 12px; gap: 12px; flex-shrink: 0;
}
.lnd-aovivo-svg { flex-shrink: 0; display: block; }
.lnd-aovivo-card-text { min-width: 0; text-align: left; }
.lnd-aovivo-name { font-size: 12px; color: #FF9A1F; font-weight: 600; line-height: 1.2; }
.lnd-aovivo-won { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.lnd-aovivo-amt { font-size: 14px; font-weight: 900; color: #FF9A1F; line-height: 1.2; }

@media (max-width: 480px) {
  .lnd-aovivo-inner { min-height: 100px; }
  .lnd-aovivo-badge { min-width: 72px; margin-right: 10px; height: 56px; }
  .lnd-aovivo-card { min-width: 150px; height: 56px; }
}
@media (prefers-reduced-motion: reduce) { .lnd-aovivo-track { animation: none; } }

/* ── Como funciona ── */
.lnd-how {
  --lnd-how-img-zoom: 1.12;
  background: #0A0202; 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: 900; color: #fff; margin-bottom: 10px; text-transform: uppercase; }
.lnd-section-head p { font-size: 16px; color: rgba(255,214,176,0.6); }
.lnd-section-head.lnd-how-heading h2.lnd-how-h2 {
  display: inline-flex; flex-direction: row; flex-wrap: nowrap;
  align-items: center; justify-content: center; gap: 0.35em;
  box-sizing: border-box; margin: 0 auto 14px !important; width: fit-content; max-width: 100%;
  font-size: clamp(22px,4.5vw,42px); font-weight: 900; color: #fff;
  letter-spacing: 0.04em; line-height: 1.15;
}
.lnd-how-h2 .lnd-how-h2-text { white-space: nowrap; }
.lnd-how-h2 .lnd-how-gamepad {
  width: clamp(22px,4.5vw,42px); height: clamp(22px,4.5vw,42px);
  max-width: 42px; max-height: 42px; min-width: 0; flex: 0 0 auto;
  display: block; align-self: center; transform: translateY(2px);
  filter: drop-shadow(0 0 5px rgba(57,255,20,0.4));
}
.lnd-how-heading .lnd-how-sub { font-size: clamp(15px,2.5vw,17px); color: rgba(255,214,176,0.7); max-width: 520px; margin: 0 auto; line-height: 1.55; }
.lnd-how .lnd-container { max-width: 1240px; }
.lnd-how-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,260px),1fr));
  gap: clamp(18px,2.5vw,28px);
}
@media (min-width: 1180px) { .lnd-how-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.lnd-how-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px); border-radius: 18px; padding: 0 !important; margin: 0;
  overflow: hidden; text-align: left; transition: transform 0.3s ease, border-color 0.3s ease; min-width: 0;
}
.lnd-how-card:hover { transform: translateY(-7px); border-color: rgba(57,255,20,0.45); }
.lnd-how-media {
  position: relative; flex: 0 0 auto; align-self: stretch; width: 100%;
  min-width: 0; margin: 0; padding: 0 !important; aspect-ratio: 16/9; overflow: hidden; background: #0a0a0a;
}
.lnd-how-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none !important;
  margin: 0; object-fit: cover; object-position: center; display: block;
  transform: scale(var(--lnd-how-img-zoom)); transform-origin: center center;
}
.lnd-how-badge {
  z-index: 2; position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: #FF7A00; color: #FFF;
  font-weight: 900; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(255,122,0,0.40);
}
.lnd-how-step-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; margin-right: 8px; border-radius: 50%;
  background: #FF7A00; color: #FFF; font-weight: 900; font-size: 14px;
  line-height: 1; vertical-align: middle; flex-shrink: 0;
}
.lnd-how-copy { padding: 20px 20px 24px; text-align: left; }
.lnd-how-card h3 {
  font-size: clamp(15px,2.2vw,17px); font-weight: 700; color: #fff;
  margin: 0 0 12px; line-height: 1.35; display: flex; align-items: center; flex-wrap: wrap; gap: 0 4px;
}
.lnd-how-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0; }

/* ── Depoimentos ── */
.lnd-test {
  background: radial-gradient(circle at top center, rgba(120,40,88,0.18) 0%, transparent 36%),
              linear-gradient(180deg, #100014 0%, #07000B 100%);
  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: #1A0B1F; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px; padding: 28px; transition: transform 0.3s;
}
.lnd-test-card:hover { transform: translateY(-5px); border-color: rgba(255,122,0,0.2); }
.lnd-test-stars { color: #FFD700; font-size: 18px; margin-bottom: 14px; letter-spacing: 3px; }
.lnd-test-text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.lnd-test-author { display: flex; align-items: center; gap: 12px; }
.lnd-test-avatar { flex-shrink: 0; display: flex; align-items: center; justify-content: center; line-height: 0; }
.lnd-test-avatar .lnd-aovivo-svg { display: block; }
.lnd-test-name  { font-size: 14px; font-weight: 700; color: #fff; }
.lnd-test-since { font-size: 12px; color: rgba(255,206,166,0.45); margin-top: 2px; }

/* ── Footer ── */
.lnd-footer {
  background: #000; border-top: 1px solid rgba(255,122,0,0.18);
  padding: 48px 24px; text-align: center;
}
.lnd-footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 22px; font-weight: 900; color: var(--color-primary); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.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: #FF9A1F; }
.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); }

/* ── Bottom Nav (Mobile) ── */
@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: rgba(0,0,0,0.96); border-top: 1px solid rgba(255,122,0,0.18);
  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(255,154,31,0.72); font-size: 10px; font-weight: 500;
  font-family: inherit; transition: color 0.2s; padding: 0;
}
.lnd-nav-item svg { width: 22px; height: 22px; stroke: currentColor; opacity: 1; }
.lnd-nav-item:hover { color: rgba(255,194,71,0.95); }
.lnd-nav-active { color: #FF9A1F; }
.lnd-nav-active svg { filter: drop-shadow(0 0 8px rgba(255,154,31,0.6)); }
.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: radial-gradient(circle at 30% 30%, var(--color-primary), #7a0000);
  border: 4px solid #000;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 16px rgba(255,20,20,0.5);
  cursor: pointer; transition: transform 0.2s;
}
.lnd-nav-center:active { transform: scale(0.95); }
.lnd-nav-center svg { width: 26px; height: 26px; stroke: currentColor; fill: none; opacity: 1; }

/* ── Responsive ── */
@media (max-width: 780px) {
  .lnd-hero-inner { flex-direction: column; }
  .lnd-hero-left { max-width: 100%; }
  .lnd-live-badge { margin-bottom: 8px; padding: 5px 12px; font-size: 11px; gap: 6px; }
  .lnd-title { font-size: clamp(24px,6.2vw,40px); margin-bottom: 8px; line-height: 1.03; }
  .lnd-sub { font-size: 13px; line-height: 1.4; margin-bottom: 12px; }
  .lnd-actions { gap: 8px; margin-bottom: 12px; }
  .lnd-cta-btn { padding: 12px 24px; font-size: 14px; width: 100%; justify-content: center; }
  .lnd-ghost-btn { font-size: 13px; }
  .lnd-trust { gap: 5px; max-width: 100%; }
  .lnd-trust-item { padding: 7px 12px; font-size: 11px; }
  .lnd-nav { padding: 10px 12px; }
  .lnd-nav-brand { font-size: 1rem; }
  .fake-winners-container { top: 200px; left: 58%; right: auto; width: calc(100vw - 24px); align-items: center; transform: translateX(-50%); }
  .fw-card { width: min(220px, calc(100vw - 40px)); padding: 8px 10px; gap: 8px; border-radius: 10px; }
}

@media (max-width: 780px) {
  #page-landing.active .lnd-hero {
    min-height: 0 !important; align-items: flex-start !important;
    padding: 80px 14px calc(52px + env(safe-area-inset-bottom,0px)) !important;
    background-position: center top;
  }
  #page-landing.active .lnd-hero-inner { align-items: flex-start !important; justify-content: flex-start !important; min-height: 0 !important; }
}

@media (min-width: 781px) {
  #page-landing.active .lnd-hero {
    min-height: 100vh !important; min-height: 100dvh !important;
    align-items: center !important; padding: 80px 24px 60px !important;
    background-position: center center;
  }
  #page-landing.active .lnd-hero-inner { align-items: center !important; }
}
