/* ============================================================
   HYPER THEME v2 - MODERN APPLE + CYBERPUNK
   Diseño intuitivo, minimalista y futurista
   ============================================================ */

:root {
  /* Colores primarios */
  --color-primary: #FFD700;
  --color-primary-bright: #FFFF00;
  --color-accent-red: #E63946;
  --color-accent-red-dark: #C1121F;
  --color-accent-orange: #FF8C00;
  --color-accent-orange-light: #FFA500;

  /* Fondo y neutral */
  --bg-main: #0F0F0F;
  --bg-secondary: #1A1A1A;
  --bg-tertiary: #2A2A2A;
  --text-primary: #FFFFFF;
  --text-secondary: #E8E8E8;
  --text-tertiary: #B0B0B0;

  /* Bordes */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-mid: rgba(255, 255, 255, 0.12);

  /* Sombras */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);

  /* Transiciones */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ============================================================
   FONDO ANIMADO CON PARTÍCULAS
   ============================================================ */

.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(255, 180, 0, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 30%, rgba(255, 140, 0, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(180, 100, 0, 0.08) 0%, transparent 55%),
    linear-gradient(160deg, #0a0a0c 0%, #111117 40%, #0c0c0e 70%, #080809 100%);
  z-index: 0;
  overflow: hidden;
}

/* Grid sutil tipo fibra de carbono */
.bg-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.bg-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 18% 55%, rgba(255, 215, 0, 0.09) 0%, transparent 38%),
    radial-gradient(circle at 82% 25%, rgba(255, 140, 0, 0.07) 0%, transparent 35%),
    radial-gradient(circle at 55% 5%, rgba(255, 200, 0, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 30% 90%, rgba(200, 120, 0, 0.05) 0%, transparent 35%);
  pointer-events: none;
  animation: gradientShift 18s ease-in-out infinite;
  z-index: 1;
}

/* Blobs de luz dinámicos (Premium Effect) */
.bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.6;
}

.blob {
  position: absolute;
  border-radius: 50%;
  animation: blobFloat 25s infinite alternate ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  top: -10%;
  left: -5%;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 160, 0, 0.08) 0%, transparent 70%);
  bottom: -15%;
  right: -5%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-duration: 35s;
  animation-delay: -10s;
}

@keyframes blobFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, 100px) scale(1.1);
  }

  66% {
    transform: translate(-80px, 50px) scale(0.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Utilities */
.hidden {
  display: none !important;
}

.flex {
  display: flex !important;
}

.v11-dashboard-shell {
  display: block;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.v11-main-panel {
  margin-left: 260px;
  width: calc(100% - 260px);
  padding: 32px;
  min-height: 100vh;
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
}

.v11-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 260px;
  min-width: 260px;
  height: 100vh;
  background: #0a0e12;
  border-right: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 24px 12px;
  z-index: 1000;
  overflow-y: auto;
  flex-shrink: 0;
}

.v11-sidebar::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.v11-sidebar-logo {
  padding: 0 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.v11-sidebar-logo img {
  width: 140px;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.2));
}

.v11-nav-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.v11-nav-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 16px 8px;
  font-weight: 800;
  margin-top: 10px;
}

.v11-sidebar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
  background: transparent;
  width: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.v11-sidebar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--color-primary);
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--color-primary);
}

.v11-sidebar-item i {
  width: 22px;
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.v11-sidebar-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.v11-sidebar-item:hover i {
  color: var(--color-primary);
  opacity: 1;
}

.v11-sidebar-item.active {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.08), transparent);
  color: #fff;
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.02);
}

.v11-sidebar-item.active::before {
  height: 60%;
}

.v11-sidebar-item.active i {
  color: var(--color-primary);
  opacity: 1;
  transform: scale(1.15);
}

.v11-main-panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.module {
  display: none;
  animation: moduleFadeIn 0.5s ease forwards;
}

.module.active {
  display: block;
}

@keyframes moduleFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.v11-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.v11-section-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
}

.v11-section-title i {
  color: var(--gold-primary);
  font-size: 24px;
}

.v11-section-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  width: 100%;
}

.v11-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.v11-kpi-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

.v11-kpi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.v11-kpi-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.v11-kpi-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.v11-kpi-value {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1;
}

.v11-pro-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Grids */
.v11-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.v11-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.v11-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {

  .v11-grid-2,
  .v11-grid-3,
  .v11-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Forms V11 */
.v11-form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v11-form-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {

  .v11-form-grid-3,
  .v11-form-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .v11-form-grid-3,
  .v11-form-grid-4 {
    grid-template-columns: 1fr;
  }
}

.v11-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v11-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
}

.v11-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.v11-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.v11-btn-mini {
  padding: 6px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.v11-btn-mini:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.v11-form-msg {
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

.v11-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Previews */
.v11-preview-box {
  background: rgba(0, 0, 0, 0.4);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.v11-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.v11-badge {
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

/* ============================================================
   CONTENIDO PRINCIPAL
   ============================================================ */

.nav-live-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  z-index: 999;
  display: flex;
  align-items: center;
}

.nav-live-track {
  display: flex;
  animation: liveScroll 30s linear infinite;
  white-space: nowrap;
  gap: 40px;
}

.nav-live-track span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

@keyframes liveScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   NAVBAR PROFESIONAL
   ============================================================ */

.navbar-pro-v2 {
  position: fixed;
  top: 28px;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(10, 14, 18, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: var(--transition);
  gap: 16px;
}

.navbar-pro-v2.scrolled {
  background: rgba(10, 14, 18, 0.95);
  box-shadow: var(--shadow-md);
}

.brand {
  cursor: pointer;

  .v11-sidebar-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    white-space: nowrap;
  }

  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav-brand-pill {
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  transition: var(--transition);
}

.nav-brand-pill:hover {
  background: transparent;
  transform: scale(1.02);
  box-shadow: none;
}

.nav-brand-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.nav-spacer {
  flex: 1;
}

.nav-mobile-top {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
}

.nav-left {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-item {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: var(--transition-fast);
  position: relative;
  text-decoration: none;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  transition: var(--transition-fast);
}

.nav-item:hover {
  color: var(--text-primary);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item.active {
  color: var(--color-primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  margin-top: 140px;
  padding: 80px 40px;
  max-width: 1000px;
  /* Reducido para mejor centrado visual */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #FFD700 0%, #FFFF00 50%, #FF8C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGlow 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

@keyframes heroGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.3));
  }
}

.hero p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 48px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pill {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
  border: 1px solid var(--border-light);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
}

.pill:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.microcopy {
  font-size: 15px;
  color: var(--text-tertiary);
  margin-top: 32px;
  line-height: 1.8;
}

.microcopy span {
  color: var(--color-primary);
  font-weight: 700;
  transition: var(--transition-fast);
}

/* ============================================================
   JOIN STRIP
   ============================================================ */

.join-strip {
  margin: 80px auto;
  max-width: 1000px;
  padding: 0 40px;
  z-index: 10;
  position: relative;
}

.join-strip-primary {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 140, 0, 0.08));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
}

.join-strip-primary::before {
  content: attr(data-kicker);
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 4px 16px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--text-tertiary);
}

.join-strip-inner {
  padding: 60px 40px;
  text-align: center;
}

.join-strip-inner h2 {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.join-strip-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.join-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BOTONES
   ============================================================ */

.btn-auth {
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-auth {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--text-primary);
}

.btn-auth:hover {
  background: rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.btn-register {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--color-primary);
}

.btn-register:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 140, 0, 0.3));
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25), inset 0 0 20px rgba(255, 140, 0, 0.1);
}

/* ============================================================
   CARRUSEL
   ============================================================ */

.home-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  overflow: hidden;
  z-index: 10;
}

.home-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0;
}

.home-carousel-track img {
  min-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   GRID DE DATOS
   ============================================================ */

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* ============================================================
   CARDS GENÉRICAS
   ============================================================ */

.card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.8));
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0), rgba(255, 140, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.card:hover::before {
  opacity: 1;
}

/* ============================================================
   FEED SECTION
   ============================================================ */

.inicio-feed-block {
  position: relative;
  z-index: 10;
}

.panel-head {
  padding: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}

.panel-head h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-title-agencias {
  font-size: clamp(3.6rem, 9vw, 5.8rem) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  background: linear-gradient(90deg, #FFD700 0%, #FFFF00 50%, #FFD700 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block;
  animation: shineGlowAgencias 3.5s ease-in-out infinite;
}

@keyframes shineGlowAgencias {
  0%, 100% {
    background-position: 0% center;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
  }
  50% {
    background-position: 100% center;
    filter: drop-shadow(0 0 25px rgba(255, 255, 0, 0.85));
  }
}

.panel-head p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================================
   SERVICIOS GRID
   ============================================================ */

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.servicio-card {
  padding: 40px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(42, 42, 42, 0.9));
  border: 1px solid var(--border-light);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  group: hover;
}

.servicio-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.servicio-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.servicio-card:hover::after {
  opacity: 1;
}

.svg-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
  transition: var(--transition);
}

.servicio-card:hover .svg-icon {
  filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.4));
  transform: scale(1.1);
}

/* ============================================================
   FILTROS Y TABS
   ============================================================ */

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 40px 0;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.f-input,
.f-select {
  padding: 10px 16px;
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 13px;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
  font-family: 'Rajdhani', sans-serif;
}

.f-input:hover,
.f-select:hover {
  border-color: rgba(255, 215, 0, 0.3);
}

.f-input:focus,
.f-select:focus {
  outline: none;
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
}

.tabs {
  display: flex;
  gap: 12px;
  padding: 24px 40px 0;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab:hover {
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--text-primary);
}

.tab.active {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--color-primary);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.main-content {
  position: relative;
  z-index: 5;
}

.section {
  display: none;
  flex-direction: column;
  min-height: 100vh;
}

.section.active {
  display: flex;
}

#inicioHomeBlocks {
  position: relative;
  z-index: 10;
}

.home-edit-block {
  position: relative;
}

/* Support Carousel Removed */

/* ============================================================
   VIP FLOAT
   ============================================================ */

.vip-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 930;
  max-width: 350px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vip-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vip-inner {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(230, 57, 70, 0.15));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(230, 57, 70, 0.2);
}

.vip-content {
  position: relative;
}

.vip-float-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.vip-float-close:hover {
  background: rgba(255, 215, 0, 0.3);
}

.vip-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.vip-sub {
  font-size: 12px;
  color: var(--text-tertiary);
}

.vip-btn {
  margin-top: 16px;
  padding: 12px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.vip-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

/* ============================================================
   BOTÓN FLOTANTE
   ============================================================ */
/* El botón flotante neon ahora se gestiona desde inicio.css */

.vip-float.is-scrolling {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(20px);
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 940;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.sidebar-menu {
  position: fixed;
  left: 0;
  top: 100px;
  width: 280px;
  height: calc(100vh - 100px);
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--border-light);
  z-index: 950;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.sidebar-menu.active {
  transform: translateX(0);
}

.sidebar-close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .sidebar-close {
    display: block;
  }
}

.sidebar-menu-item {
  display: block;
  padding: 16px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
}

.sidebar-menu-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-left-color: var(--color-primary);
  color: var(--text-primary);
}

/* ============================================================
   RESPONSIVE — Migrado a responsive_ux.css (ver ese archivo)
   Este bloque fue reemplazado por la nueva capa responsive.
   ============================================================ */
/* BLOQUE DESHABILITADO — ahora está en responsive_ux.css */

/* ============================================================
   TEMA CLARO OPCIONAL
   ============================================================ */

[data-theme="light"] {
  --bg-main: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-tertiary: #e8e8e8;
  --text-primary: #1a1a1a;
  --text-secondary: #404040;
  --text-tertiary: #666666;
  --border-light: rgba(0, 0, 0, 0.08);
  --border-mid: rgba(0, 0, 0, 0.12);
}

/* ============================================================
   UTILIDADES
   ============================================================ */

.no-zoom {
  -webkit-touch-callout: none;
  user-select: none;
}

/* Scroll suave */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.5);
}

/* ============================================================
   PRESENTATION CARDS (AGENTES, AGENCIAS, APUESTAS, PRODUCTOS)
   ============================================================ */

