/* ─── 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, #F7E9FF 0%, #E4D1FF 100%);
  min-height: 100vh; width: 100%;
  overflow-x: hidden;
  color: #25123F;
  -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:        #FF4FA3;
  --pink-light:  #FF7AC3;
  --pink-dark:   #E7358C;
  --dark:        #24113F;
  --dark-mid:    #34195C;
  --green:       #00C97A;
  --green-dark:  #00A063;
  --red:         #FF4D6D;
  --blue:        #4D9EFF;
  --orange:      #FF8C42;
  --white:       #FFFFFF;
  --bg:          linear-gradient(135deg, #F7E9FF 0%, #E4D1FF 100%);
  --card-bg:     rgba(255,255,255,0.92);
  --shadow:      0 8px 32px rgba(72,35,120,0.12);
  --shadow-hover:0 16px 48px rgba(72,35,120,0.20);
  --radius:      16px;
  --radius-btn:  50px;
  --radius-sm:   8px;
  --transition:  0.25s ease;
}

/* ─── Pages / Router ────────────────────────────────────────────────────────── */
#app { overflow-x: hidden; width: 100%; }
.page { display: none; min-height: 100vh; width: 100%; max-width: 100%; overflow-x: hidden; }
.page.active { display: block; }
body:has(#page-landing.active) { background: #120A2A; }
body:has(#page-login.active) { background: #120A2A; }
body:has(#page-cadastro.active) { background: #120A2A; }
body:has(#page-jogo.active) { background: #FFE4EE; }

/* ─── 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,79,163,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,79,163,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: #4A7A5E; }

/* ─── 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 #C9EDD7; 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: #74A88C;
}

/* ─── 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,79,163,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: #E7F8EE; 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: #4A7A5E; 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: #E7F8EE; 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: #C9EDD7; 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(6,40,20,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: #E4F7EC; }
.tx-info { flex: 1; }
.tx-desc { font-size: 14px; font-weight: 600; color: var(--dark); }
.tx-date { font-size: 12px; color: #4A7A5E; }
.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(6,40,20,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: #E7F8EE; 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: #E7F8EE; 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, #F7E9FF 0%, #E4D1FF 60%, #FF7AC3 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,79,163,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(6,40,20,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: #4A7A5E; 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: #2E5A40; line-height: 1.6; margin-bottom: 14px; }
.test-name  { font-size: 14px; font-weight: 700; color: var(--dark); }
.test-sub   { font-size: 12px; color: #4A7A5E; }

/* ─── 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, #E8F5E9 0%, #A5D6A7 100%);
}
.auth-card {
  background: #fff; border-radius: var(--radius); padding: 40px 36px;
  width: 100%; max-width: 420px; box-shadow: 0 16px 48px rgba(6,40,20,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: #4A7A5E; text-align: center; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: #4A7A5E; }
.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: #04120A; }
.jogo-hud {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(4,18,10,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: #4A7A5E; }
.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: #C9EDD7; 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: #E4F7EC; color: #B07A00; }

/* ─── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,79,163,0.3); border-radius: 50px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,79,163,0.5); }
html { scrollbar-color: rgba(255,79,163,0.3) transparent; }

/* ═══════════════════════════════════════════════════════════════════════════════
   LANDING PAGE — Premium dark theme
   ═══════════════════════════════════════════════════════════════════════════════ */

#page-landing { background: #120A2A; color: #fff; overflow-x: hidden; }

/* ── Brand logo image (responsive) ── */
.brand-logo-img {
  height: 40px; max-width: 180px; object-fit: contain; flex-shrink: 0;
}
.brand-logo-img-mobile {
  display: none !important;
  height: 32px; max-width: 140px; object-fit: contain; flex-shrink: 0;
}
.lnd-footer-brand .brand-logo-img { height: 28px; max-width: 140px; }
.lnd-footer-brand .brand-logo-img-mobile { height: 24px; max-width: 120px; }

/* ── Logo mark ── */
.lnd-logo-mark {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink), #8B5CF6);
  display: flex; align-items: center; justify-content: center; color: #fff;
}

.halloween-brand-logo {
  width: 74px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.lnd-nav-brand > .lnd-logo-mark,
.lnd-nav-brand > .brand-name,
.lnd-footer-brand > .lnd-logo-mark,
.lnd-footer-brand > .brand-name {
  display: none;
}

.halloween-brand-logo--footer {
  width: 88px;
  height: 56px;
}

.halloween-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 26px;
  padding: 8px 16px;
  border: 1px solid rgba(255,117,24,.28);
  border-radius: 999px;
  background: rgba(12,5,18,.62);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.halloween-live-badge > span {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00DA78;
  box-shadow: 0 0 0 6px rgba(0,218,120,.15), 0 0 18px rgba(0,218,120,.7);
  margin-right: 5px;
}

.halloween-live-badge > span::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(0,218,120,.48);
  border-radius: 50%;
  animation: halloween-online-pulse 1.7s ease-out infinite;
}

@keyframes halloween-online-pulse {
  0% { transform: scale(.55); opacity: .95; }
  75%, 100% { transform: scale(1.55); opacity: 0; }
}
.lnd-logo-mark--sm { width: 30px; height: 30px; border-radius: 8px; }
.lnd-logo-mark--sm svg { width: 16px; height: 16px; }

/* ── Navbar ── */
.lnd-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4,20,12,0.82);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lnd-nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: #fff; 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.6); background: transparent; border: none; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lnd-nav-link:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lnd-cta-sm {
  padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 700;
  background: #fff; color: #120A2A; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lnd-cta-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }

/* ── Hero ── */
.lnd-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 100px 24px 80px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255,79,163,.22), transparent 26%),
    repeating-radial-gradient(ellipse at 50% 118%, transparent 0 46px, rgba(139,92,246,.16) 47px 55px, transparent 56px 94px),
    linear-gradient(160deg, #120A2A 0%, #24104A 52%, #0E0822 100%);
}
.lnd-hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 70%);
}
.lnd-hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  will-change: transform; transform: translateZ(0);
}
.lnd-hero-glow--1 { width: 500px; height: 500px; top: -20%; left: -10%; background: radial-gradient(circle, rgba(139,92,246,0.22) 0%, transparent 70%); }
.lnd-hero-glow--2 { width: 400px; height: 400px; bottom: -10%; right: -5%; background: radial-gradient(circle, rgba(255,79,163,0.18) 0%, transparent 70%); }
.lnd-hero-glow--3 { width: 250px; height: 250px; top: 30%; left: 50%; background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, transparent 70%); }

.lnd-hero-inner {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.lnd-hero-left { max-width: 540px; flex: 1; }

/* Live badge */
@keyframes lnd-ping { 0% { transform:scale(1); opacity:1; } 100% { transform:scale(2.2); opacity:0; } }
.lnd-live-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; padding: 7px 18px; margin-bottom: 32px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75);
}
.lnd-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00e882; flex-shrink: 0; position: relative;
}
.lnd-live-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid #00e882; animation: lnd-ping 1.6s ease-out infinite;
}

