/* =====================================================
   CASSINO PREMIUM — DESIGN SYSTEM 2026
   Versão: 2.0 | Dark Mode Premium
   ===================================================== */

/* ── VARIÁVEIS DE DESIGN ── */
:root {
  --primary: #e91e8c;
  --primary-glow: rgba(233,30,140,0.3);
  --primary-dark: #c0156e;
  --primary-light: rgba(233,30,140,0.12);
  --secondary: #7c3aed;
  --secondary-glow: rgba(124,58,237,0.3);
  --gold: #f0b429;
  --gold-light: rgba(240,180,41,0.15);
  --success: #10b981;
  --success-light: rgba(16,185,129,0.12);
  --danger: #ef4444;
  --danger-light: rgba(239,68,68,0.12);
  --warning: #f59e0b;
  --warning-light: rgba(245,158,11,0.12);
  --info: #06b6d4;
  --info-light: rgba(6,182,212,0.12);

  /* Superfícies */
  --bg-base: #050b1a;
  --bg-surface: #080f20;
  --bg-card: #0a1628;
  --bg-card-hover: #0f1f3d;
  --bg-modal: #0d1b3e;
  --bg-input: #060e1e;

  /* Bordas */
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.15);
  --border-primary: rgba(233,30,140,0.3);

  /* Texto */
  --text-primary: rgba(255,255,255,0.92);
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.35);

  /* Tipografia */
  --font-display: 'Inter', 'Jost', sans-serif;
  --font-body: 'Inter', 'Roboto', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Espaçamentos */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-primary: 0 4px 20px rgba(233,30,140,0.25);
  --shadow-gold: 0 4px 20px rgba(240,180,41,0.2);

  /* Transições */
  --transition-fast: 0.15s ease;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-modal: 1050;
  --z-toast: 1100;
  --z-chat: 9999;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb {
  background: rgba(233,30,140,0.4);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── TIPOGRAFIA ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

/* ── SELEÇÃO DE TEXTO ── */
::selection {
  background: var(--primary);
  color: #fff;
}

/* ── LINKS ── */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--primary-dark); }

/* ── BOTÕES PREMIUM ── */
.cmn-btn,
.btn--base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.cmn-btn::before,
.btn--base::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.cmn-btn:hover::before,
.btn--base:hover::before { left: 100%; }

.cmn-btn:hover,
.btn--base:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,30,140,0.4);
  color: #fff;
}

.cmn-btn:active,
.btn--base:active { transform: translateY(0); }

/* Botão Secundário */
.cmn-btn-two,
.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.cmn-btn-two:hover,
.btn--outline:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--primary-glow);
}

