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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ── Hero ── */
@keyframes lnd-orb-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-26px) scale(1.05); }
}
.lnd-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 24px 60px;
  background:
    linear-gradient(160deg, rgba(8,0,24,0.80) 0%, rgba(30,0,60,0.58) 55%, rgba(8,0,24,0.88) 100%),
    url('../images/game-bg.png') center/cover no-repeat;
}
.lnd-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.lnd-orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  animation: lnd-orb-drift 8s ease-in-out infinite;
}
.lnd-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.lnd-hero-left { max-width: 560px; }

/* Live badge */
@keyframes lnd-ping { 0% { transform:scale(1); opacity:1; } 100% { transform:scale(2.4); opacity:0; } }
.lnd-live-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px); border-radius: 50px;
  padding: 7px 18px; margin-bottom: 28px;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.88);
}
.lnd-live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; position: relative;
}
.lnd-live-dot::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid var(--green); animation: lnd-ping 1.6s ease-out infinite;
}

/* Title */
.lnd-title {
  font-size: clamp(44px, 9vw, 84px); font-weight: 800; line-height: 1.0;
  color: #fff; margin-bottom: 22px; letter-spacing: -2px;
}
.lnd-title em { color: var(--pink); font-style: normal; display: block; }

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

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

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

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

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

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

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

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

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

/* ── Responsive ── */
@media (max-width: 780px) {
  .lnd-hero-inner { flex-direction: column; }
  .lnd-wins-col { display: none; }
  .lnd-hero-left { text-align: center; max-width: 100%; }
  .lnd-live-badge { margin: 0 auto 26px; }
  .lnd-sub { margin-left: auto; margin-right: auto; }
  .lnd-actions { justify-content: center; }
  .lnd-trust { justify-content: center; }
  .lnd-title em { display: inline; }
}
/* Copa map selector */
.copa-map-picker {
  width: 100%;
  margin: 14px 0 18px;
}
.copa-map-label {
  color: rgba(255,255,255,.55);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.copa-map-track {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.copa-map-track::-webkit-scrollbar {
  display: none;
}
.copa-map-card {
  width: 66px;
  height: 86px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,.13);
  cursor: pointer;
  opacity: .58;
  transform: scale(.92);
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
  scroll-snap-align: center;
}
.copa-map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.copa-map-card.active {
  opacity: 1;
  transform: scale(1.08);
  box-shadow: 0 0 0 2px #5dff9b, 0 12px 28px rgba(0,0,0,.28), 0 0 22px rgba(93,255,155,.34);
}
.copa-map-name {
  color: #68ffae;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 12px rgba(104,255,174,.28);
}
.copa-map-picker-landing {
  max-width: 430px;
  margin: 18px 0 16px;
}
.copa-map-picker-landing .copa-map-card {
  width: 58px;
  height: 76px;
}
.copa-game-card {
  --copa-accent: #75f05b;
  --copa-accent2: #ffd81a;
  --copa-card: rgba(70,92,108,.78);
  --copa-btn-a: #63aee8;
  --copa-btn-b: #e8f7ff;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--copa-accent) 65%, rgba(255,255,255,.35));
  background:
    linear-gradient(180deg, transparent 0 148px, var(--copa-card) 149px),
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--copa-accent) 18%, transparent), transparent 48%);
  box-shadow: 0 26px 70px rgba(0,0,0,.45), 0 0 34px color-mix(in srgb, var(--copa-accent) 22%, transparent);
}
.copa-hero {
  height: 150px;
  margin: -18px -18px 18px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: #071d19;
}
.copa-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.copa-game-card .pnl-game-top,
.copa-game-card .pnl-chips {
  display: none !important;
}
.copa-game-card .pnl-quick.active,
.copa-game-card .pnl-quick:hover {
  background: radial-gradient(circle at 50% 45%, var(--copa-accent2), var(--copa-accent));
  color: #fff;
  box-shadow: 0 8px 26px color-mix(in srgb, var(--copa-accent) 45%, transparent);
}
.copa-game-card .pnl-meta-row {
  border-color: color-mix(in srgb, var(--copa-accent) 60%, rgba(255,255,255,.2));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--copa-accent) 18%, transparent);
}
.copa-game-card .pnl-meta-gold,
.copa-game-card #meta-vpp {
  color: var(--copa-accent2);
  text-shadow: 0 0 16px color-mix(in srgb, var(--copa-accent2) 42%, transparent);
}
.copa-game-card .pnl-play-btn {
  background: linear-gradient(135deg, var(--copa-btn-a), var(--copa-btn-b));
  color: #fff;
  box-shadow: 0 12px 32px color-mix(in srgb, var(--copa-accent) 34%, transparent);
}
.copa-game-card .copa-map-label {
  margin-left: 2px;
}
/* Canarinho do Pix landing clone */
.play-page {
  --play-bg: #010d06;
  --play-panel: #07140b;
  --play-text: #ffffff;
  --play-muted: rgba(255,255,255,.58);
  --play-accent: #31e36e;
  --play-accent2: #ffe100;
  min-height: 100vh;
  background: var(--play-bg);
  color: var(--play-text);
  font-family: 'Poppins', sans-serif;
}
.play-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, calc((100vw - 1120px) / 2));
  background: rgba(0,13,7,.94);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.play-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}