/* Title */
.lnd-title {
  font-size: clamp(42px, 8vw, 76px); font-weight: 800; line-height: 1.05;
  color: #fff; margin-bottom: 24px; letter-spacing: -2px;
}
.lnd-title-accent {
  background: linear-gradient(135deg, var(--pink), #C084FC);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Subtitle */
.lnd-sub {
  font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.75;
  margin-bottom: 36px; max-width: 430px;
}
.lnd-sub strong { color: #fff; font-weight: 700; }

/* Actions */
.lnd-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 36px; }
.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: 15px;
  padding: 16px 36px; border-radius: 14px; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,201,122,0.45);
  transition: transform 0.2s, box-shadow 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-cta-btn--lg { padding: 18px 44px; font-size: 16px; border-radius: 16px; }
.lnd-ghost-btn {
  background: transparent; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); 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(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px; padding: 7px 14px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6);
}
.lnd-trust-item svg { color: #00e882; }

/* ── Hero right — phone mockup ── */
.lnd-hero-right { position: relative; flex-shrink: 0; }

.lnd-hero-phone {
  width: 260px; height: 440px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px; padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.lnd-phone-notch {
  width: 80px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.12); margin: 4px auto 16px;
}
.lnd-phone-screen { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lnd-phone-header {
  display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0 8px;
}
.lnd-phone-bal {
  font-size: 18px; font-weight: 800; color: #00e882;
}
.lnd-phone-badge-live {
  font-size: 10px; font-weight: 800; color: #fff;
  background: rgba(255,77,109,0.9); padding: 3px 10px; border-radius: 50px;
  letter-spacing: 0.5px;
}
.lnd-phone-game {
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, rgba(255,79,163,0.06) 60%, transparent 80%);
  display: flex; align-items: center; justify-content: center;
  animation: spin-slow 20s linear infinite;
  will-change: transform; transform: translateZ(0);
  margin: 16px 0;
}
@keyframes lnd-result-pop { 0% { transform: scale(0.8); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.lnd-phone-result {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,201,122,0.12); border: 1px solid rgba(0,201,122,0.25);
  border-radius: 14px; padding: 12px 20px;
  animation: lnd-result-pop 0.5s ease 1s both;
}
.lnd-phone-result-icon { font-size: 22px; }
.lnd-phone-result-text { font-size: 22px; font-weight: 800; color: #00e882; }

/* Floating win cards */
.lnd-floating-wins { position: absolute; top: 0; right: -40px; display: flex; flex-direction: column; gap: 12px; }
@keyframes lnd-float-card {
  0%, 100% { transform: translateY(var(--y, 0)); }
  50% { transform: translateY(calc(var(--y, 0) - 12px)); }
}
.lnd-win-card {
  background: rgba(6,23,14,0.85); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px; min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  animation: lnd-float-card 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform; transform: translateZ(0);
}
.lnd-win-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.lnd-win-info { display: flex; flex-direction: column; }
.lnd-win-name { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600; }
.lnd-win-amount { font-size: 16px; font-weight: 800; color: #00e882; line-height: 1.2; }

/* ── Stats bar ── */
.lnd-stats {
  background: rgba(4,20,12,0.95);
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
  display: flex; justify-content: center; align-items: center;
  gap: clamp(20px, 4vw, 60px); flex-wrap: wrap;
}
.lnd-stat { text-align: center; }
.lnd-stat-val { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.lnd-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.lnd-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); }

/* ── Section shared ── */
.lnd-container { max-width: 1100px; margin: 0 auto; }
.lnd-section-head { text-align: center; margin-bottom: 56px; }
.lnd-section-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--pink); text-transform: uppercase; margin-bottom: 14px;
  background: rgba(255,79,163,0.1); border: 1px solid rgba(255,79,163,0.2);
  padding: 5px 16px; border-radius: 50px;
}
.lnd-section-head h2 {
  font-size: clamp(26px, 5vw, 40px); font-weight: 800; color: #fff; margin-bottom: 10px;
}
.lnd-section-head p { font-size: 16px; color: rgba(255,255,255,0.45); }

/* ── How it works ── */
.lnd-how { background: #120A2A; padding: 100px 24px; }
.lnd-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lnd-how-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 36px 28px; text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.lnd-how-card:hover { transform: translateY(-4px); border-color: rgba(255,79,163,0.2); }
.lnd-how-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.lnd-how-icon-wrap--pink   { background: rgba(255,79,163,0.12); color: var(--pink); }
.lnd-how-icon-wrap--purple { background: rgba(139,92,246,0.14); color: #A78BFA; }
.lnd-how-icon-wrap--green  { background: rgba(0,201,122,0.12); color: #00e882; }
.lnd-how-step { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.lnd-how-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.lnd-how-card p  { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── Features ── */
.lnd-features { background: linear-gradient(180deg, #120A2A, #1B1038); padding: 100px 24px; }
.lnd-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lnd-feature-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px; padding: 28px 22px; text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.lnd-feature-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.lnd-feature-icon { font-size: 32px; margin-bottom: 14px; }
.lnd-feature-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.lnd-feature-card p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ── Testimonials ── */
.lnd-test { background: #1B1038; padding: 100px 24px; }
.lnd-test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 960px; margin: 0 auto;
}
.lnd-test-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; padding: 28px; transition: transform 0.25s ease, border-color 0.25s ease;
}
.lnd-test-card:hover { transform: translateY(-4px); border-color: rgba(255,79,163,0.2); }
.lnd-test-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lnd-test-stars { color: #FFB800; font-size: 15px; letter-spacing: 2px; }
.lnd-test-verified { font-size: 11px; font-weight: 700; color: #00e882; }
.lnd-test-text  {
  font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.75;
  margin-bottom: 20px;
}
.lnd-test-author { display: flex; align-items: center; gap: 12px; }
.lnd-test-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff;
}
.lnd-test-name  { font-size: 14px; font-weight: 700; color: #fff; }
.lnd-test-since { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ── FAQ section ── */
.lnd-faq { background: #120A2A; padding: 100px 24px; }
.lnd-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.lnd-faq-item {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; overflow: hidden; transition: border-color 0.25s ease;
}
.lnd-faq-item.open { border-color: rgba(255,79,163,0.2); }
.lnd-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; user-select: none;
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.45;
  background: none; border: none; width: 100%; text-align: left; font-family: inherit;
}
.lnd-faq-q:hover { color: var(--pink-light); }
.lnd-faq-arrow {
  width: 20px; height: 20px; flex-shrink: 0; color: rgba(255,255,255,0.3);
  transition: transform 0.3s ease, color 0.3s ease;
}
.lnd-faq-item.open .lnd-faq-arrow { transform: rotate(180deg); color: var(--pink); }
.lnd-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.lnd-faq-item.open .lnd-faq-a { max-height: 300px; padding: 0 24px 20px; }
.lnd-faq-a p {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75;
}

/* ── Floating support button ── */
.lnd-support-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--pink), #8B5CF6);
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(255,79,163,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lnd-support-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 36px rgba(255,79,163,0.6); }
.lnd-support-fab:active { transform: scale(0.95); }

/* ── Support Modal ── */
.sup-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(4,20,12,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.sup-overlay.hidden { display: none; }
.sup-box {
  background: #06170E; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; width: 100%; max-width: 520px; max-height: 85vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  animation: popIn 0.3s ease both;
}
.sup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sup-header h3 { font-size: 17px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 10px; }
.sup-close {
  width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.sup-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.sup-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.sup-tabs {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.sup-tab {
  padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08); background: transparent;
  color: rgba(255,255,255,0.45); cursor: pointer; transition: all 0.2s;
}
.sup-tab.active { background: var(--pink); border-color: var(--pink); color: #fff; }
.sup-tab:hover:not(.active) { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }

/* New ticket form */
.sup-form-group { margin-bottom: 16px; }
.sup-label { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.sup-input, .sup-select, .sup-textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: #fff; font-size: 14px; font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.sup-input:focus, .sup-select:focus, .sup-textarea:focus { border-color: var(--pink); }
.sup-input::placeholder, .sup-textarea::placeholder { color: rgba(255,255,255,0.25); }
.sup-select { appearance: none; cursor: pointer; }
.sup-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.sup-submit {
  width: 100%; padding: 14px; border-radius: 12px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--pink), #8B5CF6);
  color: #fff; font-weight: 800; font-size: 14px;
  transition: transform 0.2s; margin-top: 8px;
}
.sup-submit:hover { transform: translateY(-1px); }
.sup-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Ticket list */
.sup-ticket-list { display: flex; flex-direction: column; gap: 10px; }
.sup-ticket-empty {
  text-align: center; padding: 40px 20px; color: rgba(255,255,255,0.3); font-size: 14px;
}
.sup-ticket-item {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px; cursor: pointer; transition: border-color 0.2s;
}
.sup-ticket-item:hover { border-color: rgba(255,255,255,0.12); }
.sup-ticket-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.sup-ticket-subject { font-size: 14px; font-weight: 700; color: #fff; }
.sup-ticket-status {
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.sup-ticket-status.aberto { background: rgba(255,183,0,0.12); color: #FFB800; }
.sup-ticket-status.respondido { background: rgba(0,201,122,0.12); color: #00e882; }
.sup-ticket-status.fechado { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); }
.sup-ticket-meta { font-size: 12px; color: rgba(255,255,255,0.3); }

/* Ticket detail / chat */
.sup-chat-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4);
  background: none; border: none; cursor: pointer; padding: 0; margin-bottom: 16px;
}
.sup-chat-back:hover { color: #fff; }
.sup-chat-msgs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.sup-msg {
  max-width: 85%; padding: 12px 16px; border-radius: 14px;
  font-size: 13px; line-height: 1.65;
}
.sup-msg.user { background: rgba(255,79,163,0.12); border: 1px solid rgba(255,79,163,0.2); align-self: flex-end; color: rgba(255,255,255,0.8); }
.sup-msg.admin { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); align-self: flex-start; color: rgba(255,255,255,0.7); }
.sup-msg-label { font-size: 11px; font-weight: 700; margin-bottom: 4px; }
.sup-msg.user .sup-msg-label { color: var(--pink); }
.sup-msg.admin .sup-msg-label { color: #A78BFA; }
.sup-msg-time { font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 4px; }
.sup-reply-row { display: flex; gap: 8px; }
.sup-reply-input {
  flex: 1; padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: #fff; font-size: 13px; font-family: inherit; outline: none;
}
.sup-reply-input:focus { border-color: var(--pink); }
.sup-reply-input::placeholder { color: rgba(255,255,255,0.25); }
.sup-reply-btn {
  padding: 10px 18px; border-radius: 10px; border: none; cursor: pointer;
  background: var(--pink); color: #fff; font-weight: 700; font-size: 13px;
  transition: transform 0.2s; flex-shrink: 0;
}
.sup-reply-btn:hover { transform: translateY(-1px); }
.sup-closed-notice {
  text-align: center; padding: 12px; border-radius: 10px;
  background: rgba(255,255,255,0.03); font-size: 13px; color: rgba(255,255,255,0.35);
}

/* ── CTA section ── */
.lnd-cta-sec {
  padding: 100px 24px; text-align: center; position: relative; overflow: hidden;
  background: #120A2A;
}
.lnd-cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) translateZ(0);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.16) 0%, rgba(255,79,163,0.07) 40%, transparent 70%);
  pointer-events: none;
}
.lnd-cta-content { position: relative; z-index: 1; }
.lnd-cta-sec h2 {
  font-size: clamp(28px, 5vw, 44px); font-weight: 800; color: #fff; margin-bottom: 16px;
}
.lnd-cta-sec p {
  color: rgba(255,255,255,0.5); font-size: 17px; line-height: 1.65;
  max-width: 440px; margin: 0 auto 36px;
}
.lnd-cta-note {
  display: block; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 500;
}

/* ── Footer ── */
.lnd-footer {
  background: #020D07; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 24px; text-align: center;
}
.lnd-footer-inner { max-width: 600px; margin: 0 auto; }
.lnd-footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 20px; font-weight: 800; color: #fff; 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: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.lnd-footer-links a:hover { color: var(--pink-light); }
.lnd-footer-warning {
  max-width: 480px; margin: 0 auto 20px; font-size: 11px;
  color: rgba(255,255,255,0.25); line-height: 1.6;
  padding: 14px 18px; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.lnd-footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .lnd-how-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .lnd-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lnd-test-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 780px) {
  .lnd-hero { padding: 90px 20px 60px; min-height: auto; }
  .lnd-hero-inner { flex-direction: column; text-align: center; }
  .lnd-hero-right { display: none; }
  .lnd-hero-left { max-width: 100%; }
  .lnd-sub { margin-left: auto; margin-right: auto; }
  .lnd-actions { justify-content: center; }
  .lnd-trust { justify-content: center; }
  .lnd-stat-divider { display: none; }
  .lnd-stats { gap: 16px; padding: 24px 16px; }
  .lnd-stat-val { font-size: 24px; }
  .lnd-how { padding: 64px 16px; }
  .lnd-features { padding: 64px 16px; }
  .lnd-test { padding: 64px 16px; }
  .lnd-cta-sec { padding: 80px 16px; }
  .lnd-section-head { margin-bottom: 36px; }
  .lnd-faq { padding: 64px 16px; }
  .lnd-faq-q { padding: 16px 18px; font-size: 14px; }
  .lnd-faq-item.open .lnd-faq-a { padding: 0 18px 16px; }
  .lnd-support-fab { width: 50px; height: 50px; bottom: 20px; right: 16px; }
  .sup-box { max-height: 90vh; border-radius: 16px; }
  .sup-header { padding: 16px 18px; }
  .sup-body { padding: 16px 18px; }
}
@media (max-width: 600px) {
  .lnd-features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .lnd-title { font-size: clamp(34px, 10vw, 56px); letter-spacing: -1px; }
  .lnd-sub { font-size: 15px; }
  .lnd-nav { padding: 10px 16px; }
  .brand-logo-img[src]:not([src=""]) { display: none !important; }
  .brand-logo-img-mobile[src]:not([src=""]) { display: inline-block !important; }
  .lnd-footer-brand .brand-logo-img-mobile { height: 24px; max-width: 120px; }
  .lnd-cta-sm { padding: 8px 16px; font-size: 12px; }
  .lnd-nav-link { padding: 6px 10px; font-size: 13px; }
  .lnd-trust { flex-direction: column; align-items: center; gap: 8px; }
  .lnd-trust-item { font-size: 11px; padding: 6px 12px; }
  .lnd-cta-btn { padding: 14px 28px; font-size: 14px; width: 100%; justify-content: center; }
  .lnd-cta-btn--lg { padding: 16px 32px; font-size: 15px; }
  .lnd-ghost-btn { font-size: 14px; }
  .lnd-footer-links { gap: 12px; }
  .lnd-footer-links a { font-size: 12px; }
  .lnd-how-card { padding: 28px 22px; }
  .lnd-section-head h2 { font-size: clamp(22px, 6vw, 32px); }
  .lnd-section-head p { font-size: 14px; }
  .lnd-hero-glow--1 { width: 300px; height: 300px; }
  .lnd-hero-glow--2 { width: 250px; height: 250px; }
  .lnd-hero-glow--3 { width: 150px; height: 150px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HALLOWEEN PANEL — SALDO, MODAIS FINANCEIROS E ATIVIDADE REAL DO USUÁRIO
   ═══════════════════════════════════════════════════════════════════════════════ */
#page-painel .pnl-hero {
  margin: 0;
  padding: 29px 18px 27px;
  background:
    linear-gradient(135deg,rgba(35,11,48,.88),rgba(66,27,83,.78)),
    url("../images/halloween/fundo.webp") center 42% / cover no-repeat;
}

#page-painel .pnl-hero-label {
  font-size: 12px;
  letter-spacing: 1.5px;
}

#page-painel .pnl-hero-actions {
  gap: 9px;
}

#page-painel .pnl-action-btn {
  justify-content: center;
  min-width: 108px;
}

#page-painel .pnl-modal-bg {
  z-index: 900;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 18%,rgba(255,117,24,.12),transparent 26%),
    rgba(4,2,9,.76);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

#page-painel .pnl-modal {
  width: min(100%, 480px);
  padding: 26px 20px calc(34px + env(safe-area-inset-bottom));
  border: 1px solid rgba(183,92,255,.25);
  border-radius: 25px 25px 0 0;
  background:
    radial-gradient(circle at 92% 4%,rgba(255,117,24,.07),transparent 24%),
    linear-gradient(160deg,#21091f 0%,#130617 100%);
  color: #fff;
  box-shadow: 0 -22px 70px rgba(0,0,0,.62);
}

#page-painel .pnl-modal-header {
  margin-bottom: 22px;
}

#page-painel .pnl-modal-title {
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.45px;
}

#page-painel .pnl-modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(183,92,255,.27);
  background: rgba(255,255,255,.055);
  color: #C77DFF;
  font-size: 19px;
}

#page-painel .pnl-modal .pnl-quick {
  min-height: 46px;
  padding: 11px 9px;
  border: 1px solid rgba(183,92,255,.31);
  border-radius: 15px;
  background: rgba(8,3,13,.48);
  color: #fff;
}

#page-painel .pnl-modal .pnl-quick.active,
#page-painel .pnl-modal .pnl-quick:hover {
  border-color: #FF7518;
  background: rgba(255,117,24,.13);
  color: #FF9A52;
}

#page-painel .pnl-modal .pnl-input-wrap {
  min-height: 64px;
  border: 1px solid rgba(183,92,255,.27) !important;
  border-radius: 16px;
  background: rgba(255,255,255,.055) !important;
  overflow: hidden;
}

#page-painel .pnl-modal .pnl-input-prefix {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-inline: 15px;
  background: rgba(5,2,9,.48);
  color: rgba(255,255,255,.5);
  font-weight: 800;
}