/* Botão Ouro */
.btn--gold {
  background: linear-gradient(135deg, #f0b429, #d97706);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  box-shadow: 0 8px 30px rgba(240,180,41,0.4);
  color: #fff;
}

/* Tamanhos */
.btn-sm { padding: 8px 20px; font-size: 12px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ── CARDS PREMIUM ── */
.card,
.custom--card,
.d-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover::before { opacity: 1; }
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-body { padding: 24px; }
.card-header {
  padding: 18px 24px;
  background: transparent;
  border-bottom: 1px solid var(--border);
}

/* ── DASHBOARD WIDGETS (KPI) ── */
.dashboard-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.dashboard-widget::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity var(--transition);
}

.dashboard-widget:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

.dashboard-widget:hover::after { opacity: 1; }

.dashboard-widget.widget--primary::after { background: var(--primary); }
.dashboard-widget.widget--success::after { background: var(--success); }
.dashboard-widget.widget--gold::after    { background: var(--gold); }
.dashboard-widget.widget--info::after    { background: var(--info); }
.dashboard-widget.widget--warning::after { background: var(--warning); }
.dashboard-widget.widget--danger::after  { background: var(--danger); }

.widget-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.widget-icon--primary { background: var(--primary-light); color: var(--primary); }
.widget-icon--success  { background: var(--success-light); color: var(--success); }
.widget-icon--gold     { background: var(--gold-light); color: var(--gold); }
.widget-icon--info     { background: var(--info-light); color: var(--info); }
.widget-icon--warning  { background: var(--warning-light); color: var(--warning); }
.widget-icon--danger   { background: var(--danger-light); color: var(--danger); }
.widget-icon--secondary{ background: rgba(124,58,237,0.12); color: var(--secondary); }

.widget-body { flex: 1; min-width: 0; }

.widget-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.widget-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.widget-change {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.widget-change.up {
  color: var(--success);
  background: var(--success-light);
}

.widget-change.down {
  color: var(--danger);
  background: var(--danger-light);
}

/* ── FORMULÁRIOS ── */
.form-control,
.form--control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 14px;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-control:focus,
.form--control:focus,
input:focus,
textarea:focus,
select:focus {
  background: var(--bg-input);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
  color: var(--text-primary);
  outline: none;
}

.form-control::placeholder,
.form--control::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

label.required::after {
  content: " *";
  color: var(--danger);
}

/* ── TABELAS ── */
.table {
  color: var(--text-primary);
  border-color: var(--border);
  margin: 0;
}

.table thead tr th {
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  border-top: none;
  white-space: nowrap;
}

.table tbody tr td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  vertical-align: middle;
}

.table tbody tr:last-child td { border-bottom: none; }

.table tbody tr {
  transition: background var(--transition-fast);
}

.table tbody tr:hover td {
  background: rgba(233,30,140,0.04);
}

/* ── BADGES E STATUS ── */
.badge,
.badge--primary,
.badge--success,
.badge--danger,
.badge--warning,
.badge--info,
.badge--secondary {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--primary   { background: var(--primary-light); color: var(--primary); }
.badge--success   { background: var(--success-light); color: var(--success); }
.badge--danger    { background: var(--danger-light); color: var(--danger); }
.badge--warning   { background: var(--warning-light); color: var(--warning); }
.badge--info      { background: var(--info-light); color: var(--info); }
.badge--secondary { background: rgba(124,58,237,0.12); color: var(--secondary); }
.badge--gold      { background: var(--gold-light); color: var(--gold); }

/* ── HEADER PREMIUM ── */
.header {
  background: rgba(5,11,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition);
}

.header__bottom { padding: 0; }

.navbar-brand img { max-height: 44px; }

.main-menu > li > a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 28px 14px;
  transition: color var(--transition-fast);
  position: relative;
}

.main-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
  border-radius: var(--radius-full);
}

.main-menu > li:hover > a,
.main-menu > li.active > a {
  color: var(--text-primary);
}

.main-menu > li:hover > a::after,
.main-menu > li.active > a::after {
  left: 14px;
  right: 14px;
}

/* Submenus */
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 200;
  padding: 8px;
}

.menu_has_children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sub-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 18px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-right a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-right a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

/* Login/Cadastro buttons in nav */
.nav-right a:last-of-type {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.nav-right a:last-of-type:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,30,140,0.4);
  color: #fff;
}

/* ── FOOTER ── */
.footer-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

.footer-bottom a { color: var(--primary); }

.footer-social-links { gap: 10px; }
.footer-social-links li a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-social-links li a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.footer-menu li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-menu li a:hover { color: var(--primary); }

/* ── BREADCRUMB ── */
.breadcrumb--area {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.breadcrumb-item { font-size: 13px; }
.breadcrumb-item a { color: var(--text-secondary); }
.breadcrumb-item.active { color: var(--primary); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ── CARDS DE JOGOS ── */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  border-color: var(--border-primary);
}

.game-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.game-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card__thumb img {
  transform: scale(1.08);
}

.game-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,11,26,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover .game-card__thumb::after { opacity: 1; }

.game-card__content {
  padding: 16px;
}

.game-card .game-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── MODAIS ── */
.modal-content {
  background: var(--bg-modal);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.modal-title { font-size: 1rem; font-weight: 700; }

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.modal-body { padding: 24px; }

.modal-backdrop { backdrop-filter: blur(4px); }

/* ── SKELETON LOADING ── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.skeleton-text {
  height: 14px;
  margin-bottom: 8px;
  border-radius: var(--radius-full);
}

.skeleton-value {
  height: 32px;
  width: 60%;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
}

/* ── TOASTS / ALERTAS ── */
.alert {
  border-radius: var(--radius);
  border: 1px solid;
  padding: 14px 18px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-success { background: var(--success-light); border-color: rgba(16,185,129,0.3); color: var(--success); }
.alert-danger   { background: var(--danger-light);  border-color: rgba(239,68,68,0.3);  color: var(--danger); }
.alert-warning  { background: var(--warning-light); border-color: rgba(245,158,11,0.3); color: var(--warning); }
.alert-info     { background: var(--info-light);    border-color: rgba(6,182,212,0.3);  color: var(--info); }

/* ── PAGINAÇÃO ── */
.pagination {
  gap: 4px;
  flex-wrap: wrap;
}

.page-item .page-link {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  transition: all var(--transition-fast);
}

.page-item.active .page-link,
.page-item .page-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

/* ── SELECT2 DARK ── */
.select2-container--default .select2-selection--single {
  background: var(--bg-input) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  height: 48px !important;
  padding: 0 14px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-primary) !important;
  line-height: 46px !important;
}

.select2-dropdown {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-lg) !important;
  margin-top: 4px !important;
}

.select2-results__option {
  color: var(--text-secondary) !important;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm);
  margin: 2px 6px !important;
  font-size: 14px !important;
  transition: all var(--transition-fast) !important;
}

