/* ============================================================
   LOBINHO.BET CASINO — LOBBY & PAGES
   ============================================================ */

/* ── LAYOUT BASE ─────────────────────────────────────────── */
.main { padding-top: 68px; min-height: 100vh; width: 100%; }
.container    { width: 100%; margin: 0; padding: 0 clamp(16px, 3vw, 56px); }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.container-lg { width: 100%; margin: 0; padding: 0 clamp(16px, 3vw, 56px); }

/* Navbar full-width com padding adaptativo */
.navbar { padding: 0 clamp(16px, 3vw, 56px) !important; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px var(--space-6) 70px;
  text-align: center;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,166,35,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(124,58,237,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 60%, rgba(16,185,129,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #08102a 0%, #060912 100%);
}

/* Partículas decorativas */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(245,166,35,0.1);
  top: -100px; left: 50%; transform: translateX(-50%);
  animation: floatY 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(124,58,237,0.08);
  bottom: -50px; right: 10%;
  animation: floatY 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: rgba(16,185,129,0.06);
  top: 30%; left: 5%;
  animation: floatY 12s ease-in-out infinite 2s;
}

.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 6px 16px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.hero-eyebrow .pulse-dot { margin-right: 2px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
  color: var(--text-primary);
}
.hero-title .line-gold {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(245,166,35,0.4));
}

.hero-description {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero-badges {
  display: flex; flex-wrap: wrap;
  gap: var(--space-3); justify-content: center;
  margin-bottom: var(--space-8);
}
.hero-badge {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 8px 18px;
  background: rgba(15,22,40,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
  transition: all var(--duration) var(--ease);
}
.hero-badge:hover { border-color: var(--border-hover); color: var(--text-primary); transform: translateY(-2px); }
.hero-badge .badge-icon { font-size: 16px; }

.hero-cta {
  display: flex; gap: var(--space-4);
  justify-content: center; flex-wrap: wrap;
}
.hero-cta .btn-xl { min-width: 200px; letter-spacing: 0.02em; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: var(--space-5) var(--space-6);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-glow) 50%, transparent 100%);
}
.stats-inner {
  width: 100%; margin: 0 auto;
  display: flex; gap: clamp(24px, 4vw, 80px);
  justify-content: center; flex-wrap: wrap;
}
.stat-item {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-1) 0;
}
.stat-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.stat-text-wrap {}
.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-separator {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SEARCH BAR ──────────────────────────────────────────── */
.search-section {
  padding: var(--space-8) clamp(16px, 3vw, 56px) 0;
  width: 100%; margin: 0;
}
.search-wrap {
  display: flex; gap: var(--space-4);
  align-items: center;
}
.search-field {
  flex: 1; position: relative;
  max-width: 100%;
  min-width: 0;
}
.search-field-icon {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted); font-size: 16px; pointer-events: none;
}
.search-input {
  padding-left: 46px !important;
  height: 46px;
  background: var(--bg-card) !important;
  border-color: var(--border-card) !important;
  border-radius: var(--radius-md) !important;
  font-size: var(--text-base) !important;
}
.search-input:focus {
  border-color: var(--border-focus) !important;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1) !important;
}

/* Filtros de categoria */
.filter-chips {
  display: flex; gap: var(--space-2); flex-wrap: wrap;
}
.filter-chip {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  display: flex; align-items: center; gap: var(--space-2);
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); transform: translateY(-1px); }
.filter-chip.active { border-color: var(--gold); color: #000; background: var(--gold); }
.filter-chip .chip-count {
  font-size: var(--text-xs);
  background: rgba(255,255,255,0.15);
  padding: 1px 7px; border-radius: var(--radius-full);
}
.filter-chip.active .chip-count { background: rgba(0,0,0,0.2); }

/* ── SECTION ─────────────────────────────────────────────── */
.section    { padding: var(--space-10) clamp(16px, 3vw, 56px); width: 100%; margin: 0; }
.section-sm { padding: var(--space-6) clamp(16px, 3vw, 56px) 0; width: 100%; margin: 0; }

.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-6);
  gap: var(--space-4);
}
.section-title-wrap { display: flex; align-items: center; gap: var(--space-3); }
.section-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 800;
  letter-spacing: -0.02em; color: var(--text-primary);
}
.section-subtitle { font-size: var(--text-sm); color: var(--text-muted); margin-top: 2px; }
.section-action { flex-shrink: 0; }