#page-painel .pnl-modal .pnl-input {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

#page-painel .pnl-modal .pnl-input::placeholder {
  color: rgba(255,255,255,.82);
  opacity: 1;
}

#page-painel .pnl-saldo-modal-info {
  padding: 14px 16px;
  border: 1px solid rgba(255,117,24,.18);
  border-radius: 14px;
  background: rgba(7,2,9,.44);
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

#page-painel .pnl-saldo-modal-info strong {
  color: #FF7518;
  font-size: 16px;
}

#page-painel .pnl-info-box {
  border: 1px solid rgba(183,92,255,.24);
  border-radius: 14px;
  background: rgba(139,53,232,.12);
  color: #D7A8FF;
}

#page-painel .pnl-info-pink {
  border-color: rgba(255,117,24,.23);
  background: rgba(255,117,24,.08);
  color: rgba(255,255,255,.82);
}

#page-painel #ind-saldo-box {
  padding: 20px !important;
  border: 1px solid rgba(183,92,255,.32);
  border-radius: 17px !important;
  background:
    radial-gradient(circle at 15% 0,rgba(255,117,24,.12),transparent 31%),
    linear-gradient(145deg,#210820,#14051a) !important;
}

#page-painel #btn-sacar-afil {
  min-height: 52px;
  border-radius: 14px !important;
  background: linear-gradient(105deg,#A54800,#D94D22 48%,#D65D8E) !important;
  font-size: 16px !important;
}