.select2-results__option--highlighted,
.select2-results__option.select2-results__option--selected {
  background: var(--primary) !important;
  color: #fff !important;
}

.select2-search--dropdown .select2-search__field {
  background: var(--bg-input) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-sm) !important;
  padding: 8px 12px !important;
}

/* ── AREA FINANCEIRA ── */
.payment-area {
  padding: 40px 0;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.payment-area h3 {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ── PRELOADER PREMIUM ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-base);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.preloader__thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader__thumb .loaderLogo {
  max-height: 60px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.95); }
}

/* Loading spinner */
.preloader::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── MICROINTERAÇÕES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up   { animation: fadeInUp 0.4s ease both; }
.animate-fade-in   { animation: fadeIn 0.3s ease both; }
.animate-scale-in  { animation: scaleIn 0.3s ease both; }

/* Delay utilities */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── WIN/LOSS POPUP ── */
.win-loss-popup {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.win-loss-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.win-loss-popup__bg {
  background: rgba(5,11,26,0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  text-align: center;
  min-width: 300px;
}

.win-loss-popup__footer .result-text {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 16px;
}

/* ── COOKIES CARD ── */
.cookies-card {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  z-index: 9000;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookies-card.hide {
  bottom: -400px;
  opacity: 0;
}

@media (max-width: 576px) {
  .cookies-card {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
    bottom: 70px;
  }
}

/* ── AREA DO USUÁRIO ── */
.d-widget {
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all var(--transition);
}

.d-widget-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.d-widget-balance .d-widget-icon { background: var(--primary-light); color: var(--primary); }
.d-widget-deposit .d-widget-icon  { background: var(--success-light); color: var(--success); }
.d-widget-withdraw .d-widget-icon { background: var(--info-light); color: var(--info); }
.d-widget-invest .d-widget-icon   { background: var(--warning-light); color: var(--warning); }
.d-widget-win .d-widget-icon      { background: var(--gold-light); color: var(--gold); }
.d-widget-loss .d-widget-icon     { background: var(--danger-light); color: var(--danger); }

.d-widget-content p {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 6px;
}

.d-widget-content .title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
  line-height: 1;
}

/* ── SEÇÃO DO PAINEL DE USUÁRIO ── */
.user-dashboard-section {
  padding: 40px 0 60px;
}

/* ── TABELAS RESPONSIVAS ── */
.table--responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── PERFIL ── */
.profile-form-area {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ── INPUT GROUP ── */
.input-group {
  border-radius: var(--radius);
  overflow: hidden;
}

.input-group .form-control { border-radius: 0; border-right: none; }
.input-group-text {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border);
  border-left: none;
  color: var(--text-secondary);
  padding: 0 16px;
  font-size: 14px;
}

/* ── SCROLL TO TOP ── */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-primary);
}

