/* ===========================================
   RightGameChoice.com — Magic Premium CSS
   Autor: Senior Frontend Developer
   Estilo: Oscuro, Neón, Místico, Premium
   =========================================== */

/* === VARIABLES GLOBALES === */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f1a;
  --bg-card: #12121e;
  --bg-glass: rgba(18, 18, 30, 0.85);
  --neon-purple: #a855f7;
  --neon-pink: #ec4899;
  --neon-cyan: #06b6d4;
  --neon-gold: #f59e0b;
  --neon-green: #10b981;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-glow: rgba(168, 85, 247, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0f0f1a 100%);
  --gradient-card: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(6,182,212,0.05));
  --gradient-neon: linear-gradient(90deg, #a855f7, #ec4899, #06b6d4);
  --gradient-gold: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  --shadow-neon: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --radius-card: 16px;
  --radius-btn: 50px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-width: 300px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neon-purple);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--neon-pink);
}

ul {
  list-style: none;
}

/* === SCROLLBAR PERSONALIZADO === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 3px;
}

/* === ESTRELLAS DE FONDO === */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(168,85,247,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 60%, rgba(6,182,212,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 15%, rgba(236,72,153,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 75%, rgba(245,158,11,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 40%, rgba(168,85,247,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 20% 80%, rgba(255,255,255,0.15) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 30%, rgba(255,255,255,0.1) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,0.2) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.gradient-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BOTONES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  box-shadow: 0 4px 20px rgba(168,85,247,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(168,85,247,0.6);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--neon-purple);
  border: 2px solid var(--neon-purple);
}
.btn-secondary:hover {
  background: var(--neon-purple);
  color: #fff;
  box-shadow: var(--shadow-neon);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #1a0a00;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.6);
  color: #1a0a00;
}

/* === CONTENEDOR === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === SECCIONES === */
section {
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-purple);
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 50px;
  background: rgba(168,85,247,0.08);
}

/* === DIVIDER NEÓN === */
.neon-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-neon);
  border-radius: 2px;
  margin: 20px auto 0;
  box-shadow: 0 0 10px rgba(168,85,247,0.5);
}

/* ============================================
   HEADER / NAVEGACIÓN
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  box-shadow: 0 4px 30px rgba(168,85,247,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

/* Navegación desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text-primary);
  background: rgba(168,85,247,0.1);
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--neon-purple);
  border-radius: 1px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
}

/* Botón hamburguesa */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  transition: var(--transition);
  z-index: 1001;
}

.burger-btn:hover {
  background: rgba(168,85,247,0.2);
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neon-purple);
  border-radius: 2px;
  transition: var(--transition);
}

.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menú móvil */
.nav-mobile {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  padding: 20px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  opacity: 0;
  /* Пока меню закрыто — не перехватывает клики (иначе перекрывает ссылки хедера) */
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--text-primary);
  background: rgba(168,85,247,0.1);
  border-color: rgba(168,85,247,0.2);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,85,247,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(6,182,212,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(236,72,153,0.12) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10,10,15,0.3) 60%,
    rgba(10,10,15,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(168,85,247,0.2); }
  50% { box-shadow: 0 0 25px rgba(168,85,247,0.5); }
}

.hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown */
.countdown-wrapper {
  margin: 40px auto;
  max-width: 500px;
}

.countdown-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(18,18,30,0.8);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 80px;
  backdrop-filter: blur(10px);
}

.countdown-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.countdown-unit {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Partículas flotantes */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.6;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ============================================
   SECCIÓN POR QUÉ NOSOTROS
   ============================================ */
.why-us-section {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.why-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-neon);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card), 0 0 30px rgba(168,85,247,0.15);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(236,72,153,0.1));
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   SECCIÓN SERVICIOS (PRODUCTS GRID)
   ============================================ */
.services-section {
  background: var(--bg-primary);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-card);
  pointer-events: none; /* не перехватывает клики — кнопки внутри карточки кликабельны */
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 20px 50px rgba(168,85,247,0.2), 0 0 30px rgba(168,85,247,0.1);
}

.service-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.badge-popular {
  background: rgba(245,158,11,0.15);
  color: var(--neon-gold);
  border: 1px solid rgba(245,158,11,0.3);
}

.badge-new {
  background: rgba(16,185,129,0.15);
  color: var(--neon-green);
  border: 1px solid rgba(16,185,129,0.3);
}