.play-brand img,
.play-footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.play-nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.play-nav-right strong {
  color: #3ff29a;
  font-size: 14px;
}
.play-panel-btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 24px;
  color: #fff;
  background: linear-gradient(135deg,#00d66d,#4bf29b);
  box-shadow: 0 12px 35px rgba(0,214,109,.32);
  font-weight: 900;
  cursor: pointer;
}
.play-exit-btn {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.32);
  font-weight: 700;
  cursor: pointer;
}
.play-hero {
  position: relative;
  min-height: 940px;
  padding-top: 58px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.play-hero-bg {
  position: absolute;
  inset: 58px 0 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.03);
  opacity: .72;
}
.play-hero-shade {
  position: absolute;
  inset: 58px 0 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(0,0,0,.10), rgba(0,0,0,.56) 38%, rgba(0,9,3,.94) 78%),
    linear-gradient(180deg, rgba(0,10,4,.48), #000b04 96%);
}
.play-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 32px));
  text-align: center;
  margin-top: -20px;
}
.play-online {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffd65a;
  font-weight: 900;
  font-size: 15px;
  padding: 9px 20px;
  border: 2px solid #ffe100;
  border-radius: 999px;
  background: rgba(255,139,0,.14);
  box-shadow: 0 0 20px rgba(255,225,0,.48), inset 0 0 18px rgba(255,225,0,.14);
  margin-bottom: 28px;
}
.play-hero h1 {
  font-size: clamp(44px, 5.8vw, 64px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 900;
  margin-bottom: 36px;
  text-shadow: 0 4px 26px rgba(0,0,0,.35);
}
.play-hero h1 span,
.play-section h2 span,
.play-final h2 span {
  background: linear-gradient(90deg,#37f1a0,#fff126);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.play-pick-title {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 15px;
}
.play-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
}
.play-arrow {
  border: 0;
  background: transparent;
  color: #ffb300;
  font-size: 70px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(255,179,0,.58);
  cursor: pointer;
}
.play-map-orb {
  position: relative;
  width: 228px;
  height: 228px;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid var(--play-accent2);
  box-shadow: 0 0 0 7px rgba(0,0,0,.75), 0 18px 55px rgba(0,0,0,.55);
  background: #184b27;
}
.play-map-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
}
.play-map-bird {
  position: absolute;
  left: 13%;
  top: 25%;
  width: 70%;
  height: 58%;
  object-fit: contain;
  filter: drop-shadow(0 7px 5px rgba(0,0,0,.38));
}
.play-map-name {
  color: #16ef80;
  font-size: 13px;
  font-weight: 900;
  margin: 12px 0 30px;
}
.play-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 396px;
  height: 66px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg,#37eb2f,#39e981);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 0 34px rgba(55,235,47,.42), 0 17px 34px rgba(0,0,0,.28);
  cursor: pointer;
}
.play-login-link {
  display: block;
  margin: 15px auto 24px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}