.scroll-to-top.show,
.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.scroll-icon { font-size: 18px; color: #fff; }

/* ── RESPONSIVIDADE ── */
@media (max-width: 1199px) {
  .main-menu { display: none; }
}

@media (max-width: 991px) {
  .user-dashboard-section { padding: 24px 0 40px; }
  .card-body { padding: 18px; }
  .dashboard-widget { padding: 18px; }
  .widget-value { font-size: 1.4rem; }
}

@media (max-width: 767px) {
  body { font-size: 14px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .cmn-btn, .btn--base { padding: 10px 20px; font-size: 13px; }
  .footer-top { padding: 40px 0 24px; }
  .table thead tr th { font-size: 10px; padding: 10px 14px; }
  .table tbody tr td { padding: 10px 14px; font-size: 13px; }
  .card-body { padding: 14px; }
  .dashboard-widget { flex-direction: column; gap: 10px; }
  .widget-value { font-size: 1.5rem; }
}

@media (max-width: 575px) {
  .cmn-btn, .btn--base { width: 100%; }
  .game-card__content .d-flex { flex-direction: column; }
  .nav-right a { padding: 6px 12px; font-size: 12px; }
}

/* ── HELPER CLASSES ── */
.text--primary   { color: var(--primary) !important; }
.text--success   { color: var(--success) !important; }
.text--danger    { color: var(--danger) !important; }
.text--warning   { color: var(--warning) !important; }
.text--info      { color: var(--info) !important; }
.text--gold      { color: var(--gold) !important; }
.text--muted     { color: var(--text-muted) !important; }
.text--secondary { color: var(--text-secondary) !important; }

.bg--primary     { background-color: var(--primary) !important; }
.bg--success     { background-color: var(--success) !important; }
.bg--danger      { background-color: var(--danger) !important; }
.bg--warning     { background-color: var(--warning) !important; }

.border--primary { border-color: var(--primary) !important; }

.gradient--primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Números de Contagem */
.counter-up {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ÁREA DE BÔNUS ── */
.bonus-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(124,58,237,0.1));
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  pointer-events: none;
}

/* ── PAYMENT CARD ── */
.payment-card-title {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  padding: 14px 24px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-system-list {
  background: transparent;
}

.payment-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.payment-item:hover,
.payment-item:has(.payment-item__radio:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
}

/* ── COPIAR ── */
.copyInput {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  font-size: 15px;
}

.copyInput:hover { color: var(--primary); }

@keyframes showcopied {
  0%   { opacity: 0; transform: translateX(100%); }
  50%  { opacity: 0.8; transform: translateX(40%); }
  70%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; }
}

.copied::after {
  content: "COPIADO";
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  background: var(--success);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  animation: showcopied 1.5s ease;
  white-space: nowrap;
}

/* ── INPUT PASSWORD ── */
.hover-input-popup { position: relative; }

.hover-input-popup .input-popup {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.input-popup p {
  font-size: 12px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.input-popup p::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 14px;
}

.input-popup p.error { color: var(--danger); text-decoration: line-through; }
.input-popup p.error::before { content: "\f057"; color: var(--danger); }
.input-popup p.success { color: var(--success); }
.input-popup p.success::before { content: "\f058"; color: var(--success); }

/* ── FILTROS RESPONSIVOS ── */
@media (max-width: 767px) {
  .responsive-filter-card { display: none; }
  .show-filter { display: block; }
}

/* ── REFERRALS ── */
.referral-box {
  background: linear-gradient(135deg, var(--bg-card), rgba(233,30,140,0.06));
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-align: center;
}

.referral-link-box {
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 48px 12px 16px;
  position: relative;
  word-break: break-all;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

/* ── RESPONSIVIDADE MOBILE HEADER ── */
.navbar-toggler {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  display: none;
}

@media (max-width: 1199px) {
  .navbar-toggler { display: flex; align-items: center; justify-content: center; }
}

.menu-toggle,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
}

.menu-toggle::before { top: -7px; }
.menu-toggle::after  { top: 7px; }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--border-hover);
  display: block;
}