#page-painel .pnl-link-box {
  padding: 18px;
  border: 1px solid rgba(183,92,255,.3);
  border-radius: 17px;
  background: rgba(10,3,14,.44);
}

#page-painel .pnl-link-label {
  color: rgba(255,255,255,.55);
}

#page-painel .pnl-link-val {
  color: #fff;
  font-size: 14px;
}

#page-painel .pnl-btn-copy {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
}

#page-painel .pnl-mini-stat {
  min-height: 94px;
  border: 1px solid rgba(183,92,255,.18);
  border-radius: 15px;
  background: rgba(7,2,10,.42);
}

#page-painel .pnl-mini-val {
  color: #C86DFF;
  font-size: 21px;
}

#page-painel .pnl-mini-lbl {
  color: rgba(255,255,255,.5);
}

#page-painel #dep-confirmar,
#page-painel #saq-confirmar,
#page-painel #saq-afil-confirmar {
  min-height: 62px;
  border-radius: 999px;
  background: linear-gradient(105deg,#FF7112,#FF8A2E) !important;
  color: #120608;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(255,94,0,.2);
}

#page-painel .pnl-activity-toast {
  position: fixed;
  z-index: 850;
  left: max(16px,calc((100vw - 480px)/2 + 16px));
  bottom: calc(78px + env(safe-area-inset-bottom));
  width: min(calc(100vw - 32px),460px);
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(183,92,255,.32);
  border-left: 3px solid #FF7518;
  border-radius: 18px;
  background: rgba(27,7,34,.96);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.58);
  transform: translateY(24px);
  opacity: 0;
  transition: opacity .35s ease,transform .35s ease;
}

#page-painel .pnl-activity-toast.show {
  transform: translateY(0);
  opacity: 1;
}

#page-painel .pnl-activity-check {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg,#FF7A45,#B04CFF);
  font-size: 25px;
  font-weight: 900;
}

#page-painel .pnl-activity-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

#page-painel .pnl-activity-copy strong {
  font-size: 15px;
}

#page-painel .pnl-activity-copy span {
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

#page-painel .pnl-activity-value {
  color: #FF9A52;
  font-size: 16px;
  white-space: nowrap;
}

@media (min-width: 700px) {
  #page-painel .pnl-modal-bg {
    align-items: center;
    padding: 24px;
  }

  #page-painel .pnl-modal {
    border-radius: 25px;
    max-height: calc(100vh - 48px);
  }
}

@media (max-width: 420px) {
  #page-painel .pnl-action-btn {
    min-width: 0;
    flex: 1;
    padding-inline: 12px;
  }

  #page-painel .pnl-modal {
    padding-inline: 16px;
  }

  #page-painel .dep-amount-grid {
    grid-template-columns: repeat(4,1fr);
    gap: 7px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HALLOWEEN AUTH — LOGIN E CADASTRO
   Alterações estritamente visuais; formulários, ids e eventos foram preservados.
   ═══════════════════════════════════════════════════════════════════════════════ */
body:has(#page-login.active),
body:has(#page-cadastro.active) {
  background: #08050f;
}

#page-login.active,
#page-cadastro.active {
  align-items: center;
  padding: 42px 18px !important;
  background:
    linear-gradient(180deg, rgba(7,4,13,.38), rgba(7,4,13,.74)),
    url("../images/halloween/fundo.webp") center / cover fixed no-repeat !important;
}