.badge-premium {
  background: rgba(168,85,247,0.15);
  color: var(--neon-purple);
  border: 1px solid rgba(168,85,247,0.3);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-cta {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-cta:hover {
  opacity: 0.9;
  transform: scale(1.03);
  color: #fff;
}

/* ============================================
   SECCIÓN UBICACIÓN
   ============================================ */
.location-section {
  background: var(--bg-secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.location-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(168,85,247,0.12);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.location-item-text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.location-item-text p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.schedule-table td {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border-subtle);
}

.schedule-table td:first-child {
  font-weight: 600;
  color: var(--neon-purple);
  width: 100px;
}

/* ============================================
   GALERÍA / ATMÓSFERA
   ============================================ */
.gallery-section {
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

/* Item 1 spans 2 cols (wide hero), items 2–5 are square */
.gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
}

/* Reseñas */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(168,85,247,0.15);
  font-family: Georgia, serif;
}

.review-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--neon-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}
.review-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   SECCIÓN SOBRE NOSOTROS / PREDISKAZATELI
   ============================================ */
.about-section {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text h3 {
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 28px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.93rem;
}

.about-list li::before {
  content: '✦';
  color: var(--neon-purple);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.tarotist-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tarotist-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}

.tarotist-card:hover {
  border-color: var(--border-glow);
  transform: translateX(8px);
}

.tarotist-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  border: 2px solid rgba(168,85,247,0.3);
}

.tarotist-info h4 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.tarotist-info .specialty {
  font-size: 0.8rem;
  color: var(--neon-purple);
  margin-bottom: 10px;
}

.tarotist-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg,
    rgba(168,85,247,0.12) 0%,
    rgba(10,10,15,1) 40%,
    rgba(236,72,153,0.08) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  box-shadow: 0 4px 20px rgba(131,58,180,0.4);
}
.social-btn-instagram:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(131,58,180,0.6);
  color: #fff;
}

.social-btn-tiktok {
  background: #000;
  color: #fff;
  border: 2px solid #69C9D0;
  box-shadow: 0 4px 20px rgba(105,201,208,0.3);
}
.social-btn-tiktok:hover {
  background: #111;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(105,201,208,0.5);
  color: #fff;
}

.social-btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.social-btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  color: #fff;
}

.social-btn-email {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
}
.social-btn-email:hover {
  background: rgba(168,85,247,0.15);
  color: var(--text-primary);
  transform: translateY(-4px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .logo-text {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-contact a:hover {
  color: var(--neon-purple);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--neon-purple);
  padding-left: 6px;
}

/* Google Maps iframe */
.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  margin-top: 30px;
}

.map-wrapper iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg);
  opacity: 0.8;
}

/* Iconos de pago */
.payment-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.payment-icon {
  height: 28px;
  opacity: 0.75;
  transition: var(--transition);
  border-radius: 5px;
  /* Без фильтра — SVG отображают свои нативные цвета (Visa синяя, Mastercard, PayPal) */
}
.payment-icon:hover { opacity: 1; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer-legal-links a:hover {
  color: var(--neon-purple);
}

/* ============================================
   SLOT PICKER
   ============================================ */
.slot-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.slot-pick-btn {
  position: relative;
  border: 2px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background-color: var(--bg-card);
  background-image: var(--thumb);
  background-size: cover;
  background-position: center;
  transition: var(--transition);
  padding: 0;
}

.slot-pick-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.2) 60%);
}

.slot-pick-btn span {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  padding: 0 6px;
  line-height: 1.3;
}

.slot-pick-btn:hover {
  border-color: rgba(168,85,247,0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168,85,247,0.25);
}

.slot-pick-btn.active {
  border-color: var(--neon-purple);
  box-shadow: 0 0 16px rgba(168,85,247,0.4);
}

.slot-pick-btn.active::after {
  content: '▶';
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.65rem;
  color: var(--neon-purple);
  background: rgba(10,10,15,0.8);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 18px;
  text-align: center;
}