.empty-state p {
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── DEPOSIT / SAQUE INFO ── */
.deposit-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.deposit-info:last-child { border-bottom: none; }

.deposit-info__title {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.deposit-info__input {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.total-amount .deposit-info__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.total-amount .deposit-info__input {
  font-size: 18px;
  color: var(--primary);
}

/* ── SEÇÃO PRINCIPAL ── */
.pt-120 { padding-top: 80px; }
.pb-120 { padding-bottom: 80px; }
.mb-30  { margin-bottom: 24px; }
.mt-30  { margin-top: 24px; }

/* ── MAPA DE CORES EXISTENTE ── */
.base--color,
.text--base { color: var(--primary) !important; }
.bg--base   { background-color: var(--primary) !important; }

/* ── GLOWING EFFECTS ── */
.glow--primary { box-shadow: 0 0 20px var(--primary-glow); }
.glow--success { box-shadow: 0 0 20px rgba(16,185,129,0.3); }
.glow--gold    { box-shadow: 0 0 20px rgba(240,180,41,0.3); }

/* ── FONT WEIGHT HELPERS ── */
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

/* ── ALERT BOXES ── */
.alert-box {
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.alert-box i { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.alert-box--danger {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #fca5a5;
}

.alert-box--info {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  color: #93c5fd;
}

.alert-box--success {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  color: #6ee7b7;
}

.alert-box--warning {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  color: #fde68a;
}

/* ── EMPTY STATE TEXT ── */
.empty-state-icon {
  font-size: 48px;
  color: var(--border-hover);
  margin-bottom: 12px;
}

.empty-state-text {
  font-size: 15px;
  color: var(--text-muted);
}

/* ── CURSOR ── */
.cursor-pointer { cursor: pointer; }

/* ── PE-NONE ── */
.pe-none { pointer-events: none; }

/* ── SCROLLBAR THIN ── */
.scroll-thin::-webkit-scrollbar { width: 4px; }
.scroll-thin::-webkit-scrollbar-track { background: transparent; }
.scroll-thin::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: var(--radius-full); }

/* ── DASHBOARD SECTION (global) ── */
.dashboard-section { padding: 40px 0 60px; }

.page-header-block { border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 24px; }
.page-header-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.page-header-sub { font-size: 13px; color: var(--text-muted); margin: 0; }

.dashboard-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.dashboard-card-header {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dashboard-card-body { padding: 24px; }
.dashboard-card-footer { padding: 16px 20px; border-top: 1px solid var(--border); }

/* ── DASH TABLE (global) ── */
.dash-table { margin: 0; }
.dash-table thead tr { background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border); }
.dash-table thead th { padding: 12px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); border: none; white-space: nowrap; }
.dash-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.15s; }
.dash-table tbody tr:last-child { border-bottom: none; }
.dash-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.dash-table tbody td { padding: 14px 16px; font-size: 13px; vertical-align: middle; border: none; color: var(--text-secondary); }

/* ── FILTER CARD (global) ── */
.filter-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px; margin-bottom: 20px; }
.search-input-wrap { position: relative; }
.search-input-wrap i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--text-muted); z-index: 2; }
.search-input-wrap .form-control { padding-left: 38px; height: 46px; }

