/* VARIABLES COMPORTAMIENTO PREMIUM CASINO */
:root {
  --bg-dark: #070b12;
  --bg-card: #0f1624;
  --bg-light: #162035;
  --primary-gold: #f4c430;
  --primary-gold-hover: #ffd700;
  --accent-silver: #e5e8e8;
  --text-white: #ffffff;
  --text-gray: #a6b4c9;
  --gold-gradient: linear-gradient(135deg, #b8860b 0%, #e6ca65 50%, #996515 100%);
  --dark-gradient: linear-gradient(180deg, #0f1624 0%, #070b12 100%);
  --font-serif: 'Cinzel', 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
}

body {
  position: relative;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* ELEMENTOS DE REVELACIÓN INICIAL (ANIMACIÓN JS) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* NAVBAR */
.premium-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 11, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 196, 48, 0.15);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  width: 220px;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-cta {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  padding: 10px 22px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(230, 202, 101, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 202, 101, 0.5);
}

/* HERO SECTION */
.hero {
  padding: 160px 5% 80px;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1sfr 0.9fr;
  align-items: center;
  gap: 50px;
  background: radial-gradient(circle at 70% 30%, rgba(244, 196, 48, 0.08) 0%, transparent 60%);
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

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

.hero-content p {
  color: var(--text-gray);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-frame {
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 2px solid rgba(244, 196, 48, 0.3);
  border-radius: 14px;
  overflow: hidden;
}

.hero-frame img {
  border-radius: 0;
  transition: transform 6s ease;
}

.hero-frame:hover img {
  transform: scale(1.04);
}

/* SECCIÓN CONTENEDORA GENERAL DE SECCIONES */
section {
  padding: 100px 5%;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 15px auto 0;
}

/* BLOQUE DE PRESENTACIÓN */
.intro-layout {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 900px;
  margin: 0 auto;
}

.intro-p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  text-align: justify;
}

/* TABLA DE PERFIL TÉCNICO */
.technical-wrapper {
  background: var(--bg-card);
  border: 1px solid rgba(244, 196, 48, 0.15);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 50px auto 0;
}

.technical-table {
  width: 100%;
  border-collapse: collapse;
}

.technical-table th {
  background: rgba(244, 196, 48, 0.1);
  font-family: var(--font-serif);
  color: var(--primary-gold);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 20px;
  text-align: left;
  border-bottom: 2px solid rgba(244, 196, 48, 0.2);
}

.technical-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem;
}

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

.technical-table td:first-child {
  font-weight: 600;
  color: var(--accent-silver);
  width: 35%;
}

.technical-table td:last-child {
  color: var(--text-gray);
}

.tech-note {
  max-width: 900px;
  margin: 30px auto 0;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* MECÁNICA PASO A PASO */
.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.mechanic-card {
  background: var(--bg-card);
  border-top: 4px solid var(--primary-gold);
  padding: 35px 25px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: var(--transition-smooth);
}

.mechanic-card:hover {
  transform: translateY(-8px);
  background: var(--bg-light);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: rgba(244, 196, 48, 0.3);
  font-weight: bold;
  margin-bottom: 15px;
}

.mechanic-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.mechanic-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.decision-block {
  background: linear-gradient(90deg, rgba(244, 196, 48, 0.05) 0%, rgba(7, 11, 18, 0.8) 100%);
  border-left: 4px solid var(--primary-gold);
  padding: 30px;
  border-radius: 4px;
  max-width: 900px;
  margin: 40px auto 0;
}

.decision-block h4 {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.decision-block ul {
  list-style-position: inside;
  margin-top: 15px;
  color: var(--text-white);
  font-weight: 600;
}

.decision-block ul li {
  margin-bottom: 8px;
}

/* AUTOMÁTICO FEATURES */
.auto-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.auto-box h3 {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.auto-box p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* VENTAJAS Y DESVENTAJAS */
.pros-cons-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pc-box {
  padding: 40px;
  border-radius: 16px;
}

.pc-box.pros {
  background: rgba(46, 204, 113, 0.04);
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.pc-box.cons {
  background: rgba(231, 76, 60, 0.04);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.pc-box h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.pc-box.pros h3 { color: #2ecc71; }
.pc-box.cons h3 { color: #e74c3c; }

.pc-list {
  list-style: none;
}

.pc-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--text-gray);
}

.pc-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: bold;
}

.pros .pc-list li::before {
  content: '✓';
  color: #2ecc71;
}

.cons .pc-list li::before {
  content: '✕';
  color: #e74c3c;
}

/* SECCIÓN ESTRATEGIAS MULTI-VISUAL */
.strategy-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.strat-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(244, 196, 48, 0.1);
  margin-bottom: 30px;
}

.strat-card h3 {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.strat-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.strat-card ul {
  list-style-type: square;
  list-position: inside;
  color: var(--text-gray);
}

.strat-card ul li {
  margin-bottom: 8px;
}

/* JUEGO RESPONSABLE BOX */
.responsible-banner {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
  border: 2px dashed rgba(244, 196, 48, 0.3);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.responsible-banner h2 {
  font-family: var(--font-serif);
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-size: 2rem;
}

.responsible-banner p {
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 30px;
}

.responsible-limits {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.limit-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--accent-silver);
}

/* VERDICTO Y METRICAS */
.verdict-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.verdict-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.metrics-box {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(244, 196, 48, 0.2);
}

.metric-row {
  margin-bottom: 25px;
}

.metric-row:last-child {
  margin-bottom: 0;
}

.metric-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.metric-bar-bg {
  background: rgba(255,255,255,0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.metric-bar-fill {
  background: var(--gold-gradient);
  height: 100%;
  width: 0;
  transition: width 2s cubic-bezier(0.25, 1, 0.5, 1);
}

.global-score {
  text-align: center;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.global-score h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 5px;
}

.global-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-gold);
  font-family: var(--font-serif);
}

/* GALERÍA DE IMÁGENES COMPLEMENTARIAS INTERMEDIAS */
.mid-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

/* FOOTER */
.premium-footer {
  background: #04060a;
  padding: 80px 5% 40px;
  border-top: 1px solid rgba(244, 196, 48, 0.1);
}

.footer-top {
  display: grid