#page-login.active::before,
#page-cadastro.active::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 34%, rgba(150,62,213,.17), transparent 32%),
    linear-gradient(180deg, rgba(8,4,14,.06), rgba(8,4,14,.48));
}

#page-login .lgn-glow,
#page-cadastro .reg-glow {
  display: none;
}

#page-login .lgn-wrap,
#page-cadastro .reg-wrap {
  width: min(100%, 460px);
  max-width: 460px;
  padding: 46px 34px 40px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 30px;
  background:
    linear-gradient(155deg, rgba(31,28,39,.94), rgba(25,15,24,.94));
  box-shadow:
    0 28px 70px rgba(0,0,0,.58),
    inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

#page-login .lgn-logo,
#page-cadastro .reg-logo {
  height: 58px;
  margin: 0 0 22px;
}

#page-login .auth-halloween-logo,
#page-cadastro .auth-halloween-logo {
  display: block;
  width: 92px;
  height: 58px;
  object-fit: contain;
}

#page-login .lgn-title,
#page-cadastro .reg-title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.7px;
}

#page-login .lgn-sub,
#page-cadastro .reg-sub {
  margin-bottom: 36px;
  color: rgba(255,255,255,.48);
  font-size: 16px;
  line-height: 1.5;
}

#page-login .lgn-group,
#page-cadastro .reg-group {
  gap: 9px;
  margin-bottom: 22px;
}

#page-login .lgn-label,
#page-cadastro .reg-label {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 700;
}

#page-login .lgn-input,
#page-cadastro .reg-input {
  min-height: 58px;
  padding: 15px 18px;
  border: 1.5px solid rgba(255,255,255,.19);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
  color: #fff;
  font-size: 16px;
}

#page-login .lgn-input::placeholder,
#page-cadastro .reg-input::placeholder {
  color: rgba(255,255,255,.25);
}

#page-login .lgn-input:focus,
#page-cadastro .reg-input:focus {
  border-color: #FF7A18;
  background: rgba(255,255,255,.075);
  box-shadow: 0 0 0 3px rgba(255,117,24,.1);
}

#page-login .lgn-eye,
#page-cadastro .reg-eye {
  right: 18px;
  color: rgba(255,255,255,.36);
}

#page-login .lgn-forgot {
  margin: -2px 0 26px;
  color: #FF7A18;
  font-size: 14px;
  font-weight: 700;
  opacity: 1;
}

#page-cadastro .reg-terms {
  margin: 2px 0 24px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 1.55;
}

#page-cadastro .reg-terms strong {
  color: #FF7A18;
}

#page-login .lgn-btn,
#page-cadastro .reg-btn {
  min-height: 64px;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(100deg, #FF7112 0%, #FF9B60 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .5px;
  box-shadow: 0 9px 25px rgba(255,102,12,.25);
}

#page-login .lgn-btn:hover:not(:disabled),
#page-cadastro .reg-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255,102,12,.34);
}

#page-login .lgn-footer,
#page-cadastro .reg-footer {
  margin-top: 25px;
  color: rgba(255,255,255,.48);
  font-size: 15px;
}

#page-login .lgn-footer a,
#page-cadastro .reg-footer a {
  color: #FF7A18;
  font-weight: 800;
}

#page-login .lgn-back,
#page-cadastro .reg-back {
  margin-top: 15px;
  color: rgba(255,255,255,.35);
  font-size: 14px;
}

@media (max-width: 600px) {
  #page-login.active,
  #page-cadastro.active {
    align-items: flex-start;
    min-height: 100svh;
    padding: 64px 15px 56px !important;
    background-position: center top !important;
  }

  #page-login .lgn-wrap,
  #page-cadastro .reg-wrap {
    width: 100%;
    padding: 42px 28px 36px;
    border-radius: 27px;
  }

  #page-login .lgn-logo,
  #page-cadastro .reg-logo {
    margin-bottom: 18px;
  }

  #page-login .auth-halloween-logo,
  #page-cadastro .auth-halloween-logo {
    width: 84px;
    height: 52px;
  }

  #page-login .lgn-title,
  #page-cadastro .reg-title {
    font-size: 28px;
  }

  #page-login .lgn-sub,
  #page-cadastro .reg-sub {
    margin-bottom: 33px;
    font-size: 15px;
  }

  #page-login .lgn-input,
  #page-cadastro .reg-input {
    min-height: 58px;
  }

  #page-login .lgn-btn,
  #page-cadastro .reg-btn {
    min-height: 62px;
    font-size: 17px;
  }
}

@media (max-width: 380px) {
  #page-login.active,
  #page-cadastro.active {
    padding-inline: 10px !important;
  }

  #page-login .lgn-wrap,
  #page-cadastro .reg-wrap {
    padding-inline: 21px;
  }

  #page-login .lgn-title,
  #page-cadastro .reg-title {
    font-size: 25px;
  }
}
@media (max-width: 380px) {
  .lnd-nav-brand { font-size: 17px; gap: 8px; }
  .lnd-logo-mark { width: 30px; height: 30px; }
  .lnd-nav-menu { gap: 4px; }
  .lnd-stats { flex-direction: column; align-items: center; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HALLOWEEN LANDING THEME
   Visual-only override: existing ids, navigation and page behavior are preserved.
   ═══════════════════════════════════════════════════════════════════════════════ */
:root {
  --halloween-night: #0A0612;
  --halloween-surface: #160A22;
  --halloween-surface-2: #231033;
  --halloween-purple: #9A45FF;
  --halloween-purple-soft: #C77DFF;
  --halloween-orange: #FF7518;
  --halloween-orange-dark: #E85D04;
  --halloween-red: #D84040;
  --halloween-ink: #F6EEFF;
}

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

body:has(#page-landing.active) {
  background: var(--halloween-night);
}

.lnd-nav {
  background: rgba(10, 6, 18, 0.88);
  border-bottom-color: rgba(255, 117, 24, 0.18);
}

.lnd-logo-mark {
  color: var(--halloween-orange);
  background: linear-gradient(145deg, rgba(255,117,24,.2), rgba(154,69,255,.18));
  border-color: rgba(255,117,24,.35);
  box-shadow: 0 0 26px rgba(255,117,24,.16);
}

.lnd-cta-sm,
.lnd-cta-btn,
.sup-submit {
  color: #13070A;
  background: linear-gradient(135deg, var(--halloween-orange), var(--halloween-orange-dark));
  box-shadow: 0 8px 30px rgba(255, 117, 24, 0.3);
}

.lnd-cta-sm:hover,
.lnd-cta-btn:hover {
  box-shadow: 0 12px 38px rgba(255,117,24,.46);
}

.lnd-hero {
  min-height: min(920px, 100vh);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8,4,14,.96) 0%, rgba(8,4,14,.8) 38%, rgba(8,4,14,.28) 70%, rgba(8,4,14,.72) 100%),
    linear-gradient(180deg, rgba(10,6,18,.05) 55%, var(--halloween-night) 100%),
    url("../images/halloween/fundo.webp") center center / cover no-repeat;
}

.lnd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,117,24,.14), transparent 24%),
    radial-gradient(circle at 78% 32%, rgba(154,69,255,.18), transparent 30%),
    linear-gradient(180deg, transparent 60%, #0A0612 100%);
}

.lnd-hero-grid {
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.55) .7px, transparent .7px);
  background-size: 28px 28px;
}

.lnd-hero-glow--1 {
  background: radial-gradient(circle, rgba(255,117,24,.18), transparent 70%);
}