.play-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}
.play-trust span {
  color: #14f07d;
  border: 1px solid #00c96a;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 900;
  background: rgba(0,0,0,.24);
}
.play-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px,1fr));
  gap: 24px;
  padding: 45px max(24px, calc((100vw - 980px) / 2));
  background: #010b04;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.play-stats strong {
  display: block;
  color: #ffe100;
  font-size: 30px;
  font-weight: 900;
}
.play-stats span {
  color: rgba(255,255,255,.55);
  font-size: 14px;
}
.play-section {
  padding: 82px 24px;
  background: #010b04;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.play-section h2,
.play-final h2 {
  font-size: clamp(34px,4vw,44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.play-section > p,
.play-final p {
  color: rgba(255,255,255,.58);
  margin-bottom: 50px;
}
.play-cards {
  width: min(990px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.play-cards article {
  text-align: left;
  min-height: 218px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.07);
}
.play-card-icon {
  font-size: 34px;
  margin-bottom: 20px;
}
.play-cards h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}
.play-cards p {
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}
.play-testimonials {
  padding-top: 70px;
}
.play-stars {
  color: #ffe100;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.play-cards small {
  color: rgba(255,255,255,.45);
}
.play-final {
  padding: 92px 24px;
  text-align: center;
  background: radial-gradient(circle at 50% 35%, rgba(0,150,69,.35), transparent 40%), #010b04;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.play-final-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.play-red-btn,
.play-outline-btn {
  height: 55px;
  border-radius: 999px;
  padding: 0 42px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
}
.play-red-btn {
  color: #fff;
  background: #e53d2c;
  border: 0;
  box-shadow: 0 14px 30px rgba(229,61,44,.28);
}
.play-outline-btn {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,.38);
}
.play-footer {
  padding: 54px 24px 40px;
  text-align: center;
  background: #010b04;
}
.play-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  margin-bottom: 18px;
}
.play-footer p {
  max-width: 520px;
  margin: 0 auto 18px;
  color: rgba(255,255,255,.28);
  font-size: 12px;
  line-height: 1.55;
}
.play-footer small {
  color: rgba(255,255,255,.22);
}
@media (max-width: 760px) {
  .play-nav {
    padding: 0 14px;
  }
  .play-brand span {
    font-size: 15px;
  }
  .play-nav-right {
    gap: 8px;
  }
  .play-nav-right strong,
  .play-exit-btn {
    display: none;
  }
  .play-panel-btn {
    padding: 9px 14px;
  }
  .play-hero {
    min-height: 820px;
  }
  .play-selector {
    gap: 22px;
  }
  .play-map-orb {
    width: 190px;
    height: 190px;
  }
  .play-main-btn {
    min-width: min(360px, 92vw);
  }
  .play-stats,
  .play-cards {
    grid-template-columns: 1fr;
  }
}

/* FlapyCopa game-home */
#page-landing {
  background: #07121a !important;
  overflow: hidden;
}
.fc-home {
  --play-accent: #31e36e;
  --play-accent2: #ffe100;
  position: relative;
  width: min(100vw, 520px);
  min-height: 100dvh;
  height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  font-family: 'Poppins', system-ui, sans-serif;
  background: #082041;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 80px rgba(0,0,0,.65);
}
.fc-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(5px) saturate(1.45) contrast(1.08);
  transform: scale(1.08);
  opacity: .92;
}
.fc-home::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(0,188,255,.22), transparent 30%),
    linear-gradient(90deg, rgba(24,255,0,.5), transparent 12%, transparent 88%, rgba(24,255,0,.5)),
    linear-gradient(180deg, rgba(0,18,57,.14), rgba(0,0,0,.12) 55%, rgba(0,41,12,.62));
  pointer-events: none;
}
.fc-home::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255,255,255,.025) 39px 40px),
    radial-gradient(circle at 50% 88%, rgba(83,255,73,.32), transparent 28%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.fc-bg-logo {
  position: absolute;
  z-index: 2;
  left: 7%;
  right: 7%;
  top: 17%;
  text-align: center;
  font-size: clamp(50px, 16vw, 82px);
  line-height: .86;
  font-weight: 1000;
  letter-spacing: -4px;
  color: rgba(255,255,255,.75);
  text-shadow: 0 8px 0 rgba(0,48,102,.65), 0 0 26px rgba(255,255,255,.48);
  filter: blur(1.6px);
  transform: perspective(420px) rotateX(12deg);
  pointer-events: none;
}
.fc-bg-logo span {
  color: #ffcc27;
}
.fc-top,
.fc-stage,
.fc-bottom {
  position: relative;
  z-index: 5;
}
.fc-top {
  height: 138px;
  padding: 18px 14px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(126px, .95fr) 56px;
  gap: 9px;
  align-items: start;
}
.fc-player-card,
.fc-wallet,
.fc-settings,
.home-side-btn {
  border: 3px solid rgba(39,95,180,.62);
  background: linear-gradient(180deg, rgba(13,50,116,.94), rgba(7,25,72,.98));
  box-shadow: inset 0 2px 0 rgba(255,255,255,.13), 0 7px 0 rgba(0,0,0,.22), 0 14px 20px rgba(0,0,0,.28);
}
.fc-player-card {
  height: 86px;
  border-radius: 22px;
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  cursor: pointer;
}
.fc-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle, #ffdb4a, #a86605);
  border: 3px solid #fff0a6;
}
.fc-avatar img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  image-rendering: auto;
}
.fc-player-info {
  display: grid;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.fc-player-info b {
  font-size: 18px;
  font-weight: 1000;
  line-height: 1;
  text-shadow: 0 3px 0 rgba(0,0,0,.4);
}
.fc-xp {
  height: 17px;
  border-radius: 999px;
  background: #03091b;
  border: 2px solid rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0,0,0,.8);
}
.fc-xp i {
  display: block;
  width: 62.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg,#25ff4c,#b7ff60);
}
.fc-xp em {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 2px #000;
}
.fc-wallets {
  display: grid;
  gap: 8px;
}
.fc-auth-actions {
  display: grid;
  gap: 8px;
}
.fc-auth-actions button {
  height: 56px;
  border: 3px solid rgba(39,95,180,.62);
  border-radius: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .2px;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
  background: linear-gradient(180deg, rgba(13,50,116,.94), rgba(7,25,72,.98));
  box-shadow: inset 0 2px 0 rgba(255,255,255,.13), 0 7px 0 rgba(0,0,0,.22), 0 14px 20px rgba(0,0,0,.28);
  cursor: pointer;
}
.fc-auth-actions button:last-child {
  color: #06181d;
  background: linear-gradient(180deg,#8cff59,#22d35b);
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.fc-wallet {
  height: 56px;
  border-radius: 16px;
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) 31px;
  align-items: center;
  gap: 6px;
  color: #fff;
  cursor: pointer;
}
.fc-wallet b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 1000;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}
.fc-round,
.fc-plus,
.fc-settings {
  display: grid;
  place-items: center;
}
.fc-round {
  width: 33px;
  height: 33px;
  border-radius: 50%;
}
.fc-round svg,
.fc-plus svg,
.fc-settings svg,
.home-side-btn svg,
.fc-bottom svg,
.fc-play svg {
  width: 24px;
  height: 24px;
}
.fc-round.gold {
  color: #fff9c4;
  background: linear-gradient(180deg,#ffe35a,#ec8b08);
}
.fc-round.cyan {
  color: #fff;
  background: linear-gradient(180deg,#7ff5ff,#1bb7dd);
}
.fc-plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg,#83ff37,#14bd1f);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.35), 0 3px 0 rgba(0,0,0,.25);
}
.fc-settings {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
  overflow: visible;
  padding: 0;
}
.fc-settings svg {
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.35));
}
.fc-stage {
  height: calc(100dvh - 138px - 102px);
  min-height: 520px;
}
.fc-menu {
  position: absolute;
  top: 30%;
  display: grid;
  gap: 18px;
}
.fc-menu.left {
  left: 14px;
}
.fc-menu.right {
  right: 14px;
}
.home-side-btn {
  width: 84px;
  height: 94px;
  border-radius: 18px;
  color: #ffd943;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  cursor: pointer;
}
.home-side-btn span {
  color: #fff;
  font-size: 11px;
  font-weight: 1000;
  line-height: 1.05;
  text-shadow: 0 2px 0 rgba(0,0,0,.42);
}
.home-side-btn svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 3px 0 rgba(0,0,0,.28));
}
.fc-selector {
  position: absolute;
  left: 50%;
  top: 27%;
  width: 275px;
  height: 240px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
}
.fc-bird-main {
  width: 260px;
  max-width: 60vw;
  object-fit: contain;
  filter: drop-shadow(0 15px 11px rgba(0,0,0,.45));
  animation: fcFloat 2.4s ease-in-out infinite;
}
@keyframes fcFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.fc-arrow {
  position: absolute;
  top: 52%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 5px solid #080917;
  display: grid;
  place-items: center;
  color: #10101a;
  font-size: 52px;
  line-height: 1;
  font-weight: 1000;
  background: linear-gradient(180deg,#fff148,#ffb51d);
  box-shadow: 0 5px 0 rgba(0,0,0,.35), inset 0 2px 0 rgba(255,255,255,.6);
  cursor: pointer;
}
.fc-arrow:first-child { left: -42px; }
.fc-arrow:last-child { right: -42px; }
.fc-country {
  position: absolute;
  left: 50%;
  top: calc(27% + 255px);
  transform: translateX(-50%);
  min-width: 104px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: #04040a;
  border: 4px solid #fff;
  box-shadow: 0 5px 0 rgba(0,0,0,.32);
  font-size: 13px;
  font-weight: 1000;
  text-align: center;
}
.fc-play {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(310px, calc(100% - 128px));
  min-height: 88px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg,#ffe969 0%,#ffb629 26%,#ed7511 100%);
  color: #fff;
  box-shadow: inset 0 4px 0 rgba(255,255,255,.5), inset 0 -4px 0 rgba(137,62,5,.35), 0 7px 0 #9d4d08, 0 16px 26px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
}
.fc-play span {
  font-size: 35px;
  line-height: .82;
  font-weight: 1000;
  letter-spacing: -1px;
  color: #fff;
  -webkit-text-stroke: 2px #8a4b18;
  text-shadow: 0 4px 0 #8a4b18, 0 7px 6px rgba(0,0,0,.25);
}
.fc-play i {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  background: #fff;
  color: #8a4b18;
  display: grid;
  place-items: center;
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.16);
}
.fc-play svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  stroke: currentColor;
}
.fc-coin {
  position: absolute;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff2a6;
  font-size: 22px;
  font-weight: 1000;
  background: radial-gradient(circle at 35% 28%, #fff49b, #ffbf1d 45%, #e87804 78%);
  border: 3px solid #ffd54a;
  box-shadow: 0 5px 0 rgba(121,62,0,.55), 0 0 13px rgba(255,201,35,.5);
  animation: coinDrift 3.5s ease-in-out infinite;
}
.fc-coin.c1 { left: 22%; top: 28%; }
.fc-coin.c2 { right: 18%; top: 61%; animation-delay: .6s; }
.fc-coin.c3 { left: 24%; top: 73%; animation-delay: 1s; }
@keyframes coinDrift {
  0%,100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-16px) rotate(12deg); }
}