.pro-card {
  background: linear-gradient(135deg, rgba(20, 24, 28, 0.9), rgba(15, 18, 22, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pro-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.pro-card .badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pro-card .title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.pro-card .sub,
.pro-card .tiny {
  font-size: 0.9rem;
  color: #A0AAB5;
  margin: 0;
  line-height: 1.5;
}

.pro-card .tiny {
  font-size: 0.8rem;
}

.pro-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

.btn-mini {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.btn-mini:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-mini.wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.btn-mini.wa:hover {
  background: rgba(37, 211, 102, 0.2);
}

.stars-icons {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 8px 0;
}

.stars-icons i {
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.stars-icons i.on {
  color: #FFD700;
}

/* APUESTAS */
.bet-oracle-wrap {
  perspective: 1000px;
}

.bet-oracle-card {
  transform-style: preserve-3d;
}

.oracle-publisher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #A0AAB5;
  margin-bottom: 12px;
}

.oracle-pub-svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #FFD700;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oracle-mid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.oracle-desc {
  font-size: 1rem;
  font-weight: 600;
  color: #E8E8E8;
  flex: 1;
}

.oracle-odds {
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.1);
  padding: 4px 12px;
  border-radius: 8px;
  margin-left: 12px;
}

.oracle-code {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.oracle-date {
  font-size: 11px;
  color: #808B96;
}

/* VIP APUESTAS */
.vip3d-wrapper {
  perspective: 1200px;
}

.vip3d-card {
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  border-radius: 20px;
  padding: 2px;
  /* Gradient border effect */
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.vip3d-content {
  background: #111;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.vip3d-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FFD700;
  color: #000;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1.5px;
}

.vip3d-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.vip3d-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vip3d-oddbox {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0;
  background: rgba(255, 215, 0, 0.1);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.vip3d-oddbox .lbl {
  font-size: 12px;
  color: #A0AAB5;
  font-weight: 700;
}

.vip3d-oddbox .val {
  font-size: 2rem;
  font-weight: 900;
  color: #FFD700;
}

.vip3d-stake {
  margin-bottom: 16px;
}

.vip3d-stake-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #A0AAB5;
  margin-bottom: 6px;
}

.vip3d-stake-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.vip3d-stake-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #FF8C00);
}

.vip3d-desc {
  font-size: 0.95rem;
  color: #D1D5DB;
  line-height: 1.6;
  margin-bottom: 24px;
}

.vip3d-btn {
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}

.vip3d-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

/* PRODUCTOS */
.producto-card-horizontal {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 16px;
}

.producto-image-wrap {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.producto-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.producto-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.producto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.producto-stock {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.producto-stock svg {
  width: 12px;
  height: 12px;
}

.producto-stock.is-ok {
  color: #25D366;
}

.producto-stock.is-low {
  color: #FF8C00;
}

.producto-stock.is-out {
  color: #E63946;
}

.producto-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.producto-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFD700;
}

.producto-price-text {
  font-size: 11px;
  color: #A0AAB5;
  font-weight: 600;
}

/* AYUDAS SOCIALES */
.ayudas-section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.ayudas-header {
  text-align: center;
  margin-bottom: 40px;
}

.ayudas-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #FFD700;
  margin-bottom: 12px;
}

.ayudas-subtitle {
  font-size: 1.1rem;
  color: #A0AAB5;
  max-width: 700px;
  margin: 0 auto 24px;
}

.ayudas-storyBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #E63946;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ayudas-storyBtn:hover {
  background: rgba(230, 57, 70, 0.25);
  transform: translateY(-2px);
}

.ayudas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.ayuda-card {
  background: rgba(20, 24, 28, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ayuda-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.3);
}

.ayuda-imgWrap {
  height: 200px;
  width: 100%;
}

.ayuda-imgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ayuda-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.ayuda-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.ayuda-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.ayuda-date {
  font-size: 12px;
  color: #FFD700;
  font-weight: 700;
}

.ayuda-story {
  font-size: 0.95rem;
  color: #A0AAB5;
  line-height: 1.6;
  flex: 1;
}

.ayuda-actions {
  display: flex;
  gap: 12px;
}

.ayuda-btn {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ayuda-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.ayuda-btn.primary {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
  color: #FFD700;
}

.ayuda-btn.primary:hover {
  background: rgba(255, 215, 0, 0.25);
}

/* ==================== CONTENT & LAYOUT FIXES ==================== */
.main-content {
  padding-top: 110px;
}

/* ==================== MODALS ==================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal .sheet {
  background: #15191C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal.open .sheet {
  transform: translateY(0);
}

.sheethead {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sheethead b {
  font-size: 1.2rem;
  color: #fff;
}

.sheethead .x {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
}

.sheethead .x:hover {
  color: #FFD700;
}

.sheetbody {
  padding: 20px;
}

/* ==================== REDESIGN INICIO ==================== */

/* Hide hamburger on desktop */
@media (min-width: 992px) {
  .nav-hamburger {
    display: none !important;
  }
}

/* --- PRODUCTOS (PREMIUM REDESIGN V2) --- */
.producto-card-v2 {
  display: flex;
  flex-direction: column;
  background: rgba(10, 14, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  height: 100%;
}

.producto-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
}

.producto-v2-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at center, rgba(30, 35, 40, 1) 0%, rgba(10, 14, 18, 1) 100%);
  position: relative;
  overflow: hidden;
}

.producto-v2-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.producto-card-v2:hover .producto-v2-image-wrap img {
  transform: scale(1.08);
}

.producto-v2-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.producto-v2-stock {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.producto-v2-stock.is-ok {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}

.producto-v2-stock.is-low {
  color: #FF8C00;
  border-color: rgba(255, 140, 0, 0.3);
}

.producto-v2-stock.is-out {
  color: #E63946;
  border-color: rgba(230, 57, 70, 0.3);
}

.producto-v2-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.producto-v2-price-wrap {
  margin-top: auto;
}

.producto-v2-price {
  font-size: 2rem;
  font-weight: 900;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.producto-v2-price::before {
  content: '$';
  font-size: 1.2rem;
  opacity: 0.8;
}

.producto-v2-no-price {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-wa-producto-v2 {
  margin-top: 16px;
  width: 100%;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.15));
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  padding: 14px;
  border-radius: 16px;
  font-weight: 800;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
}

.btn-wa-producto-v2:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 1), rgba(18, 140, 126, 1));
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  color: #000;
}

/* --- AGENCIAS (PREMIUM REDESIGN) --- */
.agencia-card-v2 {
  background: linear-gradient(180deg, rgba(20, 24, 28, 0.8) 0%, rgba(10, 14, 18, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.agencia-card-v2:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.05);
  transform: translateY(-6px);
}

.agencia-v2-banner {
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: #0A0E12;
  position: relative;
}

.agencia-v2-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 18, 0.1) 0%, rgba(10, 14, 18, 1) 100%);
}

.agencia-v2-header {
  padding: 0 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
  margin-top: -24px;
}

.agencia-v2-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.agencia-v2-badge {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.agencia-v2-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.agencia-v2-meta {
  display: flex;
  gap: 16px;
  color: #A0AAB5;
  font-size: 13px;
  font-weight: 500;
}

.agencia-v2-meta i {
  color: #FFD700;
  opacity: 0.8;
}

.agencia-v2-map {
  width: 100%;
  height: 140px;
  background: #000;
  position: relative;
}

.agencia-v2-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.agencia-card-v2:hover .agencia-v2-map iframe {
  opacity: 1;
}

.agencia-v2-footer {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.btn-agv2-main {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #FFD700;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-agv2-main:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 140, 0, 0.25));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
  color: #fff;
}

.btn-agv2-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A0AAB5;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-agv2-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* --- MODAL AGENTES (PREMIUM) --- */
.modal.agent-modal .sheet {
  background: rgba(10, 14, 18, 0.98);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  max-width: 650px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.05);
}

.modal.agent-modal .sheet-banner {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.modal.agent-modal .sheet-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 14, 18, 0.2) 0%, rgba(10, 14, 18, 1) 100%);
}

.modal.agent-modal .sheet-banner-content {
  position: relative;
  z-index: 1;
}

.modal.agent-modal .sheet-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.modal.agent-modal .sheet-subtitle {
  color: #FFD700;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 4px;
}

.modal.agent-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.modal.agent-modal .close-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.4);
  transform: rotate(90deg);
}

.modal.agent-modal .sheetbody {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
}

/* --- AGENT MINI CARD (SLEEK LIST ITEM) --- */
.agent-mini-card-v2 {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.agent-mini-card-v2:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateX(4px);
}

.agent-mini-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FFD700;
  flex-shrink: 0;
}

.agent-mini-info {
  flex: 1;
}

.agent-mini-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.agent-mini-rate {
  font-size: 12px;
  color: #FFD700;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.agent-mini-actions-v2 {
  display: flex;
  gap: 8px;
}