.lnd-hero-glow--2 {
  background: radial-gradient(circle, rgba(154,69,255,.28), transparent 70%);
}

.lnd-hero-glow--3 {
  background: radial-gradient(circle, rgba(216,64,64,.12), transparent 70%);
}

.lnd-title {
  color: #fff;
  text-shadow: 0 8px 34px rgba(0,0,0,.65);
}

.lnd-title-accent {
  color: var(--halloween-orange);
  background: linear-gradient(90deg, #FF9D3D, #FF6412 52%, #C77DFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(255,117,24,.22));
}

.lnd-sub {
  color: rgba(246,238,255,.74);
  text-shadow: 0 3px 16px rgba(0,0,0,.8);
}

.lnd-sub strong,
.lnd-section-tag,
.lnd-stat-val,
.lnd-win-amount {
  color: var(--halloween-orange);
}

.lnd-ghost-btn {
  color: rgba(246,238,255,.76);
}

.lnd-trust-item {
  color: rgba(246,238,255,.7);
  background: rgba(12,5,18,.58);
  border: 1px solid rgba(255,117,24,.14);
  backdrop-filter: blur(12px);
}

.lnd-trust-item svg {
  color: var(--halloween-orange);
}

.lnd-hero-phone {
  display: none;
}

.halloween-hero-art {
  position: relative;
  width: clamp(320px, 38vw, 510px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 30px 44px rgba(0,0,0,.58));
}

.halloween-hero-art::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,24,.18), rgba(154,69,255,.13) 42%, transparent 70%);
  animation: halloween-pulse 4s ease-in-out infinite;
}

.halloween-hero-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 76%;
  height: 48%;
  bottom: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(199,125,255,.48) 0%, rgba(154,69,255,.22) 38%, transparent 72%);
  filter: blur(28px);
  opacity: .82;
}

.halloween-pumpkin {
  position: relative;
  z-index: 3;
  width: 86%;
  animation: halloween-float 4.8s ease-in-out infinite;
}

.halloween-moon {
  position: absolute;
  top: 4%;
  right: 4%;
  width: 82px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFF4D1, #E9B9FF 58%, #A958D4);
  box-shadow: 0 0 40px rgba(199,125,255,.48);
  opacity: .9;
}

.halloween-bat {
  position: absolute;
  z-index: 2;
  color: rgba(8,3,13,.9);
  font-size: 28px;
  transform: scaleX(1.8) rotate(25deg);
  animation: halloween-bat 5s ease-in-out infinite;
}

.halloween-bat--one { top: 18%; left: 3%; }
.halloween-bat--two { top: 7%; left: 28%; animation-delay: -2.2s; font-size: 18px; }

.lnd-floating-wins {
  right: -18px;
  top: 48%;
  z-index: 5;
}

.lnd-win-card {
  background: rgba(14,6,22,.86);
  border-color: rgba(255,117,24,.2);
  box-shadow: 0 12px 34px rgba(0,0,0,.42);
}

.lnd-stats {
  background: rgba(8,4,12,.98);
  border-color: rgba(255,117,24,.12);
}