/* ── GAME GRID ───────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(140px, 15vw, 200px), 1fr));
  gap: clamp(10px, 1.2vw, 20px);
  width: 100%;
}
.games-grid-featured {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(160px, 17vw, 230px), 1fr));
  gap: clamp(12px, 1.4vw, 24px);
  width: 100%;
}

/* ── GAME CARD ───────────────────────────────────────────── */
.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  group: true;
}
.game-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(6,9,18,0.97) 0%,
    rgba(6,9,18,0.6) 40%,
    rgba(6,9,18,0.1) 70%,
    transparent 100%
  );
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.game-card:hover { transform: translateY(-8px) scale(1.03); border-color: rgba(245,166,35,0.4); }
.game-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(245,166,35,0.2); }
.game-card:hover::before { opacity: 1; }

.game-card-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s var(--ease);
}
.game-card:hover .game-card-img { transform: scale(1.08); }

/* Shimmer no carregamento */
.game-card-img-skeleton {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card2) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.game-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: var(--space-4) var(--space-3) var(--space-3);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.3s var(--ease);
}
.game-card:hover .game-card-overlay { transform: translateY(0); opacity: 1; }

.game-card-name {
  font-size: var(--text-sm); font-weight: 700;
  color: #fff; line-height: 1.3;
  margin-bottom: var(--space-2);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.game-card-provider {
  font-size: var(--text-xs); color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-3);
}
.game-card-play {
  width: 100%;
  padding: 9px 12px;
  background: var(--gradient-gold);
  border: none; border-radius: var(--radius);
  color: #000; font-size: var(--text-sm); font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 12px rgba(245,166,35,0.4);
}
.game-card-play:hover { box-shadow: 0 6px 20px rgba(245,166,35,0.6); transform: translateY(-1px); }