/* FlapyCopa panel menu */
#page-painel {
  background: #07120c !important;
  overflow: hidden;
  height: 100dvh;
  min-height: 100dvh;
}
.pnl-fc-mode {
  background: #07120c !important;
  color: #fff;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden !important;
}
.pnl-fc-mode .pnl-header,
.pnl-fc-mode .pnl-bottom-nav {
  display: none !important;
}
.pnl-fc-mode .pnl-scroll {
  height: 100dvh !important;
  min-height: 100dvh !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
}
.pnl-fc-mode #pnl-banner-wrap,
.pnl-fc-mode .pnl-tips-wrap,
.pnl-fc-mode .copa-game-card {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}
.pnl-fc-mode .fc-panel-home {
  display: block !important;
  width: min(100vw, 520px);
  max-width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
}
.pnl-fc-mode .fc-bg {
  opacity: .98;
  filter: blur(4px) saturate(1.25) contrast(1.08);
}
.pnl-fc-mode .fc-bg-logo {
  top: 16%;
}
.pnl-fc-mode .fc-wallet {
  grid-template-columns: 32px minmax(0, 1fr) 30px;
  gap: 6px;
}
.pnl-fc-mode .fc-wallet b {
  display: block;
  min-width: 0;
  padding-inline: 1px;
}
.pnl-fc-mode .fc-plus {
  justify-self: end;
}
.pnl-fc-mode .fc-settings {
  overflow: visible;
  border-radius: 18px;
}
.pnl-fc-mode .fc-settings svg {
  width: 30px;
  height: 30px;
}
.pnl-fc-mode .fc-coin {
  z-index: 3;
  pointer-events: none;
}
.pnl-fc-mode .fc-coin.c2 {
  display: none;
}
.pnl-fc-mode .fc-bird-main {
  width: 270px;
  max-width: 58vw;
}
.pnl-fc-mode .fc-country {
  text-transform: uppercase;
}
.pnl-fc-mode .fc-bottom button.active {
  background: linear-gradient(180deg,#ffd85a,#ecad1d);
}
.pnl-fc-mode .fc-bottom button.active svg {
  transform: translateY(-4px) scale(1.06);
}
.fc-bet-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(10px);
}
.fc-bet-box {
  --play-accent: #31e36e;
  --play-accent2: #ffe100;
  position: relative;
  width: min(430px, 94vw);
  border-radius: 24px;
  padding: 24px 20px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--play-accent2) 22%, transparent), transparent 45%),
    linear-gradient(160deg, rgba(22, 55, 38, .96), rgba(7, 22, 16, .98));
  border: 1.5px solid color-mix(in srgb, var(--play-accent2) 70%, rgba(255,255,255,.2));
  box-shadow: 0 26px 70px rgba(0,0,0,.58), 0 0 36px color-mix(in srgb, var(--play-accent) 28%, transparent);
}
.fc-bet-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: rgba(255,255,255,.12);
  cursor: pointer;
}
.fc-bet-title {
  font-size: 24px;
  font-weight: 950;
  text-align: center;
  color: var(--play-accent2);
}
.fc-bet-sub {
  margin-top: 5px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}