.btn-agmini {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A0AAB5;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-agmini:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-agmini.wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.btn-agmini.wa:hover {
  background: rgba(37, 211, 102, 0.2);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-agmini.rate {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #FFD700;
}

.btn-agmini.rate:hover {
  background: rgba(255, 215, 0, 0.2);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.producto-card-horizontal {
  position: relative;
  background: rgba(20, 24, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.producto-card-horizontal:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  background: rgba(20, 24, 28, 0.85);
}

.producto-image-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
}

/* --- AGENCIAS --- */
.agencia-oracle-card {
  background: linear-gradient(145deg, rgba(30, 35, 40, 0.9), rgba(15, 18, 22, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.agencia-oracle-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.agencia-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.agencia-canton-chip {
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  color: #A0AAB5;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Botones agencias */
.btn-agencia-main {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #FFD700;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-agencia-main:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 140, 0, 0.25));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.15);
}

.btn-agencia-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ddd;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-agencia-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* --- APUESTAS (USUARIO) --- */
.pro-card-user {
  background: rgba(15, 18, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.pro-card-user:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* --- APUESTAS (ADMIN) - VIP GOLD --- */
.vip3d-wrapper {
  perspective: 1200px;
}

.vip3d-card.admin-green {
  background: linear-gradient(145deg, #1A1505, #0B0902);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
}

.vip3d-card.admin-green:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15), inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.vip3d-content.admin-green {
  background: transparent;
}

.vip3d-badge {
  background: linear-gradient(90deg, #FFD700, #FF8C00);
  color: #000;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
  font-size: 11px;
  letter-spacing: 1px;
}

.vip3d-title {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* --- MODAL AGENTES --- */
.modal.agent-modal .sheet {
  background: rgba(15, 18, 22, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  max-width: 600px;
}

.modal.agent-modal .sheethead {
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  padding: 20px 24px;
}

.modal.agent-modal .sheethead b {
  color: #FFD700;
  font-size: 1.4rem;
  font-weight: 800;
}

.modal.agent-modal .sheetbody {
  padding: 24px;
}

.agent-mini-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.agent-mini-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 215, 0, 0.2);
}

.agent-mini-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.agent-mini-avatar-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
  border: 2px solid rgba(255, 215, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 12px;
}

.agent-mini-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.agent-mini-email {
  font-size: 0.9rem;
  color: #A0AAB5;
  margin-bottom: 16px;
}

.agent-mini-interactive {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* --- PRODUCTOS (V3 ULTRA PREMIUM) --- */
.producto-card-v3 {
  background: rgba(10, 14, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  backdrop-filter: blur(24px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.producto-card-v3:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(15, 20, 26, 0.6);
}

.producto-v3-top {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.producto-v3-stock {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.producto-v3-stock.is-ok {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.3);
}

.producto-v3-stock.is-low {
  color: #FF8C00;
  border-color: rgba(255, 140, 0, 0.3);
}

.producto-v3-stock.is-out {
  color: #E63946;
  border-color: rgba(230, 57, 70, 0.3);
}

.producto-v3-image-box {
  width: 100%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at top, rgba(30, 35, 40, 1) 0%, rgba(10, 14, 18, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.producto-v3-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.producto-card-v3:hover .producto-v3-image-box img {
  transform: scale(1.1);
}

.producto-v3-noimg {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 900;
  font-size: 14px;
  text-align: center;
}

.producto-v3-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.producto-v3-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.producto-v3-bot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.producto-v3-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.producto-v3-price span {
  font-size: 1rem;
  opacity: 0.7;
  margin-right: 2px;
}

.producto-v3-no-price {
  font-size: 12px;
  font-weight: 800;
  color: #A0AAB5;
}

.btn-v3-buy {
  background: #25D366;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-v3-buy:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* --- APUESTAS (V3 ULTRA PREMIUM) --- */
/* VIP Vault */
.v3-vault {
  perspective: 1000px;
}

.v3-vault .vip3d-card {
  background: linear-gradient(145deg, #111a14 0%, #0a0e0c 100%);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.v3-vault-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(37, 211, 102, 0.15), transparent 60%);
  pointer-events: none;
}

.v3-vault .vip3d-content {
  padding: 30px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v3-vault-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v3-vault-header .vip3d-badge {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.v3-vault-header .vip3d-date {
  font-size: 12px;
  color: #8899a6;
  font-weight: 600;
}

.v3-vault-core {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.v3-vault-lock {
  width: 50px;
  height: 50px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.v3-vault-oddbox {
  display: flex;
  flex-direction: column;
}

.v3-vault-oddbox .lbl {
  font-size: 11px;
  color: #8899a6;
  font-weight: 800;
  letter-spacing: 1px;
}

.v3-vault-oddbox .val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.v3-vault .vip3d-btn {
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.v3-vault .vip3d-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
  background: #fff;
}

/* User Card V3 */
.bet-card-v3-wrap {
  perspective: 1000px;
}

.bet-card-v3 {
  background: rgba(15, 20, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.bet-card-v3:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.05);
}

.bet-v3-glass {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
  pointer-events: none;
}

.bet-v3-content {
  padding: 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bet-v3-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bet-v3-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bet-v3-avatar {
  width: 32px;
  height: 32px;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.bet-v3-username {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.bet-v3-date {
  font-size: 12px;
  color: #8899a6;
}

.bet-v3-body {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 16px;
  border-left: 3px solid #FFD700;
}

.bet-v3-desc {
  font-size: 1.1rem;
  color: #e1e8ed;
  line-height: 1.5;
  font-weight: 500;
}

.bet-v3-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bet-v3-oddbox {
  display: flex;
  flex-direction: column;
}

.bet-v3-oddbox .lbl {
  font-size: 10px;
  color: #8899a6;
  font-weight: 800;
  letter-spacing: 1px;
}

.bet-v3-oddbox .val {
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
}

.bet-v3-code-area {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.bet-v3-code {
  padding: 10px 16px;
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}

.btn-v3-copy {
  background: rgba(255, 215, 0, 0.1);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFD700;
  padding: 0 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-v3-copy:hover {
  background: #FFD700;
  color: #000;
}

/* --- ADMIN VIP CARD V4 (ULTRA CLEAN) --- */
.v4-admin-wrap {
  perspective: 1000px;
}

.v4-admin-card {
  background: linear-gradient(135deg, rgba(30, 35, 40, 0.9), rgba(15, 20, 25, 0.95));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.v4-admin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
}

.v4-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.v4-content {
  padding: 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.v4-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v4-badge {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.v4-date {
  font-size: 12px;
  color: #A0AAB5;
  font-weight: 600;
}

.v4-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v4-odds-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.v4-lbl {
  font-size: 11px;
  color: #FFD700;
  font-weight: 800;
  letter-spacing: 1px;
  opacity: 0.8;
}

.v4-val {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.v4-desc {
  font-size: 1.1rem;
  color: #E1E8ED;
  line-height: 1.5;
}

.v4-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v4-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #A0AAB5;
  font-weight: 600;
}

.v4-timer span {
  color: #FFD700;
  font-weight: 800;
}

.v4-btn {
  background: #25D366;
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.v4-btn:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* Override Grid */
#gridApuestas.data-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
}

/* --- FIX GRID APUESTAS FOR 3 COLUMNS --- */
#gridApuestas.data-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  justify-content: center !important;
}

@media(min-width: 1024px) {
  #gridApuestas.data-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* --- ADMIN VIP CARD V5 (EXTRAVAGANT HOLOGRAPHIC) --- */
.v5-admin-wrap {
  perspective: 1500px;
  height: 100%;
}

.v5-admin-card {
  height: 100%;
  background: rgba(10, 12, 16, 0.85);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
}

.v5-admin-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 40%, rgba(255, 215, 0, 0.6) 50%, transparent 60%, transparent 100%);
  animation: v5-spin 4s linear infinite;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.v5-admin-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(160deg, rgba(15, 20, 25, 0.98), rgba(5, 8, 10, 0.95));
  border-radius: 22px;
  z-index: 1;
}

.v5-admin-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 215, 0, 0.2);
}

.v5-admin-card:hover::before {
  opacity: 1;
}

.v5-glow-orb {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  filter: blur(20px);
  z-index: 2;
  transition: all 0.5s ease;
}

.v5-admin-card:hover .v5-glow-orb {
  transform: scale(1.5) translate(-20px, 20px);
  background: radial-gradient(circle, rgba(37, 211, 102, 0.4) 0%, transparent 70%);
}

.v5-content {
  padding: 26px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.v5-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v5-badge {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #000;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transform: skewX(-10deg);
}

.v5-badge span,
.v5-badge i {
  transform: skewX(10deg);
}

.v5-date {
  font-size: 12px;
  color: #A0AAB5;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 12px;
}

.v5-odds-wrap {
  text-align: center;
  margin: 10px 0;
  position: relative;
}

.v5-odds-lbl {
  font-size: 12px;
  color: #FFD700;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  display: block;
  margin-bottom: 5px;
}

.v5-odds-val {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.8);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: -2px;
}

.v5-desc {
  font-size: 1.15rem;
  color: #E1E8ED;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
}

.v5-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v5-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #A0AAB5;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.v5-timer span {
  color: #FFD700;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.v5-btn {
  background: linear-gradient(90deg, #25D366, #1EBE5D);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.v5-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.v5-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.v5-btn:hover::before {
  left: 150%;
}

@keyframes v5-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* --- USER CARD V4 (HOLO GLASS) --- */
.bet-card-v4-wrap {
  perspective: 1000px;
  height: 100%;
}

.bet-card-v4 {
  height: 100%;
  background: rgba(20, 24, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.bet-card-v4:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.1);
  background: rgba(25, 30, 38, 0.8);
}

.bet-v4-glass {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 215, 0, 0.05) 100%);
  pointer-events: none;
}

.bet-v4-content {
  padding: 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.bet-v4-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bet-v4-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bet-v4-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
  color: #FFD700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.bet-v4-username {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.bet-v4-date {
  font-size: 11px;
  color: #8899a6;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 8px;
}

.bet-v4-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bet-v4-desc {
  font-size: 1.2rem;
  color: #e1e8ed;
  line-height: 1.5;
  font-weight: 500;
}

.bet-v4-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.bet-v4-oddbox {
  display: flex;
  flex-direction: column;
}

.bet-v4-oddbox .lbl {
  font-size: 11px;
  color: #8899a6;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bet-v4-oddbox .val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.bet-v4-code-area {
  display: flex;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bet-v4-code {
  padding: 10px 16px;
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
}

.btn-v4-copy {
  background: rgba(255, 215, 0, 0.15);
  border: none;
  border-left: 1px solid rgba(255, 215, 0, 0.2);
  color: #FFD700;
  padding: 0 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-v4-copy:hover {
  background: #FFD700;
  color: #000;
}

/* --- HYPRLAND CYBERPUNK GRID --- */
#gridApuestas.data-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
}

/* --- ADMIN CARD (HYPRLAND CYBERPUNK) --- */
.hypr-admin-wrap {
  grid-column: span 2;
  height: 100%;
}

@media (max-width: 768px) {
  .hypr-admin-wrap {
    grid-column: span 1;
  }
}

.hypr-admin-card {
  height: 100%;
  background: rgba(5, 8, 12, 0.95);
  border: 1px solid #fcee0a;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(252, 238, 10, 0.2), inset 0 0 20px rgba(252, 238, 10, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hypr-admin-card::before {
  content: 'SYSTEM VIP // ACCESS GRANTED';
  position: absolute;
  top: 0;
  right: 0;
  background: #fcee0a;
  color: #000;
  font-family: monospace;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  transform-origin: top right;
  z-index: 10;
  transition: 0.3s;
}

.hypr-admin-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.4), inset 0 0 30px rgba(0, 255, 157, 0.1);
  border-color: #00ff9d;
}

.hypr-admin-card:hover::before {
  background: #00ff9d;
  content: 'DECRYPTING //';
}

.hypr-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
  flex: 1;
}

.hypr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hypr-badge {
  background: transparent;
  color: #fcee0a;
  border: 1px solid #fcee0a;
  padding: 6px 12px;
  font-family: monospace;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
}

.hypr-admin-card:hover .hypr-badge {
  color: #00ff9d;
  border-color: #00ff9d;
}

.hypr-date {
  font-size: 11px;
  color: #888;
  font-family: monospace;
}

.hypr-odds-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hypr-odds-val {
  font-size: 5.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 3px 3px 0px #ff003c, -3px -3px 0px #00ff9d;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 2px;
  transition: 0.3s;
}

.hypr-admin-card:hover .hypr-odds-val {
  text-shadow: 4px 4px 0px #00ff9d, -4px -4px 0px #ff003c;
}

.hypr-odds-lbl {
  font-family: monospace;
  color: #aaa;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hypr-desc {
  font-size: 1.25rem;
  color: #ccc;
  line-height: 1.6;
  border-left: 3px solid rgba(255, 255, 255, 0.1);
  padding-left: 16px;
  font-family: monospace;
}

.hypr-admin-card:hover .hypr-desc {
  border-left-color: #00ff9d;
  color: #fff;
}

.hypr-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hypr-timer {
  font-family: monospace;
  color: #ff003c;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hypr-timer span {
  font-weight: bold;
}

.hypr-btn {
  background: transparent;
  color: #00ff9d;
  border: 1px solid #00ff9d;
  padding: 18px;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hypr-btn:hover {
  background: #00ff9d;
  color: #000;
  box-shadow: 0 0 25px #00ff9d;
}

/* --- USER CARD (MINI CYBERPUNK) --- */
.hypr-user-wrap {
  grid-column: span 1;
}

.hypr-user-card {
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff003c;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: 0.2s;
  backdrop-filter: blur(8px);
}

.hypr-user-card:hover {
  border-left-color: #00ff9d;
  background: rgba(15, 15, 20, 0.95);
  transform: translateX(4px);
  box-shadow: -5px 0 20px rgba(0, 255, 157, 0.15);
}

.hypr-user-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hypr-user-name {
  color: #fff;
  font-weight: bold;
  font-family: monospace;
  font-size: 15px;
}

.hypr-user-desc {
  font-size: 14px;
  color: #aaa;
  font-family: monospace;
}

.hypr-user-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.hypr-user-oddbox {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hypr-user-odd-lbl {
  color: #777;
  font-size: 11px;
  font-family: monospace;
}

.hypr-user-odd-val {
  color: #fcee0a;
  font-size: 28px;
  font-weight: 900;
  text-shadow: 1px 1px 0px #ff003c;
}

.hypr-user-card:hover .hypr-user-odd-val {
  color: #00ff9d;
  text-shadow: 1px 1px 0px #fcee0a;
}

.hypr-user-code-area {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
}

.hypr-user-code {
  padding: 6px 10px;
  font-family: monospace;
  color: #fff;
  font-size: 13px;
}

.hypr-user-copy {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  padding: 0 10px;
  cursor: pointer;
  transition: 0.2s;
}

.hypr-user-copy:hover {
  background: #fcee0a;
  color: #000;
}

/* --- V7 GRID APUESTAS (STRICT 3 COLUMNS) --- */
#gridApuestas.data-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

@media (min-width: 1024px) {
  #gridApuestas.data-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* --- ADMIN CARD V7 (LUXURY GOLD) --- */
.lux-admin-wrap {
  perspective: 1000px;
  grid-column: span 1;
}

.lux-admin-card {
  height: 100%;
  background: linear-gradient(180deg, #16181b 0%, #0d0f12 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lux-admin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 0.1) 40%, rgba(255, 215, 0, 0.1) 60%, rgba(255, 215, 0, 0.8));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.lux-admin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.1);
}

.lux-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  text-align: center;
  align-items: center;
}

.lux-badge {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.lux-odds-val {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  margin-bottom: 4px;
}

.lux-odds-lbl {
  color: #8899a6;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.lux-desc {
  font-size: 1.05rem;
  color: #b0c0d0;
  line-height: 1.6;
  margin: 16px 0;
  font-weight: 400;
}

.lux-footer {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lux-timer {
  color: #FFD700;
  font-size: 13px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.lux-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.lux-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

/* --- USER CARD V7 (CLEAN MODERN) --- */
.clean-user-wrap {
  grid-column: span 1;
}

.clean-user-card {
  height: 100%;
  background: #1b1e23;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.clean-user-card:hover {
  transform: translateY(-6px);
  background: #202429;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.2);
}

.clean-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clean-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clean-avatar {
  width: 40px;
  height: 40px;
  background: #2a2e35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 16px;
}

.clean-name {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.clean-date {
  font-size: 12px;
  color: #778899;
}

.clean-desc {
  font-size: 15px;
  color: #d1d8e0;
  line-height: 1.5;
  background: #15171a;
  padding: 16px;
  border-radius: 12px;
  flex: 1;
}

.clean-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.clean-odds {
  display: flex;
  flex-direction: column;
}

.clean-odds-lbl {
  color: #778899;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clean-odds-val {
  color: #FFD700;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.clean-code-box {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.clean-code-val {
  padding: 10px 16px;
  color: #fff;
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
}

.clean-code-btn {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.2s;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.clean-code-btn:hover {
  background: #FFD700;
  color: #000;
}

/* --- V8 GRID APUESTAS (WIDER, NO STRETCH) --- */
#gridApuestas.data-grid {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)) !important;
  max-width: 1350px !important;
  gap: 28px !important;
  align-items: start !important;
  /* Prevents awkward tall cards */
}

/* --- V8 ADMIN CARD (ULTIMATE PREMIUM UI) --- */
.v8-admin-wrap {
  perspective: 1000px;
}

.v8-admin-card {
  background: linear-gradient(145deg, #1e232b 0%, #111418 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 2px;
  /* For gradient border */
}

.v8-admin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.5) 0%, rgba(255, 215, 0, 0) 40%, rgba(255, 215, 0, 0) 60%, rgba(255, 215, 0, 0.3) 100%);
  z-index: 0;
  border-radius: 20px;
}

.v8-admin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.15);
}

.v8-admin-inner {
  background: #111418;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v8-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}

.v8-admin-badge {
  background: linear-gradient(135deg, #FFD700, #F59E0B);
  color: #000;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.v8-admin-date {
  font-size: 11px;
  color: #8899a6;
  font-weight: 600;
}

.v8-admin-body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.v8-admin-odds-wrap {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.v8-admin-odds-lbl {
  color: #8899a6;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.v8-admin-odds-val {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.v8-admin-desc {
  font-size: 1.05rem;
  color: #b0c0d0;
  line-height: 1.5;
  font-weight: 400;
  flex: 1;
}

.v8-admin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.v8-admin-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #a0aec0;
  font-weight: 600;
}

.v8-admin-timer i {
  color: #FFD700;
}

.v8-admin-btn {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.v8-admin-btn:hover {
  background: #FFD700;
  color: #000;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* --- V8 USER CARD (ULTIMATE SOCIAL) --- */
.v8-user-wrap {
  perspective: 1000px;
}

.v8-user-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.v8-user-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.05);
}

.v8-user-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v8-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.v8-user-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.v8-user-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}

.v8-user-date {
  font-size: 11px;
  color: #718096;
}

.v8-user-desc {
  font-size: 1.05rem;
  color: #cbd5e0;
  line-height: 1.5;
  font-weight: 400;
}

.v8-user-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.v8-user-odds {
  display: flex;
  flex-direction: column;
}

.v8-user-odds-lbl {
  color: #a0aec0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v8-user-odds-val {
  color: #FFD700;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.v8-user-code-area {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.v8-user-code {
  padding: 8px 14px;
  color: #fff;
  font-family: monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.v8-user-copy {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  transition: 0.2s;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v8-user-copy:hover {
  background: #FFD700;
  color: #000;
}

/* --- V9 EXTRAVAGANT LIQUID GLASS --- */
#gridApuestas.data-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 35px !important;
  align-items: start !important;
  padding: 40px !important;
}

/* V9 ADMIN VIP CARD */
.v9-admin-wrap {
  perspective: 1200px;
  position: relative;
  z-index: 10;
}

.v9-admin-wrap::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 0, 122, 0.8) 0%, transparent 70%);
  filter: blur(35px);
  z-index: -1;
  animation: floatOrb 6s ease-in-out infinite alternate;
}

.v9-admin-wrap::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.8) 0%, transparent 70%);
  filter: blur(45px);
  z-index: -1;
  animation: floatOrb 8s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 40px) scale(1.3);
  }
}

.v9-admin-card {
  background: rgba(10, 15, 25, 0.4);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  overflow: hidden;
}

.v9-admin-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 30px 40px 60px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
}

.v9-admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.v9-admin-badge {
  background: linear-gradient(135deg, #FFD700, #ff007a);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(255, 0, 122, 0.4);
}

.v9-admin-date {
  background: rgba(0, 0, 0, 0.4);
  color: #a0aec0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: bold;
}

.v9-admin-odds {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.v9-admin-odds::before {
  content: '🔥';
  position: absolute;
  right: -30px;
  top: 10px;
  font-size: 30px;
  opacity: 0.8;
  animation: pulseFire 2s infinite;
}

@keyframes pulseFire {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 10px #ff007a);
  }
}

.v9-admin-odds-lbl {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: -5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.v9-admin-odds-val {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #FFD700 50%, #ff007a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 15px rgba(255, 0, 122, 0.3));
}

.v9-admin-desc {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.v9-admin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.v9-admin-timer {
  font-size: 14px;
  color: #FFD700;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.v9-admin-btn {
  background: linear-gradient(135deg, #7928ca, #ff007a);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 0, 122, 0.5);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v9-admin-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 0, 122, 0.7);
}

/* V9 USER CARD */
.v9-user-wrap {
  perspective: 1000px;
}

.v9-user-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.v9-user-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
}

.v9-user-card:hover {
  transform: translateY(-8px);
  border-color: #4facfe;
  box-shadow: 0 20px 40px rgba(0, 242, 254, 0.15);
}

.v9-user-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v9-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.v9-user-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.v9-user-name {
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}

.v9-user-date {
  color: #64748b;
  font-size: 11px;
}

.v9-user-desc {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.5;
}

.v9-user-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 242, 254, 0.05);
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(0, 242, 254, 0.1);
}

.v9-user-odds-box {
  display: flex;
  flex-direction: column;
}

.v9-user-odds-lbl {
  color: #94a3b8;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  display: block;
}

.v9-user-odds-val {
  color: #00f2fe;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.v9-user-code-area {
  display: flex;
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e293b;
}

.v9-user-code {
  padding: 10px 15px;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  font-size: 14px;
}

.v9-user-copy {
  background: #1e293b;
  color: #00f2fe;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.2s;
}

.v9-user-copy:hover {
  background: #00f2fe;
  color: #000;
}

/* --- V10 ECUABET EXTRAVAGANT GOLD --- */
#gridApuestas.data-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 35px !important;
  align-items: start !important;
  padding: 40px 10px !important;
}

/* V10 ADMIN VIP CARD */
.v10-admin-wrap {
  perspective: 1200px;
  position: relative;
  z-index: 10;
}

.v10-admin-wrap::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, transparent 70%);
  filter: blur(35px);
  z-index: -1;
  animation: floatOrbV10 6s ease-in-out infinite alternate;
}

.v10-admin-wrap::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.25) 0%, transparent 70%);
  filter: blur(45px);
  z-index: -1;
  animation: floatOrbV10 8s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrbV10 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(25px, 35px) scale(1.2);
  }
}

/* --- CYBERPUNK REACTOR VIP CARD (REDESIGN) --- */
:root {
  --reactor-neon: #FFD700;
  --reactor-neon-bright: #FFFF00;
  --reactor-neon-dim: rgba(255, 215, 0, 0.18);
  --reactor-neon-alert: #C92F2F;
  --reactor-bg: #050505;
  --reactor-bg-soft: #0c0d08;
  --reactor-text-muted: #9f9f9f;
}

.card-reactor {
  width: 100%;
  max-width: 360px;
  position: relative;
  padding: 3px;
  border-radius: 26px;
  background: #000;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.72), 0 0 70px rgba(255, 215, 0, 0.08);
  font-family: 'Rajdhani', sans-serif;
  margin: 0 auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-reactor:hover {
  transform: scale(1.025);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.82), 0 0 90px rgba(255, 215, 0, 0.18);
}

.card-reactor::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(90deg, var(--reactor-neon) 0 33%, transparent 33%) top left / 100% 3px no-repeat,
    linear-gradient(180deg, var(--reactor-neon) 0 33%, transparent 33%) top left / 3px 100% no-repeat;
}

.reactor-border {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg,
      transparent 58%,
      rgba(255, 215, 0, 0.15) 68%,
      var(--reactor-neon) 82%,
      transparent 100%);
  animation: reactor-spin 6s linear infinite;
  z-index: 0;
  opacity: 0.95;
}

.card-reactor:hover .reactor-border {
  animation-duration: 0.9s;
  background: conic-gradient(from 0deg,
      transparent 42%,
      rgba(255, 255, 255, 0.7) 78%,
      var(--reactor-neon-bright) 100%);
}

@keyframes reactor-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.reactor-inner {
  position: relative;
  z-index: 1;
  min-height: 540px;
  border-radius: 23px;
  padding: 42px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 235, 0, 0.34) 0%, rgba(255, 215, 0, 0.15) 18%, rgba(255, 215, 0, 0.04) 38%, transparent 58%),
    linear-gradient(145deg, #080909 0%, var(--reactor-bg-soft) 52%, #020202 100%);
  box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.95);
}

.reactor-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.32;
}

.reactor-inner::after {
  content: '';
  position: absolute;
  width: 58%;
  height: 58%;
  left: 9%;
  top: 18%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 255, 0, 0.22), transparent 68%);
  filter: blur(8px);
}

.alert-casi {
  background: linear-gradient(180deg, #d83b36, var(--reactor-neon-alert));
  color: #fff;
  padding: 8px 13px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.55rem, 1.7vw, 0.72rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  border-radius: 6px;
  margin-bottom: 24px;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 49, 49, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: reactor-pulse 1s infinite alternate;
}

@keyframes reactor-pulse {
  0% {
    opacity: 0.72;
    transform: scale(0.985);
  }

  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}

.tag-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--reactor-neon);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.72rem, 2.1vw, 0.86rem);
  margin-bottom: 30px;
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.25);
}

.pick-label {
  letter-spacing: 0.12em;
  font-weight: 700;
}

.odd-wrapper {
  margin-bottom: 24px;
}

.odd-title {
  font-family: 'Orbitron', sans-serif;
  color: #a8a8a8;
  font-size: clamp(0.74rem, 2vw, 0.88rem);
  letter-spacing: 0.34em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.odd-value {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.7rem, 10vw, 4.95rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 215, 0, 0.2);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.22));
}