/* Badges do card */
.game-card-badges {
  position: absolute; top: var(--space-3); left: var(--space-3); z-index: 3;
  display: flex; flex-direction: column; gap: 4px;
}
.game-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 10px; font-weight: 700;
  backdrop-filter: blur(8px);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.game-badge-hot  { background: rgba(239,68,68,0.85);  color: #fff; }
.game-badge-new  { background: rgba(16,185,129,0.85); color: #fff; }
.game-badge-pop  { background: rgba(245,166,35,0.9);  color: #000; }
.game-badge-top  { background: rgba(124,58,237,0.85); color: #fff; }

/* RTP badge */
.game-card-rtp {
  position: absolute; top: var(--space-3); right: var(--space-3); z-index: 3;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-size: 10px; font-weight: 700;
  color: var(--green-light);
  backdrop-filter: blur(4px);
}

/* Card featured (maior) */
.game-card-featured {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 320px;
}

/* Efeito de brilho ao hover */
.game-card::after {
  content: ''; position: absolute;
  top: -100%; left: -60%; width: 40%; height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  z-index: 4; pointer-events: none;
}
.game-card:hover::after { left: 160%; }

/* ── GAME CARD SKELETON ──────────────────────────────────── */
.game-card-skel {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.game-card-skel .skeleton { width: 100%; height: 100%; border-radius: var(--radius-md); }

/* ── HORIZONTAL SCROLL ROW ───────────────────────────────── */
.games-row {
  display: flex; gap: var(--space-4);
  overflow-x: auto; padding-bottom: var(--space-3);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.games-row::-webkit-scrollbar { display: none; }
.games-row .game-card { flex-shrink: 0; width: 180px; scroll-snap-align: start; }

/* ── LIVE TICKER ─────────────────────────────────────────── */
.live-ticker {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: var(--space-8);
  height: 52px;
  position: relative;
}
.ticker-label {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 700;
  color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap; flex-shrink: 0;
  padding: 0 var(--space-5);
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  z-index: 2;
}
.ticker-viewport {
  flex: 1; min-width: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 48px), transparent 100%);
}
.ticker-track {
  display: flex;
  gap: var(--space-8);
  animation: tickerScroll 42s linear infinite;
  white-space: nowrap;
  padding-left: var(--space-5);
  will-change: transform;
}
.live-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--text-secondary);
  flex-shrink: 0;
}
.ticker-item .ticker-win  { color: var(--green-light); font-weight: 700; }
.ticker-item .ticker-game { color: var(--text-primary); font-weight: 600; }
.ticker-item .ticker-user { color: var(--text-muted); }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── BANNER PROMO ────────────────────────────────────────── */
.promo-banner {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 48px) clamp(24px, 4vw, 64px);
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1a3a 50%, #0a1228 100%);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-8);
  margin: 0 clamp(16px, 3vw, 56px) var(--space-10);
}
.promo-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(245,166,35,0.1) 0%, transparent 60%);
}
.promo-banner::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 50%, rgba(124,58,237,0.15) 0%, transparent 60%);
}
.promo-text { position: relative; z-index: 1; flex: 1; }
.promo-eyebrow {
  font-size: var(--text-xs); font-weight: 700;
  color: var(--purple-light); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: var(--space-2);
}
.promo-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px); font-weight: 900;
  line-height: 1.15; margin-bottom: var(--space-2);
}
.promo-title .highlight { color: var(--gold); }
.promo-desc { font-size: var(--text-base); color: var(--text-secondary); max-width: 400px; }
.promo-cta { position: relative; z-index: 1; flex-shrink: 0; }
.promo-stars {
  position: absolute; right: var(--space-10); top: 50%; transform: translateY(-50%);
  font-size: 80px; opacity: 0.06; pointer-events: none; user-select: none;
  animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow { to { transform: translateY(-50%) rotate(360deg); } }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  margin-top: var(--space-20);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.footer-main {
  width: 100%; margin: 0;
  padding: var(--space-16) clamp(16px, 3vw, 56px) var(--space-12);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 3vw, 64px);
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.03em; margin-bottom: var(--space-4);
  display: flex; align-items: center; gap: var(--space-2);
}
.footer-logo .logo-icon {
  width: 32px; height: 32px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.footer-logo .logo-bet { color: var(--gold); }
.footer-desc {
  font-size: var(--text-sm); color: var(--text-muted);
  line-height: 1.75; max-width: 280px; margin-bottom: var(--space-5);
}
.footer-socials { display: flex; gap: var(--space-3); }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; color: var(--text-muted);
  transition: all var(--duration) var(--ease);
  text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); transform: translateY(-2px); }

.footer-col-title {
  font-size: var(--text-sm); font-weight: 700;
  color: var(--text-primary); margin-bottom: var(--space-5);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link {
  font-size: var(--text-sm); color: var(--text-muted);
  display: flex; align-items: center; gap: var(--space-2);
  transition: color var(--duration-fast) var(--ease);
}
.footer-link:hover { color: var(--gold); }
.footer-link::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: background var(--duration-fast); }
.footer-link:hover::before { background: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-5) clamp(16px, 3vw, 56px);
  width: 100%; margin: 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-4);
}
.footer-copyright { font-size: var(--text-xs); color: var(--text-muted); }
.footer-certs { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.cert-badge {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 5px 12px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs); font-weight: 600; color: var(--text-muted);
}
.footer-responsible {
  font-size: var(--text-xs); color: var(--text-muted);
  width: 100%; margin: 0;
  padding: 0 clamp(16px, 3vw, 56px) var(--space-6);
  line-height: 1.7;
}
.footer-responsible strong { color: var(--text-secondary); }

/* ── PÁGINA DE AUTH ──────────────────────────────────────── */
.auth-page {
  min-height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-6) clamp(16px, 3vw, 48px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,166,35,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 100%, rgba(124,58,237,0.1) 0%, transparent 55%),
    var(--bg-deep);
}
.auth-page::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.auth-box {
  width: 100%; max-width: 460px;
  position: relative; z-index: 1;
  animation: fadeInUp 0.5s var(--ease-out) both;
}

.auth-logo-wrap {
  text-align: center; margin-bottom: var(--space-8);
}
.auth-logo {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 30px; font-weight: 900; letter-spacing: -0.03em;
}
.auth-logo .logo-icon {
  width: 44px; height: 44px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-gold);
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.auth-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold);
}
.auth-card-title { font-size: var(--text-2xl); margin-bottom: var(--space-1); }
.auth-card-sub { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-6); }