.fc-bet-balance {
  margin: 16px 0 12px;
  display: flex;
  justify-content: space-between;
  padding: 10px 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.09);
  font-weight: 800;
}
.fc-bet-balance strong {
  color: var(--play-accent);
}
.fc-bet-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.fc-bet-row button {
  height: 45px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  color: #fff;
  background: rgba(255,255,255,.12);
  font-weight: 950;
  cursor: pointer;
}
.fc-bet-row button.active {
  color: #08130e;
  background: linear-gradient(135deg, var(--play-accent), var(--play-accent2));
}
.fc-bet-input {
  margin-top: 12px;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 15px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.fc-bet-input span {
  color: rgba(255,255,255,.58);
  font-weight: 900;
}
.fc-bet-input input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}
.fc-bet-preview {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--play-accent2) 50%, rgba(255,255,255,.16));
}
.fc-bet-preview div {
  padding: 12px;
  text-align: center;
  background: rgba(255,255,255,.08);
}
.fc-bet-preview div + div {
  border-left: 1px solid rgba(255,255,255,.12);
}
.fc-bet-preview small {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.fc-bet-preview b {
  display: block;
  margin-top: 3px;
  color: var(--play-accent2);
  font-size: 18px;
  font-weight: 950;
}
.fc-bet-confirm {
  margin-top: 14px;
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #e33b28, #ffb31a);
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
  cursor: pointer;
}

@media (min-width: 760px) {
  #page-painel {
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(0,141,52,.3), transparent 36%), #07120c !important;
  }
  .pnl-fc-mode .fc-panel-home {
    height: min(100dvh, 900px);
    min-height: min(100dvh, 900px);
    aspect-ratio: 9 / 16;
    border-radius: 10px;
  }
}