/* ── TRX ELEMENTS (global) ── */
.trx-code { display: inline-block; font-family: monospace; font-size: 11px; color: var(--text-muted); background: rgba(255,255,255,0.05); padding: 2px 6px; border-radius: 4px; }
.trx-date { font-size: 13px; }
.trx-ago { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.trx-amount--in  { color: var(--success) !important; font-weight: 700; }
.trx-amount--out { color: var(--danger) !important; font-weight: 700; }

/* ── ICON BTN (global) ── */
.icon-btn { width: 34px; height: 34px; border-radius: var(--radius); background: var(--primary-light); color: var(--primary); border: none; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.icon-btn:hover { background: var(--primary); color: #fff; }

/* ── AUTH INPUT GROUP (global) ── */
.auth-input-group { position: relative; display: flex; align-items: center; }
.auth-input-group .form-control { padding-left: 44px; padding-right: 44px; height: 50px; border-radius: var(--radius); }
.auth-input-icon { position: absolute; left: 14px; font-size: 18px; color: var(--text-muted); pointer-events: none; z-index: 2; }
.auth-input-toggle { position: absolute; right: 14px; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 17px; padding: 0; z-index: 2; transition: color 0.2s; }
.auth-input-toggle:hover { color: var(--primary); }

/* ── REF AVATAR (global) ── */
.ref-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #7c3aed); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── SETTINGS CARD (global) ── */
.settings-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 20px; }
.settings-card-header { padding: 16px 24px; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--border); color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.settings-card-body { padding: 24px; }

/* ── MOBILE RESPONSIVE DASHBOARD ── */
@media (max-width: 991px) {
  .dashboard-section { padding: 24px 0 40px; }
  .page-header-block { margin-bottom: 16px; }
  .dashboard-card-body { padding: 16px; }
}
@media (max-width: 767px) {
  .dash-table thead { display: none; }
  .dash-table tbody td { display: flex; justify-content: space-between; padding: 8px 16px; font-size: 12px; }
  .dash-table tbody td::before { content: attr(data-label); font-weight: 700; color: var(--text-muted); font-size: 10px; text-transform: uppercase; }
  .dash-table tbody tr { display: block; border: 1px solid var(--border); border-radius: var(--radius); margin: 8px 16px; }
  .filter-card .row > div { width: 100%; }
}

/* =====================================================
   FASE 13-23 — DESIGN SYSTEM PREMIUM GLOBAL
   ===================================================== */

/* ── SEÇÃO PREMIUM — CABEÇALHO ── */
.section-premium {
  padding: 80px 0;
  position: relative;
}
.section-premium.section-dark {
  background: var(--bg-surface);
}
.section-header-premium {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(233,30,140,0.2);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.section-title-premium {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.section-title-premium .text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle-premium {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FASE 15 — BOTÕES PREMIUM ── */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}
.btn-premium:hover::before { background: rgba(255,255,255,0.08); }
.btn-premium:active { transform: scale(0.97); }

.btn-premium--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #c0156e 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}
.btn-premium--primary:hover {
  box-shadow: 0 6px 30px rgba(233,30,140,0.5);
  color: #fff;
  transform: translateY(-1px);
}

.btn-premium--secondary {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-premium--secondary:hover {
  box-shadow: 0 6px 30px rgba(124,58,237,0.5);
  color: #fff;
  transform: translateY(-1px);
}

.btn-premium--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}
.btn-premium--success:hover { box-shadow: 0 6px 30px rgba(16,185,129,0.5); color: #fff; transform: translateY(-1px); }

.btn-premium--danger {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(239,68,68,0.3);
}
.btn-premium--danger:hover { box-shadow: 0 6px 30px rgba(239,68,68,0.5); color: #fff; transform: translateY(-1px); }

.btn-premium--ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-premium--ghost:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-premium--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-hover);
}
.btn-premium--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-premium--sm { padding: 8px 20px; font-size: 12px; }
.btn-premium--lg { padding: 16px 36px; font-size: 16px; }

/* Loading state */
.btn-premium.is-loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn-premium.is-loading .btn-text { opacity: 0; }
.btn-premium.is-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FASE 16 — INPUTS FLOATING LABEL ── */
.form-floating-premium {
  position: relative;
  margin-bottom: 20px;
}
.form-floating-premium .fp-label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s ease;
  pointer-events: none;
  transform-origin: left top;
  z-index: 2;
}
.form-floating-premium .fp-input {
  width: 100%;
  height: 56px;
  padding: 20px 16px 6px;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-floating-premium .fp-input:focus,
.form-floating-premium .fp-input:not(:placeholder-shown) {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-floating-premium .fp-input:focus ~ .fp-label,
.form-floating-premium .fp-input:not(:placeholder-shown) ~ .fp-label {
  top: 7px;
  font-size: 10px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-floating-premium .fp-input.is-invalid { border-color: var(--danger); }
.form-floating-premium .fp-input.is-valid { border-color: var(--success); }
.form-floating-premium .fp-error {
  font-size: 12px;
  color: var(--danger);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-floating-premium .fp-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── FASE 23 — SKELETON LOADING ── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.5s infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-wave {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton-text { height: 14px; margin-bottom: 8px; }
.skeleton-text:last-child { width: 60%; }
.skeleton-title { height: 24px; margin-bottom: 12px; }
.skeleton-circle { border-radius: 50%; }
.skeleton-card { height: 160px; }
.skeleton-avatar { width: 40px; height: 40px; border-radius: 50%; }

/* ── FASE 23 — TOAST PREMIUM ── */
.toast-container-premium {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}
.toast-premium {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  animation: toast-slide-in 0.3s ease forwards;
  position: relative;
  overflow: hidden;
}
.toast-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
}
.toast-premium--success::before { background: var(--success); }
.toast-premium--danger::before { background: var(--danger); }
.toast-premium--warning::before { background: var(--warning); }
.toast-premium--info::before { background: var(--info); }
.toast-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.toast-premium--success .toast-icon { background: var(--success-light); color: var(--success); }
.toast-premium--danger .toast-icon { background: var(--danger-light); color: var(--danger); }
.toast-premium--warning .toast-icon { background: var(--warning-light); color: var(--warning); }
.toast-premium--info .toast-icon { background: var(--info-light); color: var(--info); }
.toast-body { flex: 1; }
.toast-title { font-size: 13px; font-weight: 700; margin-bottom: 2px; color: var(--text-primary); }
.toast-msg { font-size: 12px; color: var(--text-secondary); }
.toast-close { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0; font-size: 16px; }
@keyframes toast-slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.toast-premium.toast-out { animation: toast-slide-out 0.3s ease forwards; }
@keyframes toast-slide-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(30px); }
}

/* ── FASE 23 — MICROINTERAÇÕES ── */
.hover-lift { transition: transform var(--transition), box-shadow var(--transition); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.hover-glow:hover { box-shadow: 0 0 20px var(--primary-glow); }

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--success);
  animation: pulse-ring 1.5s infinite;
}
@keyframes pulse-ring {
  0% { opacity: 0.6; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.8); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── FASE 14 — HOME HERO / BANNER ── */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-base);
}
.hero-premium__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-premium__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,11,26,0.92) 0%, rgba(5,11,26,0.6) 60%, rgba(5,11,26,0.3) 100%);
}
.hero-premium__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.15;
  animation: float-particle 6s infinite ease-in-out;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
  50% { transform: translateY(-30px) scale(1.2); opacity: 0.3; }
}
.hero-premium__content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,140,0.1);
  border: 1px solid rgba(233,30,140,0.25);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px var(--primary);
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6ab1 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  transform: perspective(800px) rotateY(-6deg);
}
.hero-game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.hero-game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(233,30,140,0.25);
}
.hero-game-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.hero-game-card-name {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}
.hero-live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--danger);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}
.hero-jackpot-ticker {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #e59e00 100%);
  color: #1a0a00;
  border-radius: var(--radius-full);
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(240,180,41,0.4);
}