.auth-footer-text {
  text-align: center; margin-top: var(--space-5);
  font-size: var(--text-sm); color: var(--text-muted);
}
.auth-footer-text a { color: var(--gold); font-weight: 600; }
.auth-footer-text a:hover { text-decoration: underline; }

/* ── WALLET PAGE ─────────────────────────────────────────── */
.wallet-page {
  padding: 92px clamp(16px, 3vw, 56px) var(--space-16);
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.wallet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
}
@media (min-width: 1024px) {
  .wallet-page { max-width: none; padding-left: clamp(32px, 6vw, 120px); padding-right: clamp(32px, 6vw, 120px); }
  .wallet-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

.balance-hero-card {
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1a3a 60%, #060912 100%);
  border: 1px solid rgba(245,166,35,0.2);
  text-align: center; margin-bottom: var(--space-6);
  position: relative; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 60px rgba(245,166,35,0.06);
}
.balance-hero-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,166,35,0.15) 0%, transparent 65%);
}
.balance-hero-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold);
}
.balance-label-text {
  font-size: var(--text-xs); font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: var(--space-2);
  position: relative; z-index: 1;
}
.balance-value-display {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 54px); font-weight: 900;
  color: var(--gold); letter-spacing: -0.03em;
  line-height: 1; margin-bottom: var(--space-6);
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 20px rgba(245,166,35,0.4));
}
.balance-actions-row {
  display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* História de transações */
.transaction-list { display: flex; flex-direction: column; gap: var(--space-2); }
.transaction-item {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease);
}
.transaction-item:hover { border-color: var(--border-hover); background: rgba(26,34,56,0.8); }
.transaction-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.transaction-icon.deposit { background: rgba(16,185,129,0.12); }
.transaction-icon.withdraw { background: rgba(245,166,35,0.12); }
.transaction-info { flex: 1; min-width: 0; }
.transaction-type { font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); }
.transaction-date { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }
.transaction-right { text-align: right; flex-shrink: 0; }
.transaction-amount {
  font-size: var(--text-base); font-weight: 700;
  display: block;
}
.transaction-amount.plus  { color: var(--green-light); }
.transaction-amount.minus { color: var(--gold); }

/* ── GAME PAGE ───────────────────────────────────────────── */
.game-page { height: 100vh; display: flex; flex-direction: column; background: #000; overflow: hidden; }

.game-topbar {
  height: 54px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--space-5);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0; z-index: 10;
}
.game-topbar-left { display: flex; align-items: center; gap: var(--space-3); }
.game-back-btn {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 7px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary); font-size: var(--text-sm); font-weight: 500;
  cursor: pointer; transition: all var(--duration-fast) var(--ease);
  text-decoration: none;
}
.game-back-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); }
.game-title-tag {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 700; color: var(--text-primary);
}
.game-title-sep { color: var(--text-disabled); }

.game-topbar-right { display: flex; align-items: center; gap: var(--space-3); }
.game-balance-display {
  display: flex; align-items: center; gap: var(--space-2);
  padding: 6px 14px;
  background: var(--gold-subtle);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 700; color: var(--gold);
}
.game-fullscreen-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-muted); font-size: 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast) var(--ease);
}
.game-fullscreen-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-subtle); }

.game-frame-container { flex: 1; position: relative; }
.game-frame-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.game-loading {
  position: absolute; inset: 0;
  background: var(--bg-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-5);
  z-index: 5;
}
.game-loading.hidden { display: none; }
.game-loading-logo { font-family: var(--font-display); font-size: 28px; font-weight: 900; }
.game-loading-logo .logo-bet { color: var(--gold); }
.game-loading-bar {
  width: 200px; height: 3px;
  background: var(--bg-input); border-radius: var(--radius-full); overflow: hidden;
}
.game-loading-progress {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  animation: loadProgress 2s var(--ease-out) both;
}
@keyframes loadProgress { from { width: 0; } to { width: 100%; } }

/* ── ADMIN ────────────────────────────────────────────────── */
.admin-page {
  padding: 92px clamp(16px, 3vw, 56px) var(--space-16);
  width: 100%; margin: 0;
}
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4); margin-bottom: var(--space-8); }
.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex; align-items: center; gap: var(--space-4);
  position: relative; overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.admin-stat-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.admin-stat-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold); opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.admin-stat-card:hover::after { opacity: 1; }