.lnd-how {
  background: linear-gradient(180deg, #0A0612, #14091F);
}

.lnd-features {
  background: linear-gradient(180deg, #14091F, #21102F);
}

.lnd-test {
  background: linear-gradient(180deg, #21102F, #12081C);
}

.lnd-faq,
.lnd-cta-sec {
  background: #12081C;
}

.lnd-how-card,
.lnd-feature-card,
.lnd-test-card,
.lnd-faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(154,69,255,.025));
  border-color: rgba(199,125,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
}

.lnd-how-card:hover,
.lnd-feature-card:hover,
.lnd-test-card:hover {
  border-color: rgba(255,117,24,.32);
  box-shadow: 0 20px 50px rgba(255,117,24,.08);
}

.lnd-section-tag {
  background: rgba(255,117,24,.1);
  border-color: rgba(255,117,24,.24);
}

.lnd-cta-sec {
  background:
    radial-gradient(circle at 50% 50%, rgba(154,69,255,.16), transparent 48%),
    linear-gradient(145deg, #170A22, #271039);
}

.lnd-footer {
  background: #08040C;
  border-top-color: rgba(255,117,24,.12);
}

.lnd-support-fab {
  background: linear-gradient(135deg, var(--halloween-orange), var(--halloween-purple));
  box-shadow: 0 6px 28px rgba(255,117,24,.34);
}

@keyframes halloween-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes halloween-pulse {
  0%, 100% { transform: scale(.96); opacity: .65; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes halloween-bat {
  0%, 100% { transform: translateY(0) scaleX(1.8) rotate(20deg); }
  50% { transform: translateY(-12px) scaleX(1.45) rotate(30deg); }
}

@media (max-width: 780px) {
  .lnd-hero {
    min-height: 780px;
    padding-top: 100px;
    background-position: 55% center;
  }

  .lnd-hero-right {
    display: block;
    position: absolute;
    inset: auto -90px -65px auto;
    opacity: .46;
    pointer-events: none;
  }

  .halloween-hero-art {
    width: 350px;
  }

  .halloween-moon,
  .lnd-floating-wins {
    display: none;
  }

  .lnd-hero-left {
    position: relative;
    z-index: 6;
  }
}

@media (max-width: 600px) {
  .lnd-nav-brand .brand-name {
    font-size: 15px;
  }

  .lnd-hero {
    min-height: 720px;
    padding-bottom: 100px;
    background-position: 53% center;
  }

  .lnd-title {
    font-size: clamp(38px, 12vw, 54px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .halloween-pumpkin,
  .halloween-hero-art::before,
  .halloween-bat {
    animation: none;
  }
}

/* Mobile composition follows the supplied Halloween reference sequence. */
@media (max-width: 600px) {
  .lnd-nav {
    min-height: 76px;
    padding: 10px 20px;
    background: rgba(8,3,12,.96);
  }

  .halloween-brand-logo {
    width: 76px;
    height: 48px;
  }

  .lnd-nav-menu {
    gap: 8px;
  }

  .lnd-nav-link {
    padding: 8px 10px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    font-weight: 700;
  }

  .lnd-cta-sm {
    padding: 12px 20px;
    border-radius: 999px;
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: #12060A;
    box-shadow: 0 8px 24px rgba(255,117,24,.28);
  }

  .lnd-hero {
    min-height: 0;
    padding: 92px 20px 70px;
    background:
      linear-gradient(180deg, rgba(9,4,14,.54) 0%, rgba(9,4,14,.18) 45%, rgba(9,4,14,.52) 77%, #0A0612 100%),
      url("../images/halloween/fundo.webp") center top / auto 1050px no-repeat;
  }

  .lnd-hero::after {
    background:
      radial-gradient(circle at 20% 18%, rgba(255,117,24,.13), transparent 30%),
      linear-gradient(180deg, transparent 76%, #0A0612 100%);
  }

  .lnd-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .lnd-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .halloween-live-badge {
    order: 0;
    margin: 0 0 38px;
    padding: 9px 15px;
    font-size: 13px;
  }

  .lnd-title {
    order: 1;
    margin-bottom: 24px;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 43px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.2px;
    text-transform: uppercase;
  }

  .halloween-title-line {
    display: block;
  }

  .halloween-title-purple {
    color: #B75CFF;
  }

  .halloween-title-orange {
    margin-top: 4px;
    color: #FF7518;
    font-size: 31px;
    line-height: 1.12;
    white-space: nowrap;
    text-shadow: 0 8px 30px rgba(255,117,24,.16);
    -webkit-text-fill-color: currentColor;
    background: none;
    filter: none;
  }

  .lnd-sub {
    order: 2;
    max-width: 340px;
    margin-bottom: 30px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(246,238,255,.76);
  }

  .brand-promo {
    order: 3;
  }

  .lnd-actions {
    order: 4;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 38px;
  }

  .lnd-cta-btn {
    position: relative;
    width: min(100%, 292px);
    min-height: 64px;
    padding: 16px 30px;
    border-radius: 999px;
    font-family: "Arial Black", Impact, sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .5px;
    overflow: visible;
    isolation: isolate;
    box-shadow: 0 7px 15px rgba(255,94,0,.3);
    animation: halloween-button-glow 2s ease-in-out infinite;
  }

  .lnd-cta-btn::after {
    display: none;
  }

  .lnd-cta-btn svg {
    display: none;
  }

  .lnd-cta-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #13070A;
    flex: 0 0 auto;
  }

  .lnd-ghost-btn {
    font-size: 15px;
    font-weight: 700;
  }

  @keyframes halloween-button-glow {
    0%, 100% {
      box-shadow:
        0 7px 15px rgba(255,94,0,.28),
        0 0 0 0 rgba(255,117,24,.12);
    }
    50% {
      box-shadow:
        0 9px 20px rgba(255,94,0,.48),
        0 0 12px 3px rgba(255,117,24,.26);
    }
  }

  .lnd-trust {
    order: 5;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .lnd-trust-item {
    min-width: 245px;
    justify-content: center;
    padding: 11px 18px;
    border-color: rgba(255,117,24,.3);
    color: #FF9A52;
    font-size: 14px;
    font-weight: 700;
  }

  .lnd-trust-item svg {
    color: #FF9A52;
  }

  .lnd-hero-right {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    order: 2;
    opacity: 1;
  }

  .halloween-hero-art {
    width: min(100%, 350px);
    margin: 8px auto 0;
  }

  .halloween-pumpkin {
    width: 92%;
  }

  .halloween-hero-art::before {
    width: 94%;
    height: 94%;
    background:
      radial-gradient(circle at 50% 48%, rgba(255,117,24,.22), rgba(154,69,255,.24) 44%, transparent 73%);
    filter: blur(20px);
  }

  .halloween-moon,
  .halloween-bat,
  .lnd-floating-wins {
    display: none;
  }

  .lnd-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 38px 12px;
    padding: 64px 18px;
    background: #09040D;
    border-top-color: rgba(154,69,255,.14);
    border-bottom-color: rgba(154,69,255,.14);
  }

  .lnd-stat-divider {
    display: none;
  }

  .lnd-stat:last-child {
    grid-column: 1 / -1;
  }

  .lnd-stat-val {
    margin-bottom: 9px;
    color: #BC6CFF;
    font-size: 38px;
    line-height: 1;
  }

  .lnd-stat-lbl {
    color: rgba(255,255,255,.48);
    font-size: 11px;
    letter-spacing: 1px;
  }

  .lnd-how {
    padding: 96px 24px 82px;
    background: #100719;
  }

  .lnd-how .lnd-section-tag,
  .lnd-test .lnd-section-tag {
    display: none;
  }

  .lnd-section-head {
    margin-bottom: 50px;
  }

  .lnd-section-head h2 {
    font-size: 31px;
    line-height: 1.25;
  }

  .lnd-section-head p {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.55;
  }

  .lnd-how-grid {
    gap: 20px;
  }

  .lnd-how-card {
    min-height: 285px;
    padding: 42px 24px 34px;
    text-align: center;
    border-color: rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.025);
  }

  .lnd-how-step {
    margin: 0 0 20px;
    color: transparent;
    font-size: 0;
  }

  .lnd-how-step::after {
    color: #D95E98;
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
  }

  .lnd-how-card:nth-child(1) .lnd-how-step::after { content: "01"; }
  .lnd-how-card:nth-child(2) .lnd-how-step::after { content: "02"; }
  .lnd-how-card:nth-child(3) .lnd-how-step::after { content: "03"; }

  .lnd-how-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border: 1px solid rgba(199,125,255,.22);
    background: rgba(154,69,255,.08);
  }

  .lnd-how-card h3 {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .lnd-how-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .lnd-features,
  .lnd-faq {
    display: none;
  }

  .lnd-test {
    padding: 92px 22px 96px;
    background: linear-gradient(180deg, #100719, #050809);
  }

  .lnd-test-grid {
    gap: 20px;
  }

  .lnd-test-card {
    padding: 30px 26px;
    border-radius: 22px;
    text-align: left;
    background: #151419;
    border-color: rgba(199,125,255,.12);
  }

  .lnd-test-verified {
    display: none;
  }

  .lnd-test-stars {
    color: #FFB800;
    font-size: 20px;
  }

  .lnd-test-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.75;
  }

  .lnd-test-avatar {
    width: 52px;
    height: 52px;
  }

  .lnd-cta-sec {
    padding: 94px 24px;
    background:
      radial-gradient(circle at 50% 58%, rgba(255,117,24,.16), transparent 44%),
      #2A0D3A;
  }

  .lnd-cta-sec h2 {
    font-size: 34px;
    line-height: 1.35;
  }

  .lnd-cta-sec p {
    font-size: 18px;
    line-height: 1.65;
  }

  .lnd-cta-btn--lg {
    min-height: 66px;
  }

  .lnd-cta-note {
    display: none;
  }

  .lnd-footer {
    padding: 62px 24px 72px;
    background: #050308;
  }

  .halloween-brand-logo--footer {
    width: 82px;
    height: 58px;
  }

  .lnd-footer-links {
    gap: 14px 22px;
  }

  .lnd-footer-links a {
    font-size: 13px;
  }

  .lnd-footer-warning {
    padding: 18px;
    font-size: 12px;
    line-height: 1.65;
  }

  .lnd-support-fab {
    display: none;
  }
}

@media (max-width: 370px) {
  .lnd-title {
    font-size: 39px;
  }

  .halloween-title-orange {
    font-size: 28px;
  }

  .lnd-cta-btn {
    width: min(100%, 276px);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HALLOWEEN USER PANEL
   Scoped visual overrides. Functional ids and event targets remain unchanged.
   ═══════════════════════════════════════════════════════════════════════════════ */
#page-painel .pnl-root {
  --pnl-pink: #FF7518;
  --pnl-pink-light: #FF9A3D;
  --pnl-purple: #8B35E8;
  --pnl-purple2: #B75CFF;
  --pnl-green: #00D47E;
  background-color: #0A0612;
}

#page-painel .pnl-root::before {
  background:
    linear-gradient(180deg, rgba(10,6,18,.24), rgba(10,6,18,.74)),
    url("../images/halloween/fundo.webp") center top / cover no-repeat;
  opacity: .52;
}

#page-painel .pnl-root::after {
  background:
    radial-gradient(circle at 78% 13%, rgba(139,53,232,.2), transparent 24%),
    linear-gradient(180deg, rgba(10,6,18,.1), rgba(10,6,18,.68));
}

#page-painel .pnl-header {
  min-height: 68px;
  padding: 0 16px;
  background: rgba(8,4,13,.94);
  border-bottom: 1px solid rgba(255,117,24,.15);
  box-shadow: 0 8px 26px rgba(0,0,0,.36);
}

#page-painel .pnl-header-inner {
  height: 68px;
}

#page-painel .halloween-panel-logo {
  display: block;
  width: 82px;
  height: 48px;
  object-fit: contain;
}

#page-painel .pnl-logo > .brand-logo-img,
#page-painel .pnl-logo > .brand-logo-img-mobile,
#page-painel .pnl-logo > .pnl-logo-icon,
#page-painel .pnl-logo > .brand-name {
  display: none !important;
}

#page-painel .pnl-saldo-chip {
  min-width: 106px;
  justify-content: center;
  padding: 7px 14px;
  border: 1px solid rgba(255,164,83,.32);
  border-radius: 999px;
  background: linear-gradient(135deg,#FF7A18,#F06008);
  box-shadow: 0 7px 22px rgba(255,94,0,.26);
}

#page-painel .pnl-saldo-chip-lbl {
  color: rgba(24,7,2,.66);
  font-weight: 800;
}

#page-painel .pnl-saldo-chip-val,
#page-painel .saldo-chip-caret {
  color: #120608;
}