@media (max-width: 440px) {
  .pnl-fc-mode .fc-top {
    grid-template-columns: minmax(0, 1.18fr) minmax(122px, .92fr) 48px;
  }
  .pnl-fc-mode .fc-wallet {
    grid-template-columns: 28px minmax(0, 1fr) 26px;
    padding: 6px 5px;
  }
  .pnl-fc-mode .fc-wallet b {
    font-size: 11px;
  }
  .pnl-fc-mode .fc-plus {
    width: 26px;
    height: 26px;
  }
  .pnl-fc-mode .fc-settings {
    width: 48px;
    height: 48px;
  }
  .pnl-fc-mode .fc-settings svg {
    width: 27px;
    height: 27px;
  }
  .pnl-fc-mode .fc-bird-main {
    width: 240px;
    max-width: 56vw;
  }
}
.fc-bottom {
  height: 102px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(180deg, rgba(16,51,111,.96), rgba(7,20,56,.99));
  border-top: 3px solid rgba(69,128,220,.55);
}
.fc-bottom button {
  position: relative;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 1000;
  cursor: pointer;
  text-shadow: 0 2px 0 rgba(0,0,0,.4);
}
.fc-bottom button.active {
  background: linear-gradient(180deg,#ffd85a,#e8a41c);
}
.fc-bottom svg {
  width: 35px;
  height: 35px;
  padding: 8px;
  border-radius: 50%;
  color: #45eaff;
  background: radial-gradient(circle,#1647a5,#061846 68%);
  box-shadow: 0 0 0 3px rgba(6,19,60,.9), 0 0 16px rgba(34,122,255,.8), inset 0 2px 0 rgba(255,255,255,.22);
}
.fc-bottom button:not(.active) svg {
  color: #ffe95d;
}
.fc-bottom button.active svg {
  color: #38eaff;
}
@media (min-width: 760px) {
  #page-landing {
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(0,120,44,.26), transparent 35%), #07121a !important;
  }
  .fc-home {
    height: min(100dvh, 900px);
    min-height: min(100dvh, 900px);
    aspect-ratio: 9 / 16;
    border-radius: 10px;
  }
}
@media (max-width: 440px) {
  .fc-top {
    grid-template-columns: minmax(0, 1.28fr) minmax(116px, .9fr) 52px;
    padding-inline: 10px;
    gap: 6px;
  }
  .fc-player-card {
    height: 78px;
    border-radius: 18px;
  }
  .fc-avatar {
    width: 56px;
    height: 56px;
  }
  .fc-player-info b {
    font-size: 15px;
  }
  .fc-wallet {
    height: 51px;
    grid-template-columns: 30px minmax(0,1fr) 28px;
    padding-inline: 6px;
    gap: 5px;
  }
  .fc-auth-actions button {
    height: 51px;
    font-size: 11px;
    border-radius: 14px;
  }
  .fc-wallet b {
    font-size: 12px;
  }
  .fc-round,
  .fc-plus {
    width: 28px;
    height: 28px;
  }
  .fc-settings {
    width: 52px;
    height: 52px;
  }
  .home-side-btn {
    width: 74px;
    height: 82px;
    border-radius: 16px;
  }
  .home-side-btn span {
    font-size: 10px;
  }
  .home-side-btn svg {
    width: 30px;
    height: 30px;
  }
  .fc-menu {
    gap: 14px;
  }
  .fc-menu.left { left: 10px; }
  .fc-menu.right { right: 10px; }
  .fc-bird-main {
    width: 235px;
  }
  .fc-play {
    width: min(292px, calc(100% - 110px));
    min-height: 82px;
  }
  .fc-play span {
    font-size: 31px;
  }
  .fc-bottom {
    height: 94px;
  }
  .fc-bottom span {
    font-size: 9px;
  }
}
@media (max-height: 760px) {
  .fc-stage {
    min-height: 470px;
  }
  .fc-menu {
    top: 24%;
    gap: 10px;
  }
  .home-side-btn {
    height: 76px;
  }
  .fc-selector {
    top: 23%;
  }
  .fc-country {
    top: calc(23% + 235px);
  }
  .fc-play {
    bottom: 18px;
  }
}