/* ── FASE 14 — GAME SECTION ── */
.games-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.game-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.game-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.game-filter-btn:hover,
.game-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.game-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.game-card-premium:hover {
  border-color: var(--border-primary);
  box-shadow: 0 8px 32px rgba(233,30,140,0.2);
  transform: translateY(-4px);
}
.game-card-premium__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-surface);
}
.game-card-premium__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}
.game-card-premium:hover .game-card-premium__thumb img {
  transform: scale(1.08);
}
.game-card-premium__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,11,26,0.95) 0%, rgba(5,11,26,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card-premium:hover .game-card-premium__overlay { opacity: 1; }
.game-btn-play {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: 100%;
  justify-content: center;
}
.game-btn-play:hover { background: var(--primary-dark); color: #fff; }
.game-btn-demo {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 7px 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: 100%;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.game-btn-demo:hover { background: rgba(255,255,255,0.2); color: #fff; }
.game-card-premium__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}
.game-card-premium__badge.badge--hot { background: var(--danger); }
.game-card-premium__badge.badge--new { background: var(--success); }
.game-card-premium__badge.badge--vip { background: var(--gold); color: #1a0a00; }
.game-card-premium__info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.game-card-premium__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-card-premium__rtp {
  font-size: 11px;
  color: var(--success);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 8px;
}

/* ── FASE 14 — STATISTICS SECTION ── */
.stats-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a0e1a 0%, #0f0a20 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(233,30,140,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stat-item-premium {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.stat-item-premium::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
[class*="col"]:last-child .stat-item-premium::after { display: none; }
.stat-icon-premium {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin: 0 auto 16px;
}
.stat-value-premium {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label-premium {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* ── FASE 14 — WHY CHOOSE US ── */
.features-section {
  padding: 80px 0;
  background: var(--bg-base);
}
.feature-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, #7c3aed 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card-premium:hover::before { opacity: 1; }
.feature-card-premium:hover {
  border-color: var(--border-primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.feature-icon-premium {
  width: 60px; height: 60px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-icon-premium--primary { background: var(--primary-light); color: var(--primary); }
.feature-icon-premium--gold { background: var(--gold-light); color: var(--gold); }
.feature-icon-premium--success { background: var(--success-light); color: var(--success); }
.feature-icon-premium--info { background: var(--info-light); color: var(--info); }
.feature-icon-premium--secondary { background: rgba(124,58,237,0.12); color: var(--secondary); }
.feature-icon-premium--danger { background: var(--danger-light); color: var(--danger); }
.feature-title-premium {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.feature-desc-premium {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FASE 14 — HOW IT WORKS ── */
.how-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.step-card-premium {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.step-card-premium:hover {
  border-color: var(--border-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-number-premium {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(233,30,140,0.4);
}
.step-icon-premium {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  color: var(--primary);
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.step-card-premium:hover .step-icon-premium {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.step-title-premium { font-size: 16px; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.step-desc-premium { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.step-connector {
  position: absolute;
  top: 36px;
  right: -50%;
  width: 100%;
  height: 1px;
  border-top: 1.5px dashed var(--border);
  z-index: 0;
}

/* ── FASE 14 — FAQ PREMIUM ── */
.faq-section {
  padding: 80px 0;
  background: var(--bg-base);
}
.faq-item-premium {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item-premium.open {
  border-color: var(--border-primary);
}
.faq-question-premium {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition-fast);
}
.faq-question-premium:hover { color: var(--primary); }
.faq-q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--transition-fast);
}
.faq-item-premium.open .faq-q-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer-premium {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item-premium.open .faq-answer-premium {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-answer-premium p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* ── FASE 14 — TRX & WINNERS ── */
.trx-win-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.winner-item-premium {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-fast);
}
.winner-item-premium:last-child { border-bottom: none; }
.winner-item-premium:hover { background: rgba(255,255,255,0.03); }
.winner-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}
.winner-info { flex: 1; min-width: 0; }
.winner-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.winner-game {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.winner-amount-premium {
  font-size: 14px;
  font-weight: 900;
  color: var(--success);
  white-space: nowrap;
}
.winner-amount-premium::before { content: '+'; }

/* ── FASE 14 — REFERRAL SECTION ── */
.referral-section {
  padding: 80px 0;
  background: var(--bg-base);
}
.referral-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.referral-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.referral-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}
.referral-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(233,30,140,0.15) 0%, rgba(124,58,237,0.15) 100%);
}
.referral-bonus-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(233,30,140,0.4);
}

/* ── FASE 14 — CTA SECTION ── */
.cta-section-premium {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  text-align: center;
}
.cta-section-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-title-premium {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-sub-premium {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  position: relative;
}
.cta-actions { position: relative; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.btn-cta-white:hover { background: #f8f8f8; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); color: var(--primary); }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

/* ── FASE 22 — ADMIN PREMIUM STYLES ── */
.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.admin-kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.admin-kpi-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.admin-kpi-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
}
.admin-kpi-card--primary::after { background: var(--primary); }
.admin-kpi-card--success::after { background: var(--success); }
.admin-kpi-card--warning::after { background: var(--warning); }
.admin-kpi-card--info::after { background: var(--info); }
.admin-kpi-card--gold::after { background: var(--gold); }
.admin-kpi-card--danger::after { background: var(--danger); }
.admin-kpi-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.admin-kpi-card--primary .admin-kpi-icon { background: var(--primary-light); color: var(--primary); }
.admin-kpi-card--success .admin-kpi-icon { background: var(--success-light); color: var(--success); }
.admin-kpi-card--warning .admin-kpi-icon { background: var(--warning-light); color: var(--warning); }
.admin-kpi-card--info .admin-kpi-icon { background: var(--info-light); color: var(--info); }
.admin-kpi-card--gold .admin-kpi-icon { background: var(--gold-light); color: var(--gold); }
.admin-kpi-card--danger .admin-kpi-icon { background: var(--danger-light); color: var(--danger); }
.admin-kpi-value {
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.admin-kpi-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.admin-kpi-trend {
  font-size: 11px;
  font-weight: 700;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.admin-kpi-trend--up { color: var(--success); }
.admin-kpi-trend--down { color: var(--danger); }
.admin-kpi-link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

/* ── RESPONSIVIDADE MOBILE EXTRA (Fase 24) ── */
@media (max-width: 991px) {
  .section-premium { padding: 56px 0; }
  .hero-premium { min-height: 80vh; }
  .hero-game-grid { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-title { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-premium__content { text-align: center; padding: 60px 0; }
  .step-connector { display: none; }
}
@media (max-width: 767px) {
  .section-premium { padding: 40px 0; }
  .section-header-premium { margin-bottom: 36px; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 15px; }
  .hero-stat-value { font-size: 20px; }
  .hero-stats { gap: 20px; }
  .stat-item-premium::after { display: none; }
  .stats-section { padding: 50px 0; }
  .game-filter-tabs { justify-content: center; }
  .admin-kpi-grid { grid-template-columns: 1fr 1fr; }
  .cta-section-premium { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .admin-kpi-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