#page-painel .pnl-avatar,
#page-painel .ppd-avatar {
  color: #fff;
  background: linear-gradient(135deg,#A83CFF,#6F25D7);
  border: 2px solid rgba(255,117,24,.38);
  box-shadow: 0 0 0 3px rgba(139,53,232,.2);
}

#page-painel .pnl-saldo-drop,
#page-painel .pnl-profile-drop {
  background: #160A20;
  border-color: rgba(199,125,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.65);
}

#page-painel .pnl-hero {
  padding: 30px 20px 28px;
  background:
    linear-gradient(135deg,rgba(35,11,48,.9),rgba(59,20,76,.76)),
    url("../images/halloween/fundo.webp") center 42% / cover no-repeat;
  border-bottom: 1px solid rgba(255,117,24,.12);
}

#page-painel .pnl-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg,transparent,rgba(255,117,24,.06));
  pointer-events: none;
}

#page-painel .pnl-hero-label {
  color: rgba(255,255,255,.64);
  font-size: 12px;
}

#page-painel .pnl-hero-value {
  font-size: clamp(38px,10vw,52px);
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.42);
}

#page-painel .pnl-action-btn {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 11px 19px;
  border-radius: 999px;
  font-weight: 800;
}

#page-painel .pnl-action-green {
  color: #140708;
  background: linear-gradient(135deg,#FF7A18,#F06008);
  box-shadow: 0 7px 20px rgba(255,94,0,.3);
}

#page-painel .pnl-action-outline {
  color: #fff;
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.25);
}

#page-painel .pnl-tips-wrap {
  background: rgba(17,7,25,.78);
  border-color: rgba(255,117,24,.2);
  border-left-color: #00D47E;
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}

#page-painel .pnl-game-card {
  background:
    radial-gradient(circle at 94% 5%, rgba(255,117,24,.1), transparent 24%),
    linear-gradient(150deg,rgba(26,9,35,.97),rgba(13,6,21,.98));
  border: 1px solid rgba(183,92,255,.28);
  border-top-color: rgba(255,117,24,.42);
  box-shadow:
    0 18px 54px rgba(0,0,0,.54),
    0 0 0 1px rgba(139,53,232,.1);
}

#page-painel .pnl-game-title {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .6px;
}

#page-painel .pnl-game-sub {
  color: rgba(255,255,255,.63);
  font-size: 13px;
}

#page-painel .pnl-game-badge {
  color: #FF9A52;
  background: rgba(255,117,24,.1);
  border-color: rgba(255,117,24,.36);
  animation: halloween-panel-online 2.2s ease-out infinite;
}

#page-painel .badge-dot {
  background: #FF7518;
}

#page-painel .pnl-chip-gold {
  color: #D69AFF;
  background: rgba(139,53,232,.16);
  border-color: rgba(183,92,255,.38);
}

#page-painel .pnl-chip-blue {
  color: #FFAE70;
  background: rgba(255,117,24,.08);
  border-color: rgba(255,117,24,.3);
}

#page-painel .pnl-bet-center {
  border-top-color: rgba(183,92,255,.24);
}

#page-painel .pnl-quick-label {
  color: #B75CFF;
  font-weight: 800;
  letter-spacing: 1.4px;
}

#page-painel .pnl-quick {
  min-width: 48px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.035);
  border-color: rgba(183,92,255,.25);
  border-radius: 999px;
}

#page-painel .pnl-quick:hover,
#page-painel .pnl-quick.active {
  color: #120608;
  background: linear-gradient(135deg,#FF7A18,#F06008);
  border-color: #FF7518;
  box-shadow: 0 6px 18px rgba(255,94,0,.25);
}

#page-painel .pnl-bet-center .pnl-input-wrap {
  max-width: 330px;
  min-height: 70px;
  background: rgba(11,5,17,.76) !important;
  border-color: rgba(255,117,24,.32);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(183,92,255,.08);
}

#page-painel .pnl-input-prefix {
  color: rgba(255,255,255,.48);
}

#page-painel .pnl-meta-row {
  padding: 16px 8px;
  border: 1px solid rgba(183,92,255,.18);
  border-radius: 16px;
  background: rgba(8,4,13,.52);
}

#page-painel .pnl-meta-lbl {
  color: rgba(255,255,255,.46);
}

#page-painel .pnl-meta-gold {
  color: #C77DFF;
}

#page-painel .pnl-warn {
  color: #FF91A4;
  background: rgba(126,18,48,.28);
  border-color: rgba(255,77,109,.4);
  border-radius: 14px;
}

#page-painel .pnl-warn-btn {
  color: #140708;
  background: linear-gradient(135deg,#FF7A18,#F06008);
  border-radius: 999px;
}

#page-painel .pnl-play-btn {
  min-height: 62px;
  color: #140708;
  background: linear-gradient(135deg,#FF7A18,#E95C08);
  border-radius: 999px;
  font-family: "Arial Black",Impact,sans-serif;
  font-size: 18px;
  letter-spacing: .5px;
  box-shadow: 0 8px 20px rgba(255,94,0,.3);
}

#page-painel .pnl-bottom-nav {
  background: rgba(7,3,11,.96);
  border-top-color: rgba(255,117,24,.16);
  box-shadow: 0 -8px 28px rgba(0,0,0,.46);
}

#page-painel .pnl-nav-item {
  color: rgba(255,255,255,.36);
}

#page-painel .pnl-nav-item:hover,
#page-painel .pnl-nav-active,
#page-painel .pnl-nav-item:last-child {
  color: #FF7518 !important;
}

@keyframes halloween-panel-online {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,117,24,.22); }
  50% { box-shadow: 0 0 12px 3px rgba(255,117,24,.18); }
}

@media (max-width: 600px) {
  #page-painel .pnl-header {
    padding: 0 12px;
  }

  #page-painel .halloween-panel-logo {
    width: 72px;
    height: 44px;
  }

  #page-painel .pnl-header-right {
    gap: 8px;
  }

  #page-painel .pnl-saldo-chip {
    min-width: 96px;
    padding: 6px 11px;
  }

  #page-painel .pnl-game-card {
    margin: 0 10px 18px;
    padding: 22px 16px 20px;
    border-radius: 22px;
  }

  #page-painel .pnl-game-top {
    align-items: center;
  }

  #page-painel .pnl-game-title {
    font-size: 19px;
  }

  #page-painel .pnl-game-badge {
    padding: 5px 9px;
  }

  #page-painel .pnl-quick-row {
    justify-content: center;
    gap: 7px;
  }

  #page-painel .pnl-quick {
    min-width: 46px;
    padding: 9px 10px;
  }
}
