/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px; scroll-behavior: smooth;
  overflow-x: hidden; width: 100%;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #FFE4EE 0%, #FFB3CB 100%);
  min-height: 100vh; width: 100%;
  overflow-x: hidden;
  color: #2d0014;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ─── CSS Variables ──────────────────────────────────────────────────────────── */
:root {
  --pink:        #FF6B9D;
  --pink-light:  #FF8CC8;
  --pink-dark:   #E0558A;
  --dark:        #4A0020;
  --dark-mid:    #7a0035;
  --green:       #00C97A;
  --green-dark:  #00A063;
  --red:         #FF4D6D;
  --blue:        #4D9EFF;
  --orange:      #FF8C42;
  --white:       #FFFFFF;
  --bg:          linear-gradient(135deg, #FFE4EE 0%, #FFB3CB 100%);
  --card-bg:     rgba(255,255,255,0.92);
  --shadow:      0 8px 32px rgba(74,0,32,0.10);
  --shadow-hover:0 16px 48px rgba(74,0,32,0.18);
  --radius:      16px;
  --radius-btn:  50px;
  --radius-sm:   8px;
  --transition:  0.25s ease;
}

/* ─── Pages / Router ────────────────────────────────────────────────────────── */
#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: #06001a; }
body:has(#page-login.active) { background: #06001a; }
body:has(#page-cadastro.active) { background: #06001a; }
body:has(#page-jogo.active) { background: #0a0010; }

/* ─── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadeIn    { from { opacity:0 } to { opacity:1 } }
@keyframes slideUp   { from { opacity:0; transform:translateY(24px) } to { opacity:1; transform:translateY(0) } }
@keyframes pulse     { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes float     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes spin      { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes shimmer   { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
@keyframes popIn     { 0%{transform:scale(0.7);opacity:0} 80%{transform:scale(1.05)} 100%{transform:scale(1);opacity:1} }
@keyframes toastIn   { from{opacity:0;transform:translateX(60px)} to{opacity:1;transform:translateX(0)} }
@keyframes toastOut  { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(60px)} }
@keyframes confetti  { 0%{transform:translateY(-10px) rotate(0deg);opacity:1} 100%{transform:translateY(100vh) rotate(720deg);opacity:0} }

.anim-fade    { animation: fadeIn  0.4s ease both; }
.anim-slide   { animation: slideUp 0.5s ease both; }
.anim-pulse   { animation: pulse 2s infinite; }
.anim-float   { animation: float 3s ease-in-out infinite; }

/* ─── Global Loading ────────────────────────────────────────────────────────── */
.global-loading {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.global-loading.hidden { display: none; }
.loading-spinner {
  width: 48px; height: 48px;
  border: 4px solid var(--pink-light);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ─── Toast ─────────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 8888;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  padding: 14px 20px; border-radius: var(--radius-sm);
  color: #fff; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  animation: toastIn 0.3s ease both;
  max-width: 320px; display: flex; align-items: center; gap: 10px;
}
.toast.out   { animation: toastOut 0.3s ease both; }
.toast.success { background: var(--green); }
.toast.error   { background: var(--red); }
.toast.info    { background: var(--blue); }
.toast.warning { background: var(--orange); }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-btn);
  border: none; cursor: pointer; font-weight: 700; font-size: 15px;
  transition: var(--transition); user-select: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(255,107,157,0.4);
}
.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
  box-shadow: 0 8px 24px rgba(255,107,157,0.5);
  transform: translateY(-1px);
}
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, #00e68a 100%);
  color: #fff; box-shadow: 0 4px 16px rgba(0,201,122,0.4);
}
.btn-green:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  box-shadow: 0 8px 24px rgba(0,201,122,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; border: 2px solid var(--pink);
  color: var(--pink);
}
.btn-outline:hover:not(:disabled) { background: var(--pink); color: #fff; }
.btn-dark {
  background: var(--dark); color: #fff;
}
.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-lg  { padding: 18px 40px; font-size: 17px; }
.btn-full { width: 100%; }

/* ─── Cards ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); }
.card-sm { padding: 18px; }
.card-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.card-sub   { font-size: 14px; color: #8a3050; }

/* ─── Forms ─────────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--dark-mid); }
.form-input {
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 2px solid #ffd6e7; background: #fff;
  font-size: 15px; color: var(--dark); transition: border-color var(--transition);
  outline: none; width: 100%;
}
.form-input:focus  { border-color: var(--pink); }
.form-input.error  { border-color: var(--red); }
.form-input.valid  { border-color: var(--green); }
.form-error { font-size: 12px; color: var(--red); font-weight: 600; }
.input-wrap { position: relative; }
.input-wrap .form-input { padding-right: 44px; }
.input-icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); cursor: pointer; font-size: 18px; color: #c0748f;
}

/* ─── Navbar ────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,157,0.15);
  padding: 12px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.navbar-brand {
  font-size: 22px; font-weight: 800; color: var(--pink);
  display: flex; align-items: center; gap: 8px;
}
.navbar-menu { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.navbar-link {
  padding: 8px 14px; border-radius: 50px; font-size: 14px; font-weight: 600;
  color: var(--dark-mid); transition: var(--transition); cursor: pointer; border: none; background: none;
}
.navbar-link:hover { background: #ffedf4; color: var(--pink); }
.balance-badge {
  background: linear-gradient(135deg, var(--green) 0%, #00e68a 100%);
  color: #fff; padding: 8px 16px; border-radius: 50px;
  font-weight: 700; font-size: 15px; min-width: 110px; text-align: center;
}
.avatar-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--dark) 100%);
  color: #fff; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: default;
}

/* ─── Stats pills ───────────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.stat-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 20px 16px;
  text-align: center; box-shadow: var(--shadow);
}
.stat-card .stat-icon { font-size: 28px; margin-bottom: 6px; }
.stat-card .stat-value { font-size: 20px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.stat-card .stat-label { font-size: 12px; color: #8a3050; font-weight: 600; margin-top: 2px; }

/* ─── Pills ─────────────────────────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; background: #ffedf4; color: var(--pink-dark);
}
.pill-green  { background: #e6fff4; color: var(--green-dark); }
.pill-blue   { background: #e8f3ff; color: #1a6fd4; }
.pill-orange { background: #fff3e8; color: #c85c00; }

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

/* ─── Progress bar ───────────────────────────────────────────────────────────── */
.progress-bar { background: #ffd6e7; border-radius: 50px; height: 12px; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 50px;
  background: linear-gradient(90deg, var(--green) 0%, #00e68a 100%);
  transition: width 0.4s ease;
}

/* ─── Transaction list ──────────────────────────────────────────────────────── */
.tx-list { display: flex; flex-direction: column; gap: 10px; }
.tx-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: #fff; border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(74,0,32,0.06);
}
.tx-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.tx-icon.ganho    { background: #e6fff4; }
.tx-icon.perda    { background: #ffe8ed; }
.tx-icon.deposito { background: #e8f3ff; }
.tx-icon.saque    { background: #fff3e8; }
.tx-icon.bonus    { background: #f3e8ff; }
.tx-info { flex: 1; }
.tx-desc { font-size: 14px; font-weight: 600; color: var(--dark); }
.tx-date { font-size: 12px; color: #8a3050; }
.tx-valor { font-size: 16px; font-weight: 700; }
.tx-valor.pos { color: var(--green-dark); }
.tx-valor.neg { color: var(--red); }

/* ─── Modal ─────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(74,0,32,0.45); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: #fff; border-radius: var(--radius); padding: 32px;
  width: 100%; max-width: 460px; max-height: 90vh; overflow-y: auto;
  animation: popIn 0.3s ease both;
  position: relative;
}
.modal-title {
  font-size: 20px; font-weight: 800; color: var(--dark);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: #ffedf4; border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); transition: var(--transition);
}
.modal-close:hover { background: var(--pink); color: #fff; }

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

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

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

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

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

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

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

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

/* ─── Auth pages ─────────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: linear-gradient(135deg, #FFE4EE 0%, #FFB3CB 100%);
}
.auth-card {
  background: #fff; border-radius: var(--radius); padding: 40px 36px;
  width: 100%; max-width: 420px; box-shadow: 0 16px 48px rgba(74,0,32,0.14);
  animation: popIn 0.35s ease both;
}
.auth-logo {
  text-align: center; margin-bottom: 28px;
  font-size: 28px; font-weight: 800; color: var(--pink);
}
.auth-title  { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; text-align: center; }
.auth-sub    { font-size: 14px; color: #8a3050; text-align: center; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: #8a3050; }
.auth-footer a { color: var(--pink); font-weight: 700; cursor: pointer; }

/* ─── Painel ────────────────────────────────────────────────────────────────── */
.painel-content { max-width: 1000px; margin: 0 auto; padding: 24px 16px; }
.painel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width: 700px) { .painel-grid { grid-template-columns: 1fr; } }

.game-card { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%); border-radius: var(--radius); padding: 28px; }
.game-card-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.game-card-sub   { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.pills-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pills-row .pill { background: rgba(255,255,255,0.12); color: #fff; font-size: 12px; }
.input-money-wrap { position: relative; margin-bottom: 14px; }
.input-money-prefix {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-weight: 700; font-size: 15px; color: var(--dark-mid); pointer-events: none;
}
.input-money { padding-left: 44px !important; }
.meta-preview {
  background: rgba(255,255,255,0.1); border-radius: 10px;
  padding: 12px 16px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.meta-preview-label { color: rgba(255,255,255,0.7); font-size: 14px; }
.meta-preview-value { color: #fff; font-weight: 800; font-size: 18px; }
.users-playing {
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 12px;
}

/* ─── Jogo page ──────────────────────────────────────────────────────────────── */
.jogo-page { min-height: 100vh; position: relative; background: #0a0010; }
.jogo-hud {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,0,16,0.85); backdrop-filter: blur(8px);
  padding: 10px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hud-item { display: flex; flex-direction: column; align-items: center; }
.hud-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; }
.hud-value { font-size: 18px; font-weight: 800; color: #fff; }
.hud-value.green { color: var(--green); }
.hud-value.pink  { color: var(--pink-light); }
.hud-progress { flex: 1; min-width: 140px; }
.jogo-iframe-wrap {
  position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
}
.jogo-iframe-wrap iframe { width: 100%; height: 100%; border: none; }

.resultado-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75); display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.resultado-overlay.hidden { display: none; }
.resultado-box {
  background: #fff; border-radius: var(--radius); padding: 40px 32px;
  text-align: center; max-width: 380px; width: 100%;
  animation: popIn 0.4s ease both;
}
.resultado-icon { font-size: 64px; margin-bottom: 10px; }
.resultado-title { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.resultado-valor { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.resultado-valor.ganhou { color: var(--green); }
.resultado-valor.perdeu { color: var(--red); }

/* ─── Utilities ──────────────────────────────────────────────────────────────── */
.flex     { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-sm  { gap: 8px; }
.gap-md  { gap: 16px; }
.gap-lg  { gap: 24px; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mb-md { margin-bottom: 16px; }
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.text-muted { color: #8a3050; }
.font-bold { font-weight: 700; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* ─── Container ──────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ─── Divider ────────────────────────────────────────────────────────────────── */
.divider { height: 1px; background: #ffd6e7; margin: 20px 0; }

/* ─── Badge ──────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.badge-green  { background: #e6fff4; color: var(--green-dark); }
.badge-red    { background: #ffe8ed; color: var(--red); }
.badge-blue   { background: #e8f3ff; color: #1a6fd4; }
.badge-orange { background: #fff3e8; color: #c85c00; }
.badge-purple { background: #f3e8ff; color: #7b1fa2; }

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

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

#page-landing { background: #06001a; 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), #a855f7);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.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(6,0,26,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: #06001a; 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;
}
.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(168,85,247,0.18) 0%, transparent 70%); }
.lnd-hero-glow--2 { width: 400px; height: 400px; bottom: -10%; right: -5%; background: radial-gradient(circle, rgba(255,107,157,0.14) 0%, transparent 70%); }
.lnd-hero-glow--3 { width: 250px; height: 250px; top: 30%; left: 50%; background: radial-gradient(circle, rgba(0,201,122,0.08) 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(168,85,247,0.1) 0%, rgba(255,107,157,0.05) 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(12,4,30,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(6,0,26,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,107,157,0.1); border: 1px solid rgba(255,107,157,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: #06001a; 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,107,157,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,107,157,0.12); color: var(--pink); }
.lnd-how-icon-wrap--purple { background: rgba(168,85,247,0.12); color: #a855f7; }
.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, #06001a, #0a0025); 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: #0a0025; 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,107,157,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: #06001a; 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,107,157,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), #a855f7);
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(255,107,157,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,107,157,0.6); }
.lnd-support-fab:active { transform: scale(0.95); }

/* ── Support Modal ── */
.sup-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(6,0,26,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.sup-overlay.hidden { display: none; }
.sup-box {
  background: #0c0420; 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), #a855f7);
  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,107,157,0.12); border: 1px solid rgba(255,107,157,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: #a855f7; }
.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: #06001a;
}
.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(168,85,247,0.14) 0%, rgba(255,107,157,0.06) 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: #030010; 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; }
}
@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; }
}