.admin-stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.admin-stat-icon.gold   { background: var(--gold-subtle);           border: 1px solid rgba(245,166,35,0.2); }
.admin-stat-icon.green  { background: rgba(16,185,129,0.1);         border: 1px solid rgba(16,185,129,0.2); }
.admin-stat-icon.purple { background: rgba(124,58,237,0.1);         border: 1px solid rgba(124,58,237,0.2); }
.admin-stat-value { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 900; color: var(--text-primary); line-height: 1; }
.admin-stat-label { font-size: var(--text-xs); color: var(--text-muted); margin-top: 4px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* Tabela admin */
.admin-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border-card); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  padding: 12px 16px;
  background: var(--bg-input);
  font-size: var(--text-xs); font-weight: 700;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.08em; text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 16px;
  font-size: var(--text-sm); color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr { transition: background var(--duration-fast) var(--ease); }
.admin-table tbody tr:hover { background: rgba(255,255,255,0.025); }
.admin-table .td-name { font-weight: 600; color: var(--text-primary); }
.admin-table .td-email { font-size: var(--text-xs); color: var(--text-muted); }
.admin-table .td-amount { font-weight: 700; color: var(--gold); }
.admin-table .td-actions { display: flex; gap: var(--space-2); }

/* ── EMPTY STATE ─────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: var(--space-16) var(--space-6);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
}
.empty-icon {
  width: 72px; height: 72px;
  border-radius: var(--radius-xl);
  background: var(--bg-input);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: var(--space-2);
}
.empty-title { font-size: var(--text-lg); font-weight: 700; }
.empty-desc { font-size: var(--text-sm); color: var(--text-muted); max-width: 320px; }

/* ── PAGINAÇÃO ───────────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: var(--space-2); justify-content: center; padding-top: var(--space-6); }
.page-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-input); border: 1px solid var(--border);
  color: var(--text-muted); font-size: var(--text-sm); font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast) var(--ease);
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: #000; }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── ANIMAÇÕES DE ENTRADA ────────────────────────────────── */
.animate-fade-up { animation: fadeInUp 0.6s var(--ease-out) both; }
.animate-fade-up-d1 { animation-delay: 0.1s; }
.animate-fade-up-d2 { animation-delay: 0.2s; }
.animate-fade-up-d3 { animation-delay: 0.3s; }
.animate-fade-up-d4 { animation-delay: 0.4s; }
.animate-scale { animation: scaleIn 0.4s var(--ease-bounce) both; }