.reactor-inner .description {
  color: #b4b4b4;
  font-size: clamp(0.88rem, 2.35vw, 0.98rem);
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 285px;
}

.timer-hud {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  margin-bottom: 36px;
}

.timer-box {
  background: rgba(3, 3, 3, 0.86);
  border: 1px solid rgba(255, 215, 0, 0.24);
  width: clamp(54px, 14vw, 60px);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  box-shadow: inset 0 0 16px rgba(255, 215, 0, 0.15);
}

.timer-box:last-of-type {
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.28);
}

.timer-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.1rem, 4.2vw, 1.45rem);
  font-weight: 900;
  color: var(--reactor-neon-bright);
  line-height: 1;
  text-shadow: 0 0 11px rgba(255, 215, 0, 0.18);
}

.timer-separator {
  color: var(--reactor-neon-bright);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.btn-ultra {
  width: 100%;
  min-height: 58px;
  background: linear-gradient(90deg, #c99300 0%, var(--reactor-neon) 62%, var(--reactor-neon-bright) 100%);
  color: #000;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(0.92rem, 2.7vw, 1.05rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  margin-bottom: 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  box-shadow: 0 18px 28px rgba(255, 215, 0, 0.2), 0 0 26px rgba(255, 215, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.btn-ultra::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 48%, transparent 72%);
  transform: translateX(-115%);
  transition: transform 0.55s ease;
}

.btn-ultra:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(255, 215, 0, 0.28), 0 0 34px rgba(255, 215, 0, 0.34);
  filter: brightness(1.05);
  color: #000;
}

.btn-ultra:hover::before {
  transform: translateX(115%);
}

.stake-row {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.74rem, 2vw, 0.86rem);
  color: var(--reactor-text-muted);
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.stake-row span {
  color: var(--reactor-neon-bright);
  font-weight: 900;
  margin-left: 9px;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.28);
}