@media (max-width: 767px) {
  .slot-picker { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .slot-pick-btn span { font-size: 0.62rem; }
}
@media (max-width: 480px) {
  .slot-picker { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: rgba(15, 15, 26, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 28px;
  z-index: 2000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(168,85,247,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cookie-banner h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.cookie-banner p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-accept {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover { opacity: 0.9; transform: scale(1.03); }

.cookie-settings {
  padding: 10px 22px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-settings:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
}

.cookie-decline {
  padding: 10px 22px;
  background: transparent;
  color: var(--text-muted);
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-decline:hover { color: var(--text-secondary); }

/* ============================================
   PARTNERS PAGE
   ============================================ */
.partners-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg,
    rgba(168,85,247,0.08) 0%,
    transparent 100%);
}

.partners-intro {
  max-width: 750px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 24px;
}

/* Rating list */
.rating-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

.rating-card {
  display: grid;
  grid-template-columns: 60px auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.rating-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 8px 30px rgba(168,85,247,0.15);
  transform: translateX(6px);
}

.rating-rank {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.rating-logo {
  width: 100px;
  height: 56px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  flex-shrink: 0;
}

.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.partner-logo-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.rating-info p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}
.rating-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.rating-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(168,85,247,0.1);
  color: var(--neon-purple);
  border: 1px solid rgba(168,85,247,0.2);
}

.rating-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.rating-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-gold);
}

/* SEO Article */
.seo-article {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px;
  margin-bottom: 50px;
}

.seo-article h2 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.seo-article h3 {
  margin: 28px 0 14px;
  color: var(--neon-purple);
  font-size: 1.15rem;
}

.seo-article p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Responsible Gaming */
.responsible-block {
  background: linear-gradient(135deg,
    rgba(16,185,129,0.05),
    rgba(10,10,15,1));
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-card);
  padding: 36px;
  margin-bottom: 50px;
}

.responsible-block h3 {
  color: var(--neon-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.responsible-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.responsible-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.responsible-logo-link:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #dc2626;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}

.disclaimer-box {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
}

.disclaimer-box p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ============================================
   SOCIAL PARTNERS / SLOT CONTAINER
   ============================================ */
.slot-container {
  background: var(--bg-card);
  border: 2px solid rgba(168,85,247,0.3);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 0 30px rgba(168,85,247,0.2);
}

.slot-header {
  background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(236,72,153,0.08));
  border-bottom: 1px solid rgba(168,85,247,0.2);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slot-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slot-iframe-wrapper {
  width: 100%;
  min-height: 600px;
  position: relative;
  background: #000;
}

.slot-iframe-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* ============================================
   PRIVACY / REFUND PAGES
   ============================================ */
.legal-page {
  padding: 130px 0 80px;
}

.legal-header {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-header h1 {
  margin-bottom: 16px;
}

.legal-header .last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 36px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

/* ============================================
   ANIMACIONES SCROLL (AOS-like)
   ============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE — TABLET (max 991px)
   ============================================ */
@media (max-width: 991px) {
  /* Navbar */
  .nav-desktop { display: none; }
  .burger-btn { display: flex; }

  /* Layouts */
  .location-grid,
  .about-content,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }

  .rating-card {
    grid-template-columns: 50px auto 1fr;
    grid-template-rows: auto auto;
  }

  .rating-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
}

/* ============================================
   RESPONSIVE — MÓVIL (max 600px)
   ============================================ */
@media (max-width: 600px) {
  .section-padding { padding: 60px 0; }
  .hero-content { padding: 40px 16px; }

  .countdown { gap: 8px; }
  .countdown-item {
    min-width: 64px;
    padding: 12px 14px;
  }
  .countdown-number { font-size: 1.7rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { justify-content: center; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }

  .social-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .social-btn { justify-content: center; }

  .rating-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .seo-article { padding: 24px; }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .responsible-logos { flex-direction: column; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE — MINI (max 400px / 300px)
   ============================================ */
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .header-inner { padding: 0 12px; }
  .logo-text { font-size: 1.1rem; }

  .countdown { gap: 6px; }
  .countdown-item { min-width: 56px; padding: 10px 10px; }
  .countdown-number { font-size: 1.4rem; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }

  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .cookie-actions { flex-direction: column; }
  .cookie-accept, .cookie-settings, .cookie-decline { width: 100%; }
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   ACCESSIBILITY — SKIP LINK
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 24px;
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #f0c040;
  outline-offset: 2px;
}

/* ============================================
   ACCESSIBILITY — FOCUS VISIBLE
   ============================================ */
:focus-visible {
  outline: 3px solid #a855f7;
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #a855f7;
  outline-offset: 3px;
}
/* Remove default outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================
   PERFORMANCE — REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg-animation,
  .star,
  .floating-card {
    animation: none !important;
  }
}

/* ============================================
   PERFORMANCE — CONTENT VISIBILITY
   ============================================ */
.services-section,
.gallery-section,
.reviews-section,
.tarotists-section,
.seo-section,
.responsible-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header, .cookie-banner, .skip-link,
  .hero-section, .footer { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