/* ── RESPONSIVO LOBBY ────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 1024px) {
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .games-grid-featured { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .promo-banner { padding: var(--space-6) var(--space-8); }
  .stats-inner { gap: var(--space-6); }
}
@media (max-width: 768px) {
  .main { padding-top: 60px; }
  .hero { padding: 52px var(--space-4) 44px; min-height: auto; }
  .hero-title { font-size: clamp(28px, 8vw, 42px); }
  .hero-description { font-size: 15px; }
  .hero-badges { gap: var(--space-2); }
  .hero-badge { font-size: var(--text-xs); padding: 6px 12px; }
  .hero-cta { gap: var(--space-3); }
  .hero-cta .btn-xl { min-width: 150px; }
  .section { padding: var(--space-6) var(--space-4); }
  .section-sm { padding: var(--space-4) var(--space-4) 0; }
  .container, .container-sm { padding: 0 var(--space-4); }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .games-grid-featured { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .section-title { font-size: var(--text-lg); }
  .promo-banner { flex-direction: column; text-align: center; padding: var(--space-6); margin: 0 var(--space-4) var(--space-6); }
  .promo-desc { max-width: 100%; margin: 0 auto; }
  .promo-stars { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--space-6); padding: var(--space-10) var(--space-4) var(--space-8); }
  .footer-bottom { padding: var(--space-4); flex-direction: column; align-items: flex-start; }
  .live-ticker { display: none; }
  .balance-hero-card { padding: var(--space-6); }
  .balance-value-display { font-size: 38px; }
  .auth-card { padding: var(--space-6); }
  .wallet-page { padding-top: 80px; }

  /* STATS — um abaixo do outro, cada um em card próprio */
  .stats-bar { padding: var(--space-4); }
  .stats-inner { flex-direction: column; align-items: stretch; gap: var(--space-3); }
  .stat-item {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    justify-content: flex-start;
  }
  .stat-separator { display: none; }

  /* SEARCH — centralizado e largura total */
  .search-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    text-align: center;
  }
  .search-field { max-width: 100%; width: 100%; }
  .filter-chips { justify-content: center; gap: var(--space-2); }
}
@media (max-width: 480px) {
  .hero { padding: 40px var(--space-3) 36px; }
  .section { padding: var(--space-5) var(--space-3); }
  .section-sm { padding: var(--space-3) var(--space-3) 0; }
  .games-grid,
  .games-grid-featured { grid-template-columns: repeat(2, 1fr); gap: var(--space-2); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-col:not(.footer-brand) { display: none; }
  .stats-inner { flex-wrap: wrap; gap: var(--space-4); }
  .game-topbar { padding: 0 var(--space-3); }
  .game-title-tag { display: none; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .balance-hero-card { padding: var(--space-5); border-radius: var(--radius-lg); }
  .auth-card { padding: var(--space-5); border-radius: var(--radius-lg); }
  .auth-logo { font-size: 24px; }
  .auth-card-title { font-size: var(--text-xl); }
}
@media (max-width: 360px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges .hero-badge:nth-child(n+3) { display: none; }
}

/* ── ÍCONES FONT AWESOME DENTRO DE ELEMENTOS DOURADOS ──── */
.navbar-logo .logo-icon i,
.footer-logo .logo-icon i,
.auth-logo .logo-icon i { color: #000; }

.stat-icon-wrap i,
.section-icon i { color: var(--gold); }

.admin-stat-icon.gold i   { color: var(--gold); }
.admin-stat-icon.green i  { color: var(--green-light); }
.admin-stat-icon.purple i { color: var(--purple-light); }

.empty-icon i { color: var(--text-muted); font-size: 32px; }
.badge-icon { font-size: 14px; }

.filter-chip i { font-size: 12px; }
.tab-btn i    { font-size: 13px; }
.btn i        { font-size: 0.92em; }

.game-badge i { font-size: 9px; }

/* ── BRAND LOGO (imagem PNG) ─────────────────────────────── */
.brand-logo {
  height: 44px; width: auto; display: block;
  filter: drop-shadow(0 2px 8px rgba(245,166,35,0.35));
  transition: transform var(--duration) var(--ease);
  user-select: none; -webkit-user-drag: none;
}
.brand-logo:hover { transform: scale(1.03); }
.brand-logo-nav { height: 16px; }
.brand-logo-auth { height: 72px; margin: 0 auto; }
.brand-logo-footer { height: 19px; margin-bottom: var(--space-4); }
@media (max-width: 768px) {
  .brand-logo-nav { height: 13px; }
  .brand-logo-auth { height: 56px; }
}

/* ── POPUP BÔNUS BOAS-VINDAS ─────────────────────────────── */
.bonus-popup-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(4,6,15,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-4);
  animation: fadeIn 0.3s var(--ease);
}
.bonus-popup-overlay.hidden { display: none; }
.bonus-popup {
  position: relative;
  width: 100%; max-width: 520px;
  background:
    radial-gradient(ellipse at top, rgba(245,166,35,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(124,58,237,0.2) 0%, transparent 55%),
    linear-gradient(180deg, #14132c 0%, #060912 100%);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8) var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(245,166,35,0.15);
  overflow: hidden;
  animation: modalIn 0.45s var(--ease-bounce);
  max-height: 94vh; overflow-y: auto;
}
.bonus-popup::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(245,166,35,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245,166,35,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask: radial-gradient(ellipse at center, #000, transparent 75%);
  -webkit-mask: radial-gradient(ellipse at center, #000, transparent 75%);
  pointer-events: none;
}
.bonus-popup > * { position: relative; z-index: 1; }

.bonus-popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted); font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast) var(--ease);
  z-index: 2;
}
.bonus-popup-close:hover { background: var(--red-glow); color: var(--red-light); border-color: transparent; }

.bonus-badge-pill {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 6px 16px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 800;
  color: var(--gold); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: var(--space-5);
}
.bonus-badge-pill .pulse-dot { background: var(--gold); box-shadow: 0 0 6px var(--gold-glow); }

.bonus-popup-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
}
.bonus-popup-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(245,166,35,0.55));
}
.bonus-popup-amount {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900; line-height: 1;
  color: var(--gold);
  margin: var(--space-3) 0;
  filter: drop-shadow(0 0 30px rgba(245,166,35,0.5));
  animation: glowPulse 2.5s ease-in-out infinite;
}
.bonus-popup-sub {
  font-size: var(--text-base); color: var(--text-secondary);
  line-height: 1.65; margin-bottom: var(--space-6);
  max-width: 380px; margin-left: auto; margin-right: auto;
}