@media (max-width: 479px) {
  #gridApuestas.data-grid {
    grid-template-columns: 1fr !important;
    padding-inline: 0 !important;
  }

  .card-reactor {
    max-width: min(100%, 330px);
    border-radius: 22px;
  }

  .reactor-inner {
    min-height: 500px;
    border-radius: 19px;
    padding: 36px 20px 26px;
  }

  .tag-header {
    margin-bottom: 28px;
  }

  .timer-hud {
    gap: 9px;
    margin-bottom: 30px;
  }

  .timer-box {
    height: 52px;
  }
}

/* --- PRONOSTICO VIP ADMIN - HORIZONTAL CARD --- */
:root {
  --pronostico-neon: #39FF14;
  --pronostico-neon-rgb: 57, 255, 20;
  --pronostico-gold: #00F060;
  --pronostico-gold-rgb: 0, 240, 96;
  --pronostico-gold-deep: #00A843;
  --pronostico-gold-deep-rgb: 0, 168, 67;
  --pronostico-alert: #D63A3A;
  --pronostico-bg: rgba(10, 10, 10, 0.94);
}

#gridApuestas .pronostico-vip-admin {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 920px;
  justify-self: center;
}

.pronostico-card-wrapper {
  position: relative;
  width: 100%;
  padding: 3px;
  border-radius: 22px;
  background: linear-gradient(45deg, transparent, transparent, var(--pronostico-neon), transparent, transparent);
  background-size: 400% 400%;
  animation: pronostico-border-move 4s linear infinite;
  box-shadow: 0 0 24px rgba(var(--pronostico-gold-rgb), 0.24);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.08), box-shadow 0.35s ease;
}

.pronostico-card-wrapper:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 14px 44px rgba(var(--pronostico-gold-rgb), 0.36), 0 0 70px rgba(var(--pronostico-neon-rgb), 0.16);
}

.pronostico-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr 0.95fr;
  gap: 20px;
  min-height: 250px;
  padding: 22px;
  overflow: hidden;
  border-radius: 19px;
  border: 1px solid rgba(var(--pronostico-gold-rgb), 0.16);
  background:
    radial-gradient(circle at 42% 48%, rgba(var(--pronostico-neon-rgb), 0.13) 0%, transparent 44%),
    linear-gradient(135deg, rgba(9, 20, 15, 0.96), rgba(5, 5, 5, 0.97));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pronostico-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(var(--pronostico-neon-rgb), 0.09) 0%, transparent 58%),
    linear-gradient(rgba(var(--pronostico-gold-rgb), 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--pronostico-gold-rgb), 0.034) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  animation: pronostico-pulse-glow 3s ease-in-out infinite alternate;
  pointer-events: none;
}

.pronostico-card-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.pronostico-section-left,
.pronostico-section-center {
  border-right: 1px dashed rgba(var(--pronostico-gold-rgb), 0.38);
  padding-right: 20px;
}

.pronostico-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  padding: 7px 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 75, 75, 0.88);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(238, 68, 68, 0.96), rgba(172, 33, 33, 0.96));
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.62rem, 1.35vw, 0.78rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 51, 51, 0.45);
  animation: pronostico-alert-flash 1s infinite alternate;
}

.pronostico-vip-title {
  margin: 0;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.38);
}

.pronostico-date-badge {
  margin: 9px 0 12px;
  color: #a9a9a9;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pronostico-stake-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 6px 16px;
  border: 1px solid rgba(var(--pronostico-neon-rgb), 0.76);
  border-radius: 9px;
  background: rgba(var(--pronostico-neon-rgb), 0.08);
  box-shadow: inset 0 0 12px rgba(var(--pronostico-gold-rgb), 0.18);
}

.pronostico-stake-label {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.pronostico-stake-value {
  color: var(--pronostico-neon);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(var(--pronostico-neon-rgb), 0.56);
}

.pronostico-objective-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pronostico-objective-text {
  color: #9d9d9d;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.pronostico-odds-value {
  margin: 5px 0 8px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(3.2rem, 8vw, 4.55rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 14px rgba(var(--pronostico-neon-rgb), 0.46), 0 0 34px rgba(var(--pronostico-gold-rgb), 0.34);
}

.pronostico-brand-slogan {
  margin: 6px 0 16px;
  color: #d2d2d2;
  font-size: 0.95rem;
  line-height: 1.38;
}

.pronostico-brand-slogan span {
  color: var(--pronostico-neon);
  font-weight: 900;
  text-shadow: 0 0 7px rgba(var(--pronostico-neon-rgb), 0.5);
}

.pronostico-timer-container {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  padding: 8px 16px;
  border: 1px solid rgba(var(--pronostico-neon-rgb), 0.54);
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 12px rgba(var(--pronostico-neon-rgb), 0.1);
}

.pronostico-timer-icon {
  color: var(--pronostico-neon);
  animation: pronostico-ticktock 1s infinite;
}

.pronostico-countdown-display {
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: clamp(0.95rem, 2.2vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pronostico-cta-instruction {
  max-width: 210px;
  margin: 0 0 16px;
  color: #d0d0d0;
  font-size: 0.9rem;
  line-height: 1.42;
}

.pronostico-btn-desbloquear {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  width: min(100%, 230px);
  padding: 12px 24px;
  overflow: hidden;
  border: 2px solid var(--pronostico-neon);
  border-radius: 999px;
  background: transparent;
  color: var(--pronostico-neon);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 17px rgba(var(--pronostico-neon-rgb), 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pronostico-btn-desbloquear:hover {
  transform: translateY(-2px);
  background: var(--pronostico-neon);
  color: #000;
  box-shadow: 0 0 30px rgba(var(--pronostico-neon-rgb), 0.5);
}

.pronostico-btn-desbloquear::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-20deg);
  animation: pronostico-sweep-light 3s infinite;
}

@keyframes pronostico-border-move {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pronostico-alert-flash {
  from {
    box-shadow: 0 0 6px rgba(255, 51, 51, 0.55);
    opacity: 0.86;
  }

  to {
    box-shadow: 0 0 18px rgba(255, 51, 51, 0.8);
    opacity: 1;
  }
}

@keyframes pronostico-pulse-glow {
  0% {
    opacity: 0.56;
  }

  100% {
    opacity: 1;
  }
}

@keyframes pronostico-sweep-light {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

@keyframes pronostico-ticktock {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
    text-shadow: 0 0 6px rgba(var(--pronostico-neon-rgb), 0.7);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .pronostico-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .pronostico-section-left,
  .pronostico-section-center {
    border-right: 0;
    border-bottom: 1px dashed rgba(var(--pronostico-gold-rgb), 0.38);
    padding-right: 0;
    padding-bottom: 18px;
  }
}

@media (max-width: 479px) {
  #gridApuestas .pronostico-vip-admin {
    max-width: 100%;
  }

  .pronostico-card-wrapper {
    border-radius: 18px;
  }

  .pronostico-card {
    border-radius: 15px;
    min-height: 0;
  }

  .pronostico-alert-badge {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {

  .pronostico-card-wrapper,
  .pronostico-card::before,
  .pronostico-alert-badge,
  .pronostico-timer-icon,
  .pronostico-btn-desbloquear::after {
    animation: none !important;
  }
}

.v10-admin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.v10-admin-timer {
  font-size: 14px;
  color: #a0aec0;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.v10-admin-timer i {
  color: #FFD700;
}

.v10-admin-btn {
  background: linear-gradient(135deg, #FFD700, #F59E0B);
  color: #000;
  border: none;
  padding: 14px 24px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v10-admin-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.5);
}

/* V10 USER CARD */
.v10-user-wrap {
  perspective: 1000px;
}

.v10-user-card {
  background: linear-gradient(135deg, rgba(30, 35, 40, 0.8) 0%, rgba(15, 20, 25, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.v10-user-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #555, #FFD700, #555);
  opacity: 0.5;
  transition: 0.4s;
}

.v10-user-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.05);
}

.v10-user-card:hover::before {
  opacity: 1;
}

.v10-user-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v10-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.v10-user-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #333, #111);
  border: 1px solid rgba(255, 215, 0, 0.5);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 18px;
}

.v10-user-name {
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
}

.v10-user-date {
  color: #8899a6;
  font-size: 11px;
}

.v10-user-desc {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.5;
}

.v10-user-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.v10-user-odds-box {
  display: flex;
  flex-direction: column;
}

.v10-user-odds-lbl {
  color: #8899a6;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  display: block;
}

.v10-user-odds-val {
  color: #FFD700;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.v10-user-code-area {
  display: flex;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.v10-user-code {
  padding: 10px 15px;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  font-size: 14px;
}

.v10-user-copy {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  transition: 0.2s;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.v10-user-copy:hover {
  background: #FFD700;
  color: #000;
}

/* --- V10 ANIMATED BORDER & PARTICLES FX --- */

/* Border Mask for Admin (30px radius) */
.v10-admin-border-mask {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  /* Border thickness */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 20;
  overflow: hidden;
}

/* Border Mask for User (24px radius) */
.v10-user-border-mask {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  /* Thinner border for users */
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 20;
  overflow: hidden;
}

/* The Spinning Gradient */
.v10-border-spin {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 35%, #FFD700 50%, transparent 65%, transparent 100%);
  animation: spinBorder 3.5s linear infinite;
  opacity: 0.9;
}

@keyframes spinBorder {
  100% {
    transform: rotate(360deg);
  }
}

/* The Particles */
.v10-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.6) 1.5px, transparent 1.5px),
    radial-gradient(circle at 80% 40%, rgba(255, 215, 0, 0.9) 2px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    radial-gradient(circle at 70% 90%, rgba(255, 215, 0, 0.7) 1.5px, transparent 1.5px),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.4) 2px, transparent 2px),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.5) 1px, transparent 1px),
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.8) 1.5px, transparent 1.5px),
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 150% 150%;
  animation: driftParticles 25s linear infinite alternate;
  opacity: 0.8;
}

@keyframes driftParticles {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

/* Ensure contents sit above particles */
.v10-admin-card>div:not(.v10-admin-border-mask):not(.v10-particles) {
  position: relative;
  z-index: 2;
}

.v10-user-card>div:not(.v10-user-border-mask):not(.v10-particles) {
  position: relative;
  z-index: 2;
}

/* --- FIX TRANSPARENT NAV LIVE STRIP & STICKY NAVBAR --- */
.main-header-sticky-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1100 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.nav-live-strip {
  background: #0d0d0d !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
  position: relative !important;
  z-index: 2 !important;
}

.navbar.navbar-pro-v2 {
  position: relative !important;
  top: 0 !important;
  z-index: 1 !important;
}

/* --- V11 FEED CARD (VIP FLOAT REDESIGN) --- */
.vip-feed-v11 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: min(150px, calc(100vw - 16px)) !important;
}

.vip-feed-v11 .vip-inner {
  background: linear-gradient(145deg, rgba(20, 24, 28, 0.95), rgba(10, 12, 15, 0.98)) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 16px !important;
  padding: 12px 14px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.1) !important;
  overflow: hidden;
  position: relative;
}

.vip-feed-v11 .vip-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.vip-feed-v11 .vip-content {
  padding: 10px !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vip-float-close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #aaa;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.3s;
  font-size: 10px;
}

.vip-float-close:hover {
  background: #FFD700;
  color: #000;
}

.v11-feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.v11-feed-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.v11-feed-titles {
  display: flex;
  flex-direction: column;
}

.v11-feed-title {
  color: #FFD700;
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.v11-feed-sub {
  color: #8899a6;
  font-size: 9px;
}

.v11-feed-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  gap: 6px;
}

.v11-feed-odds-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v11-feed-odds-lbl {
  color: #8899a6;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.v11-feed-odds-val {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.v11-feed-stake {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v11-feed-stake-row {
  display: flex;
  justify-content: space-between;
  color: #cbd5e1;
  font-size: 9px;
  font-weight: 600;
}

.v11-feed-stake-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.v11-feed-stake-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #F59E0B);
  transition: width 0.3s ease;
}

.v11-feed-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v11-feed-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.v11-feed-chip {
  background: rgba(255, 60, 60, 0.1);
  color: #ff4d4d;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: bold;
  border: 1px solid rgba(255, 60, 60, 0.3);
}