.bonus-popup-perks {
  display: flex; flex-direction: column; gap: var(--space-3);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
  text-align: left;
}
.bonus-perk {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--text-primary);
}
.bonus-perk i { color: var(--green-light); font-size: 15px; flex-shrink: 0; }

.bonus-popup-cta { width: 100%; }
.bonus-popup-timer {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-xs); color: var(--text-muted);
}
.bonus-popup-timer strong { color: var(--red-light); font-variant-numeric: tabular-nums; font-weight: 800; }
.bonus-popup-footnote {
  margin-top: var(--space-3); font-size: 10px; color: var(--text-disabled);
  letter-spacing: 0.04em;
}

/* ── FLOATING WIN NOTIFICATION (prova social) ──────────── */
.float-win {
  position: fixed; left: 20px; bottom: 20px; z-index: 350;
  display: flex; align-items: center; gap: var(--space-3);
  padding: 12px 16px 12px 12px;
  background: rgba(15,22,40,0.96);
  border: 1px solid rgba(16,185,129,0.35);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl), 0 0 20px rgba(16,185,129,0.15);
  backdrop-filter: blur(12px);
  max-width: 340px; width: calc(100vw - 40px);
  animation: slideInRight 0.4s var(--ease-bounce);
  pointer-events: none;
}
.float-win.hiding { animation: fadeOut 0.4s var(--ease) forwards; }
.float-win-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(16,185,129,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light); font-size: 15px; flex-shrink: 0;
}
.float-win-text { font-size: var(--text-xs); color: var(--text-secondary); line-height: 1.4; }
.float-win-text strong { color: var(--text-primary); display: block; }
.float-win-text .amt { color: var(--green-light); font-weight: 800; }
@keyframes fadeOut { to { opacity: 0; transform: translateX(-20px); } }

/* ── TRUST BADGES BAR ─────────────────────────────────── */
.trust-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: var(--space-6);
  padding: var(--space-6) clamp(16px, 3vw, 56px);
  border-top: 1px solid var(--border-card);
  background: rgba(255,255,255,0.015);
}
.trust-item {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-xs); color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.trust-item i { color: var(--gold); font-size: 18px; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-5) var(--space-4);
  position: relative;
  transition: all var(--duration) var(--ease);
}
.testimonial:hover { border-color: rgba(245,166,35,0.3); transform: translateY(-2px); }
.testimonial-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: var(--space-2); }
.testimonial-text { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-4); }
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-gold); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.testimonial-meta { font-size: var(--text-xs); }
.testimonial-name { color: var(--text-primary); font-weight: 700; }
.testimonial-city { color: var(--text-muted); }

/* ── URGENCY COUNTER ──────────────────────────────────── */
.urgency-strip {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-3); flex-wrap: wrap;
  padding: 10px 16px;
  background: linear-gradient(90deg, rgba(239,68,68,0.12), rgba(245,166,35,0.12));
  border-bottom: 1px solid rgba(239,68,68,0.2);
  font-size: var(--text-xs); color: var(--text-primary);
  font-weight: 600;
}
.urgency-strip strong { color: var(--red-light); }
.urgency-strip .badge-dot::before { background: var(--red); }
@media (max-width: 768px) {
  .urgency-strip { display: none; }
}

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  .navbar, .footer, .btn, .modal-overlay, #toast { display: none !important; }
  body { background: #fff; color: #000; }
}