.v11-feed-timer {
  color: #a0aec0;
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.v11-feed-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 8px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.v11-feed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

/* --- MINI PICK VIP FLOAT: aparece solo con codigo admin activo --- */
.vip-mini-pronostico {
  --vip-mini-green: #39FF14;
  --vip-mini-green-rgb: 57, 255, 20;
  --vip-mini-green-deep: #00F060;
  --vip-mini-green-deep-rgb: 0, 240, 96;
  right: 18px !important;
  left: auto !important;
  bottom: 18px !important;
  width: 188px !important;
  max-width: calc(100vw - 40px) !important;
  z-index: 1110 !important;
  color: #fff;
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  transform: translateY(120px);
}

.vip-mini-pronostico.is-visible {
  animation: vipMiniSlideIn .6s cubic-bezier(.175, .885, .32, 1.275) forwards,
    vipMiniFloat 4s ease-in-out .6s infinite;
}

.vip-mini-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2px;
  border-radius: 12px;
  background: rgba(10, 10, 10, .8);
  box-shadow: 0 0 10px rgba(var(--vip-mini-green-deep-rgb), .14), 0 10px 24px rgba(0, 0, 0, .5);
  cursor: pointer;
}

.vip-mini-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(var(--vip-mini-green-deep-rgb), .16), transparent 30%, var(--vip-mini-green));
  animation: vipMiniSweep 3s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.vip-mini-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: 1;
  border-radius: 10px;
  background:
    linear-gradient(rgba(var(--vip-mini-green-deep-rgb), .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--vip-mini-green-deep-rgb), .04) 1px, transparent 1px),
    rgba(10, 10, 10, .95);
  background-size: 13px 13px, 13px 13px, auto;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.vip-mini-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 12px 12px;
  text-align: center;
}

.vip-mini-alert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 18px;
  padding: 3px 7px;
  border: 0;
  border-radius: 4px;
  background: #cc0000;
  color: #fff;
  font-size: 7px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .35px;
  text-transform: uppercase;
  animation: vipMiniAlert .8s ease-in-out infinite alternate;
}

.vip-mini-title {
  margin: 8px 0 5px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, .4);
}

.vip-mini-date {
  margin-top: 7px;
  color: #8a8a8a;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.vip-mini-stake {
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 18px;
  margin-bottom: 10px;
  padding: 2px 7px;
  border: 1px solid var(--vip-mini-green);
  border-radius: 10px;
  color: var(--vip-mini-green);
  background: rgba(var(--vip-mini-green-rgb), .05);
  box-shadow: 0 0 8px rgba(var(--vip-mini-green-rgb), .3);
}

.vip-mini-stake span,
.vip-mini-stake b {
  color: inherit;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.vip-mini-odds-box {
  margin-bottom: 8px;
}

.vip-mini-label {
  display: block;
  margin-bottom: -2px;
  color: #888;
  font-size: 7px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.vip-mini-odd {
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 10px var(--vip-mini-green), 0 0 20px rgba(var(--vip-mini-green-rgb), .46);
}

.vip-mini-slogan {
  margin-bottom: 9px;
  color: #ccc;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
}

.vip-mini-slogan span {
  display: block;
  color: var(--vip-mini-green);
  font-weight: 900;
}

.vip-mini-timer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 24px;
  margin-bottom: 11px;
  padding: 4px 9px;
  border: 1px solid var(--vip-mini-green);
  border-radius: 15px;
  color: var(--vip-mini-green);
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 0 10px rgba(var(--vip-mini-green-rgb), .12);
}

.vip-mini-timer i {
  color: var(--vip-mini-green);
  font-size: 10px;
}

.vip-mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 31px;
  padding: 8px 0;
  border: 1px solid var(--vip-mini-green);
  border-radius: 20px;
  color: var(--vip-mini-green);
  background: transparent;
  font-size: 8.5px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .5px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(var(--vip-mini-green-rgb), .24);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.vip-mini-card:hover .vip-mini-btn {
  background: var(--vip-mini-green);
  color: #000;
  box-shadow: 0 0 20px rgba(var(--vip-mini-green-rgb), .56);
  transform: translateY(-2px);
}

.vip-mini-pronostico .vip-float-close {
  top: 8px !important;
  right: 8px !important;
  z-index: 4;
  width: 18px !important;
  height: 18px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #888 !important;
  font-size: 10px !important;
  box-shadow: none !important;
}

.vip-mini-pronostico .vip-float-close:hover {
  color: #ff3333 !important;
  transform: scale(1.2) rotate(90deg);
}

@keyframes vipMiniSlideIn {
  0% {
    transform: translateY(150px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes vipMiniFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

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

@keyframes vipMiniAlert {
  0% {
    transform: scale(.95);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, .7);
  }

  100% {
    transform: scale(1.08);
    box-shadow: 0 0 15px 5px rgba(255, 0, 0, .48);
    background: #ff1a1a;
  }
}

/* ============================================================
   V11 JOIN CONTAINER
   ============================================================ */
.v11-join-wrap {
  width: 100%;
  padding: 60px 24px;
  box-sizing: border-box;
}

.v11-join-container {
  position: relative;
  width: 100%;
  max-width: 820px;
  /* Un poco más compacto */
  margin-left: auto;
  margin-right: auto;
  padding: 60px 48px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(22, 26, 30, 0.85), rgba(10, 12, 16, 0.95));
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 80px rgba(255, 160, 0, 0.05) inset;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
}

.v11-join-container:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
}

.v11-join-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFD700, #FF8C00, transparent);
}

.v11-join-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.v11-join-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.v11-join-text {
  color: #a0aec0;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.v11-join-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.v11-btn-primary,
.v11-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.v11-btn-primary {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.v11-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 215, 0, 0.5);
}

.v11-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.v11-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ============================================================
   V11 FEED CARDS (NOTICIAS)
   ============================================================ */
.v11-feed-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 24, 28, 0.9), rgba(12, 14, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-height: 250px;
  text-align: left;
}

/* El brillo dorado en hover */
.v11-feed-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.15);
}

.v11-feed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.v11-feed-card:hover::before {
  opacity: 1;
}

.v11-feed-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v11-feed-card-tag {
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.v11-feed-card-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v11-feed-card-desc {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v11-feed-card-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.v11-feed-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.v11-feed-card:hover .v11-feed-card-img-wrap img {
  transform: scale(1.05);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .v11-join-container {
    padding: 24px;
  }

  .v11-join-title {
    font-size: 1.8rem;
  }

  .v11-join-text {
    font-size: 1rem;
  }
}

/* ============================================================
   NAV DROPDOWN MENU (reemplaza sidebar lateral)
   ============================================================ */

/* El dropdown se ancla a la esquina derecha de la navbar */
.nav-dropdown {
  position: fixed;
  top: calc(var(--strip-height, 28px) + var(--nav-height, 72px));
  right: 16px;
  z-index: 2000;
  min-width: 220px;
  max-width: 280px;
  background: rgba(13, 13, 13, 0.97);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Flecha decorativa apuntando hacia la hamburguesa */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 20px;
  width: 14px;
  height: 14px;
  background: rgba(13, 13, 13, 0.97);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

.nav-dropdown-inner {
  padding: 8px 0;
}

/* Items del dropdown */
.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  color: #cdd6e0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
}

.nav-dd-item i {
  width: 18px;
  text-align: center;
  color: #FFD700;
  font-size: 13px;
  opacity: 0.85;
  flex-shrink: 0;
}

.nav-dd-item:hover {
  background: rgba(255, 215, 0, 0.08);
  color: #fff;
  padding-left: 22px;
}

.nav-dd-item:hover i {
  opacity: 1;
}

.nav-dd-item.accent {
  color: #FFD700;
  font-weight: 700;
}

.nav-dd-item.danger {
  color: #ff6b6b;
}

.nav-dd-item.danger i {
  color: #ff6b6b;
}

.nav-dd-item.danger:hover {
  background: rgba(255, 60, 60, 0.1);
  color: #ff8888;
}

/* Info de usuario en el dropdown */
.nav-dd-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 12px;
  color: #8899a6;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-dd-user i {
  color: #FFD700;
  font-size: 16px;
}

/* Separador */
.nav-dd-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 6px 0;
}

/* Backdrop translúcido que cierra el dropdown */
.nav-dropdown-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: transparent;
  pointer-events: none;
  opacity: 0;
}

.nav-dropdown-backdrop.active {
  pointer-events: auto;
}

/* Hamburguesa activa */
.nav-hamburger.dd-active {
  background: rgba(255, 215, 0, 0.2) !important;
  border-color: rgba(255, 215, 0, 0.5) !important;
  color: #FFD700 !important;
}

/* ============================================================
   FIX MODAL DE AGENTES — tarjetas que se salían
   ============================================================ */

/* Asegurar que el grid no desborde el modal */
#mAgenciaAgentes .sheet {
  max-width: min(520px, 96vw) !important;
  width: 100% !important;
  overflow: hidden !important;
}

#mAgenciaAgentes .sheetbody {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}

#mAgenciaAgentes .grid-mini {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  padding: 12px !important;
}

/* Tarjetas en el modal — que no se corten */
#mAgenciaAgentes .agent-mini-card {
  overflow: hidden !important;
  min-width: 0 !important;
}

#mAgenciaAgentes .agent-mini-core {
  min-width: 0 !important;
}

#mAgenciaAgentes .agent-mini-interactive {
  flex-wrap: wrap !important;
  gap: 8px !important;
}

#mAgenciaAgentes .agent-mini-actions {
  flex-wrap: nowrap !important;
}

/* Botones de red social y acción */
#mAgenciaAgentes .agent-mini-social,
#mAgenciaAgentes .btn-mini {
  flex-shrink: 0 !important;
}

@media (max-width: 480px) {
  #mAgenciaAgentes .sheet {
    max-width: 100vw !important;
    border-radius: 18px 18px 0 0 !important;
  }

  #mAgenciaAgentes .agent-mini-interactive {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  #mAgenciaAgentes .agent-mini-socials,
  #mAgenciaAgentes .agent-mini-actions {
    justify-content: center !important;
  }
}

/* ============================================================
   V11 AGENT MINI CARD — diseño horizontal compacto y premium
   ============================================================ */

#mAgenciaAgentes .grid-mini {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 14px !important;
}

.v11-agent-card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px 16px !important;
  background: linear-gradient(135deg, rgba(22, 24, 28, 0.95), rgba(14, 15, 18, 0.98)) !important;
  border: 1px solid rgba(255, 215, 0, 0.12) !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease !important;
  position: relative !important;
  overflow: hidden !important;
  min-width: 0 !important;
}

.v11-agent-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.v11-agent-card:hover {
  border-color: rgba(255, 215, 0, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.15) !important;
  transform: translateY(-2px) !important;
}

.v11-agent-card:hover::before {
  opacity: 1 !important;
}

/* Avatar circular pequeño */
.v11-agent-avatar {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
  border: 2px solid rgba(255, 215, 0, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  color: #FFD700 !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.15) !important;
  transition: box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.v11-agent-card:hover .v11-agent-avatar {
  border-color: rgba(255, 215, 0, 0.7) !important;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.3) !important;
}

/* Cuerpo central — nombre, rating, redes */
.v11-agent-body {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.v11-agent-name {
  font-size: 1rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  letter-spacing: 0.3px !important;
  line-height: 1.2 !important;
}

.v11-agent-rating {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #a0aec0 !important;
}

.v11-agent-star {
  color: #FFD700 !important;
  font-size: 0.85rem !important;
}

/* Iconos de redes sociales — pequeños e inline */
.v11-agent-socials {
  display: flex !important;
  gap: 6px !important;
  margin-top: 2px !important;
}

.v11-agent-soc {
  width: 26px !important;
  height: 26px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #8899a6 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.7rem !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.v11-agent-soc:hover {
  background: rgba(255, 215, 0, 0.15) !important;
  border-color: rgba(255, 215, 0, 0.4) !important;
  color: #FFD700 !important;
}

.v11-agent-soc.v11-soc-off {
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: default !important;
}

/* Botones de acción — lado derecho */
.v11-agent-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
  flex-shrink: 0 !important;
}

.v11-agent-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #8899a6 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.v11-btn-wsp {
  color: #25D366 !important;
  border-color: rgba(37, 211, 102, 0.25) !important;
  background: rgba(37, 211, 102, 0.08) !important;
}

.v11-btn-wsp:hover {
  background: #25D366 !important;
  color: #fff !important;
  border-color: #25D366 !important;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.5) !important;
  transform: scale(1.08) !important;
}

.v11-btn-rate {
  color: #FFD700 !important;
  border-color: rgba(255, 215, 0, 0.25) !important;
  background: rgba(255, 215, 0, 0.08) !important;
}

.v11-btn-rate:hover {
  background: #FFD700 !important;
  color: #000 !important;
  border-color: #FFD700 !important;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.5) !important;
  transform: scale(1.08) !important;
}

.v11-agent-btn.v11-btn-off,
.v11-agent-btn:disabled {
  opacity: 0.25 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ============================================================
   APUESTAS HERO TITLE — responsive
   ============================================================ */
.apuestas-hero-title {
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  color: #FFFF00;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.1;
}

/* ============================================================
   NAV USER WIDGET — diseño premium para usuario logueado
   ============================================================ */
.nav-user-widget {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 6px 12px 6px 6px;
}

.nav-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  max-width: 130px;
}

.nav-user-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-user-role {
  font-size: 0.68rem;
  font-weight: 600;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-user-sep {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.nav-user-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #8899a6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.nav-user-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #FFD700;
}

.nav-user-logout {
  color: #ff6b6b;
  border-color: rgba(255, 60, 60, 0.15);
  background: rgba(255, 60, 60, 0.06);
}

.nav-user-logout:hover {
  background: rgba(255, 60, 60, 0.15);
  border-color: rgba(255, 60, 60, 0.4);
  color: #ff8888;
}

/* Botón iniciar sesión — sin auth */
.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
}

.nav-auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* ============================================================
   MODAL DE APUESTA V11 — diseño premium del formulario
   ============================================================ */
.v11-modal-sheet {
  border-radius: 22px !important;
  border: 1px solid rgba(255, 215, 0, 0.15) !important;
  background: linear-gradient(160deg, #13151a, #0c0d10) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8) !important;
  max-width: 440px !important;
  width: 100%;
}

.v11-modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v11-modal-head-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFD700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.v11-modal-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.3px;
}

.v11-modal-sub {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

.v11-modal-close {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.v11-modal-close:hover {
  background: rgba(255, 60, 60, 0.15);
  border-color: rgba(255, 60, 60, 0.3);
  color: #ff6b6b;
}

/* Formulario */
.v11-bet-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 22px;
}

.v11-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v11-form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.v11-form-label i {
  color: #FFD700;
  font-size: 0.75rem;
}

.v11-form-opt {
  background: rgba(255, 255, 255, 0.07);
  color: #64748b;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.68rem;
  text-transform: lowercase;
  letter-spacing: 0;
}

.v11-form-input,
.v11-form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  outline: none;
}

.v11-form-input::placeholder,
.v11-form-textarea::placeholder {
  color: #4a5568;
}

.v11-form-input:focus,
.v11-form-textarea:focus {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.06);
  background: rgba(255, 255, 255, 0.05);
}

.v11-form-textarea {
  resize: vertical;
  min-height: 90px;
  max-height: 180px;
  line-height: 1.55;
}

.v11-form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 4px;
}

.v11-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-family: inherit;
}

.v11-btn-cancel {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #64748b;
}

.v11-btn-cancel:hover {
  background: rgba(255, 60, 60, 0.1);
  border-color: rgba(255, 60, 60, 0.2);
  color: #ff8888;
}

.v11-btn-submit {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
}

.v11-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 215, 0, 0.5);
}

/* ============================================================
   NAV USER MENU — avatar minimal + panel dropdown elegante
   ============================================================ */

/* Contenedor relativo del menú de usuario */
.nav-user-menu {
  position: relative;
}

/* El botón avatar — sólo aparece en la navbar */
.nav-user-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  color: #000;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
  position: relative;
}

.nav-user-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  border-color: rgba(255, 215, 0, 0.7);
}

/* Indicador de sesión activa — punto verde */
.nav-user-trigger::after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.nav-user-letter {
  pointer-events: none;
}

/* Panel desplegable */
.nav-user-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  background: rgba(11, 13, 16, 0.98);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3000;
}

/* Flecha decorativa */
.nav-user-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 14px;
  width: 12px;
  height: 12px;
  background: rgba(11, 13, 16, 0.98);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

.nav-user-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Cabecera del panel — avatar grande + nombre */
.nup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 14px;
}

.nup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.nup-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.nup-role {
  font-size: 0.72rem;
  font-weight: 600;
  color: #FFD700;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Separador */
.nup-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 12px;
}

/* Acciones */
.nup-actions {
  padding: 8px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nup-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #c4cdd6;
  font-size: 0.855rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
}

.nup-btn i {
  width: 16px;
  text-align: center;
  color: #FFD700;
  font-size: 0.82rem;
}

.nup-btn:hover {
  background: rgba(255, 215, 0, 0.07);
  color: #fff;
  padding-left: 16px;
}

.nup-btn-danger {
  color: #f87171;
}

.nup-btn-danger i {
  color: #f87171;
}

.nup-btn-danger:hover {
  background: rgba(248, 113, 113, 0.1);
  color: #fca5a5;
}

/* ============================================================
   NAV-RIGHT & USER TRIGGER — alineación correcta
   ============================================================ */

/* Asegurar que nav-right use flex centrado */
.nav-right {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  height: 100%;
}

/* El contenedor relativo del menú */
.nav-user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

/* El botón avatar — tamaño fijo, centrado */
.nav-user-trigger {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%) !important;
  border: 2px solid rgba(255, 215, 0, 0.5) !important;
  color: #000 !important;
  font-weight: 900 !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  transition: all 0.22s ease !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3) !important;
  padding: 0 !important;
  flex-shrink: 0;
  /* Evitar que se salga del flow del navbar */
  position: relative;
  top: 0;
  margin: 0;
}

.nav-user-trigger:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.55) !important;
}

/* Punto verde de sesión activa */
.nav-user-trigger::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #090909;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.6);
}

/* El panel flotante — posición relativa al menú, no al viewport */
.nav-user-panel {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  min-width: 220px !important;
  background: rgba(11, 13, 16, 0.98) !important;
  border: 1px solid rgba(255, 215, 0, 0.18) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-12px) scale(0.95) !important;
  transform-origin: top right !important;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  z-index: 9999 !important;
}

.nav-user-panel.open {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

/* ============================================================
   MISSION GOAL LINE / TIMELINE
   ============================================================ */
.mission-goalline {
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mission-goalline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mission-goalline-viewport {
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
}

.mission-goalline-track {
  position: relative;
  display: flex;
  gap: 40px;
  min-width: max-content;
  padding: 40px 20px;
}

/* Línea de progreso de fondo */
.mission-goalline-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transform: translateY(-50%);
}

/* Línea de progreso activa */
.mission-goalline-track::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(var(--goal-pct, 0) * 1%);
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-orange));
  box-shadow: 0 0 15px var(--color-primary);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: width 1s ease;
}

.mission-goal-step {
  position: relative;
  width: 220px;
  z-index: 2;
}

.mission-goal-dot-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.mission-goal-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  transition: all 0.3s ease;
}

.is-done .mission-goal-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #000;
  box-shadow: 0 0 15px var(--color-primary);
}

.is-current .mission-goal-dot {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.mission-goal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.is-up .mission-goal-card {
  margin-bottom: 40px;
}

.is-down .mission-goal-card {
  margin-top: 40px;
}

.is-done .mission-goal-card {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.05);
}

.mission-goal-title {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 800;
  letter-spacing: 1px;
}

.mission-goal-prize {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
}

.mission-goal-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 10px;
  /* Evitar que se salga del flow del navbar */
  position: relative;
  top: 0;
  margin: 0;
}

.nav-user-trigger:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.55) !important;
}

/* Punto verde de sesión activa */
.nav-user-trigger::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #090909;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.6);
}

/* El panel flotante — posición relativa al menú, no al viewport */
.nav-user-panel {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  min-width: 220px !important;
  background: rgba(11, 13, 16, 0.98) !important;
  border: 1px solid rgba(255, 215, 0, 0.18) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-12px) scale(0.95) !important;
  transform-origin: top right !important;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  z-index: 9999 !important;
}

.nav-user-panel.open {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

/* ============================================================
   MISSION GOAL LINE / TIMELINE
   ============================================================ */
.mission-goalline {
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mission-goalline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mission-goalline-viewport {
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
}

.mission-goalline-track {
  position: relative;
  display: flex;
  gap: 40px;
  min-width: max-content;
  padding: 40px 20px;
}

/* Línea de progreso de fondo */
.mission-goalline-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  transform: translateY(-50%);
}

/* Línea de progreso activa */
.mission-goalline-track::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: calc(var(--goal-pct, 0) * 1%);
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-orange));
  box-shadow: 0 0 15px var(--color-primary);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: width 1s ease;
}

.mission-goal-step {
  position: relative;
  width: 220px;
  z-index: 2;
}

.mission-goal-dot-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.mission-goal-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  transition: all 0.3s ease;
}

.is-done .mission-goal-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #000;
  box-shadow: 0 0 15px var(--color-primary);
}

.is-current .mission-goal-dot {
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.mission-goal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.is-up .mission-goal-card {
  margin-bottom: 40px;
}

.is-down .mission-goal-card {
  margin-top: 40px;
}

.is-done .mission-goal-card {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.05);
}

.mission-goal-title {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 800;
  letter-spacing: 1px;
}

.mission-goal-prize {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
}

.mission-goal-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.v11-featured-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(10, 14, 18, 0.8) 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
}

.v11-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: white;
  padding: 12px 18px;
  font-family: 'Rajdhani', sans-serif;
  width: 100%;
}

.v11-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 800;
  margin-bottom: 8px;
}

.v11-pro-card {
  background: rgba(10, 14, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

/* --- DESIGN SYSTEM ULTRA PREMIUM V11 --- */
.v11-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: 0.5s;
}

.v11-card-premium:hover::after {
  left: 100%;
}

.v11-stat-circle {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(var(--v11-gold-rgb), 0.2), transparent);
  border: 1px solid rgba(var(--v11-gold-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v11-gold);
  font-size: 24px;
  transition: 0.3s;
}

.v11-card-premium:hover .v11-stat-circle {
  transform: scale(1.1) rotate(5deg);
  background: var(--v11-gold);
  color: black;
  box-shadow: 0 0 20px rgba(var(--v11-gold-rgb), 0.4);
}

.v11-badge-gold {
  background: linear-gradient(90deg, #ffd700, #ffb800);
  color: black;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.v11-btn-ultra {
  background: white;
  color: black;
  border: none;
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.v11-btn-ultra:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

@keyframes floatAnim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.v11-float {
  animation: floatAnim 3s ease-in-out infinite;
}

:root {
  --v11-gold: #ffd700;
  --v11-gold-rgb: 255, 215, 0;
  --v11-dark-bg: #0a0e12;
}

.v11-neon {
  text-shadow: 0 0 10px rgba(var(--v11-gold-rgb), 0.5), 0 0 20px rgba(var(--v11-gold-rgb), 0.3);
}

.v11-card-premium {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.v11-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--v11-gold-rgb), 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(var(--v11-gold-rgb), 0.1);
}

.v11-section-title-premium {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.v11-section-title-premium i {
  color: var(--v11-gold);
  filter: drop-shadow(0 0 5px rgba(var(--v11-gold-rgb), 0.5));
}

/* ============================================================
   AGENTES PUBLICOS - PREMIUM ECUABET
   ============================================================ */

.agentes-premium-section {
  position: relative;
  isolation: isolate;
}

.agentes-premium-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 215, 0, 0.08), transparent 34%),
    radial-gradient(circle at 84% 8%, rgba(255, 140, 0, 0.06), transparent 30%);
}

.agentes-premium-head,
.agentes-filter-bar,
.agentes-grid {
  position: relative;
  z-index: 1;
}

.agentes-premium-head {
  padding-bottom: 22px;
}

.agentes-filter-bar {
  align-items: center;
  padding: 18px 40px 6px;
}

.agentes-filter-control {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(10, 14, 18, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.agentes-filter-control:hover,
.agentes-filter-control:focus {
  border-color: rgba(255, 215, 0, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(10, 14, 18, 0.86);
}

.agentes-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.agentes-card {
  min-height: 100%;
  border-radius: 24px;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 215, 0, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(18, 21, 24, 0.92), rgba(10, 12, 15, 0.94));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.36);
}

.agentes-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 0, 0.08), transparent 32%);
  transition: opacity 0.3s ease;
}

.agentes-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 215, 0, 0.38);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 215, 0, 0.08),
    0 0 28px rgba(255, 215, 0, 0.1);
}

.agentes-card:hover::before {
  opacity: 1;
}

.agentes-card.is-featured {
  border-color: rgba(255, 215, 0, 0.34);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 0, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(26, 24, 13, 0.94), rgba(10, 12, 15, 0.95));
}

.agentes-card>* {
  position: relative;
  z-index: 1;
}

.agentes-card-top,
.agentes-card-main,
.agentes-card-actions,
.agentes-rating-wrap {
  display: flex;
}

.agentes-card-top {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.agentes-badge {
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.08);
}

.agentes-rate-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 215, 0, 0.26);
  border-radius: 999px;
  color: #ffff00;
  background: rgba(255, 215, 0, 0.08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.agentes-card-main {
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.agentes-avatar {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 0, 0.34);
  color: #ffd700;
  background:
    linear-gradient(180deg, rgba(255, 215, 0, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 24px rgba(255, 215, 0, 0.05), 0 0 18px rgba(255, 215, 0, 0.12);
}

.agentes-info {
  min-width: 0;
}

.agentes-name {
  font-size: 1.32rem;
  line-height: 1.05;
}

.agentes-location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
}

.agentes-location i,
.agentes-contact i {
  color: #ffd700;
}

.agentes-contact-list {
  display: grid;
  gap: 7px;
  min-height: 34px;
}

.agentes-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-wrap: anywhere;
}

.agentes-rating-wrap {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.agentes-rating-wrap .stars-icons {
  justify-content: flex-start;
  margin: 0;
}

.agentes-rating-text {
  white-space: nowrap;
}

.agentes-rating-text b {
  color: #ffff00;
}

.agentes-social-actions,
.agentes-card-actions {
  margin-top: 4px;
}

.agentes-social-actions {
  justify-content: center;
}

.agentes-social-btn {
  width: 42px;
  height: 42px;
  justify-content: center;
  padding: 0;
  border-radius: 12px;
}

.agentes-card .btn-mini.disabled,
.agentes-card .btn-mini:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.agentes-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.agentes-card-actions .btn-mini {
  min-height: 44px;
  justify-content: center;
  border-radius: 13px;
  font-weight: 900;
}

.agentes-action-rate {
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.24);
  background: rgba(255, 215, 0, 0.08);
}

.agentes-action-rate:hover {
  color: #111;
  border-color: rgba(255, 215, 0, 0.72);
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  box-shadow: 0 12px 26px rgba(255, 215, 0, 0.22);
}

.agentes-action-wa {
  font-weight: 900;
}

/* --- ESTILOS PARA LA AGENCIA VIRTUAL --- */
.agencia-v2-virtual-space {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, rgba(20, 24, 28, 0.9), rgba(10, 14, 18, 0.95));
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.agencia-v2-virtual-space::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.agencia-v2-virtual-space::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

.agencia-v2-virtual-space i {
  font-size: 36px;
  color: #FFD700;
  margin-bottom: 8px;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
  animation: pulseVirtual 2s infinite;
}

.agencia-v2-virtual-space .virtual-text {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  z-index: 2;
  text-transform: uppercase;
}

.agencia-v2-virtual-space .virtual-subtext {
  font-size: 11px;
  color: #A0AAB5;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@keyframes pulseVirtual {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}


/* ==========================================================
   BOTON FLOTANTE "TRABAJA CON NOSOTROS" (SNAKE VIP)
   ========================================================== */
.btn-neon-solido-floating {
  --btn-radius: 999px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1105;
  padding: 3px;
  /* Espacio para el borde snake */
  background: #000;
  border-radius: var(--btn-radius);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 214, 0, 0.3);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

/* El snake border */
.btn-neon-solido-floating::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent,
      transparent,
      transparent,
      #FFD700);
  animation: girar-escaner-float 2.5s linear infinite;
  z-index: 0;
}

@keyframes girar-escaner-float {
  100% {
    transform: rotate(360deg);
  }
}

/* Fondo interior */
.btn-neon-solido-floating::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #000;
  border-radius: calc(var(--btn-radius) - 2px);
  z-index: 1;
  transition: background 0.4s ease;
}

/* Contenido del botón */
.btn-neon-solido-floating>a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 42px 12px 28px;
  /* Extra padding derecho para la X */
  color: #FFD700 !important;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.4s ease;
  text-shadow: none !important;
  /* Sin glitch fatal */
}

.btn-neon-solido-floating>a svg {
  width: 24px;
  height: 24px;
  fill: #FFD700;
  transition: fill 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(255, 214, 0, 0.5));
}

/* Botón de cerrar (la X) */
.btn-neon-solido-floating .floating-close-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: #FFD700;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ESTADO HOVER */
.btn-neon-solido-floating:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 25px #FFD700, 0 0 45px rgba(255, 214, 0, 0.6);
}

.btn-neon-solido-floating:hover::after {
  background: #FFD700;
}

.btn-neon-solido-floating:hover>a {
  color: #000 !important;
}

.btn-neon-solido-floating:hover>a svg {
  fill: #000;
  filter: none;
}

.btn-neon-solido-floating:hover .floating-close-btn {
  color: #000;
}

.btn-neon-solido-floating .floating-close-btn:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 980px) {
  #inicio .home-carousel-container {
    width: 93%;
    border-radius: 12px;
    border: none;
  }

  .btn-neon-solido-floating {
    left: 14px;
    bottom: 14px;
  }

  .btn-neon-solido-floating>a {
    padding: 10px 36px 10px 22px;
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 640px) {
  #inicio .home-carousel-container {
    width: 95%;
    border-radius: 11px;
    border: none;
  }

  .btn-neon-solido-floating>a {
    padding: 8px 32px 8px 18px;
    font-size: 0.8rem;
    gap: 8px;
  }

  .btn-neon-solido-floating>a svg {
    width: 18px;
    height: 18px;
  }

  .btn-neon-solido-floating .floating-close-btn {
    right: 8px;
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

/* ==========================================================
   BOTON FLOTANTE WHATSAPP (SNAKE WA)
   ========================================================== */
.btn-wa-solido-floating {
  --btn-radius: 999px;
  position: fixed;
  left: 20px;
  bottom: 85px;
  z-index: 1105;
  padding: 3px;
  background: #000;
  border-radius: var(--btn-radius);
  overflow: hidden;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
}

.btn-wa-solido-floating::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, transparent, transparent, #25D366);
  animation: girar-escaner-float 2.5s linear infinite;
  z-index: 0;
}

.btn-wa-solido-floating::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: #000;
  border-radius: calc(var(--btn-radius) - 2px);
  z-index: 1;
  transition: background 0.4s ease;
}

.btn-wa-solido-floating>a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 38px 12px 24px;
  color: #25D366 !important;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.4s ease;
  text-shadow: none !important;
}

.btn-wa-solido-floating>a i {
  font-size: 22px;
  color: #25D366;
  transition: color 0.4s ease;
  filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.5));
}

.btn-wa-solido-floating .floating-close-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: #25D366;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-wa-solido-floating:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 25px #25D366, 0 0 45px rgba(37, 211, 102, 0.6);
}

.btn-wa-solido-floating:hover::after {
  background: #25D366;
}

.btn-wa-solido-floating:hover>a {
  color: #000 !important;
}

.btn-wa-solido-floating:hover>a i {
  color: #000;
  filter: none;
}

.btn-wa-solido-floating:hover .floating-close-btn {
  color: #000;
}

.btn-wa-solido-floating .floating-close-btn:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 980px) {
  .btn-wa-solido-floating {
    left: 14px;
    bottom: 80px;
  }

  .btn-wa-solido-floating>a {
    padding: 10px 32px 10px 18px;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 640px) {
  .btn-wa-solido-floating>a {
    padding: 8px 28px 8px 14px;
    font-size: 0.75rem;
    gap: 6px;
  }

  .btn-wa-solido-floating>a i {
    font-size: 16px;
  }

  .btn-wa-solido-floating .floating-close-btn {
    right: 8px;
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #inicio .home-carousel-container {
    width: 96%;
    border-radius: 10px;
    border: none;
  }
}

@media (max-width: 360px) {
  #inicio .home-carousel-container {
    border-radius: 8px;
    border: none;
  }
}

/* ============================================================
   NAVBAR FIRE BUTTONS - ECUABET HOME
   ============================================================ */
.navbar-pro-v2 .nav-left {
  gap: 8px;
}

.navbar-pro-v2 .nav-item,
.navbar-pro-v2 .nav-auth-btn {
  --nav-fire-clr: #FFD700;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 0;
  border-radius: 8px;
  background: #000;
  color: var(--nav-fire-clr);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), box-shadow .35s ease, color .3s ease;
}

.navbar-pro-v2 .nav-fire-gold {
  --nav-fire-clr: #FFD700;
}

.navbar-pro-v2 .nav-fire-red {
  --nav-fire-clr: #FF0000;
}

.navbar-pro-v2 .nav-fire-orange {
  --nav-fire-clr: #FF4500;
}

.navbar-pro-v2 .nav-fire-aqua {
  --nav-fire-clr: #39FF14;
}

.navbar-pro-v2 .nav-fire-blue {
  --nav-fire-clr: #2F80FF;
}

.navbar-pro-v2 .nav-fire-pink {
  --nav-fire-clr: #FF4FC3;
}

.navbar-pro-v2 .nav-item::before,
.navbar-pro-v2 .nav-auth-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 155%;
  height: 155%;
  background: conic-gradient(from 0deg,
      transparent 0%,
      transparent 60%,
      var(--nav-fire-clr) 82%,
      #fff 100%);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: navFireSpin 2.5s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.navbar-pro-v2 .nav-item::after,
.navbar-pro-v2 .nav-auth-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  width: auto;
  height: auto;
  border-radius: 6px;
  background: #0a0a0a;
  z-index: 1;
  transition: background .3s ease, box-shadow .3s ease;
  pointer-events: none;
}

.navbar-pro-v2 .nav-item span,
.navbar-pro-v2 .nav-auth-btn span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: inherit;
  white-space: nowrap;
  transition: color .3s ease, text-shadow .3s ease, transform .3s ease;
}

.navbar-pro-v2 .nav-item:hover,
.navbar-pro-v2 .nav-auth-btn:hover {
  transform: scale(1.035) translateY(-3px);
  color: #fff;
  box-shadow: 0 10px 20px -5px var(--nav-fire-clr);
}

.navbar-pro-v2 .nav-item:hover span,
.navbar-pro-v2 .nav-auth-btn:hover span,
.navbar-pro-v2 .nav-item.active span {
  color: #fff;
  text-shadow: 0 0 10px var(--nav-fire-clr), 0 0 20px var(--nav-fire-clr), 0 0 40px var(--nav-fire-clr);
}

.navbar-pro-v2 .nav-item:hover::after,
.navbar-pro-v2 .nav-auth-btn:hover::after,
.navbar-pro-v2 .nav-item.active::after {
  background: #000;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, .1), inset 0 0 15px var(--nav-fire-clr);
}

.navbar-pro-v2 .nav-item:hover::before,
.navbar-pro-v2 .nav-auth-btn:hover::before {
  animation-duration: 1s;
}

.navbar-pro-v2 .nav-auth-btn i {
  position: relative;
  z-index: 2;
  font-size: 15px;
  transition: transform .3s ease;
}

.navbar-pro-v2 .nav-auth-btn:hover i {
  transform: translateX(5px);
}

.navbar-pro-v2 .nav-item.click-flash,
.navbar-pro-v2 .nav-auth-btn.click-flash {
  animation: navFireFlash .5s ease-out forwards;
}

@keyframes navFireSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes navFireFlash {
  0% {
    box-shadow: 0 0 0 0 var(--nav-fire-clr), inset 0 0 20px var(--nav-fire-clr);
    transform: scale(.95);
  }

  50% {
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0), inset 0 0 0 transparent;
    transform: scale(1.1);
  }

  100% {
    box-shadow: 0 10px 20px -5px var(--nav-fire-clr);
    transform: scale(1.035) translateY(-3px);
  }
}