@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Nunito:wght@300;400;600;700;800&display=swap");

:root {
  --navy: #0a0f2e;
  --navy-mid: #111836;
  --navy-card: #161d42;
  --gold: #f5c518;
  --gold-dark: #d4a800;
  --teal: #00d4aa;
  --teal-dark: #00a888;
  --white: #f0f4ff;
  --muted: #8892b0;
  --danger: #ff4f6a;

  --font-head: "Playfair Display", serif;
  --font-body: "Nunito", sans-serif;

  --radius: 16px;
  --shadow-gold:
    0 0 20px rgba(245, 197, 24, 0.35), 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-teal: 0 0 20px rgba(0, 212, 170, 0.3);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.5);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

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

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 1rem auto 2rem;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
  padding: 1rem 0;
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo span {
  color: var(--teal);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links .btn {
  margin-left: 0.5rem;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
}
.burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(245, 197, 24, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 40% at 20% 80%,
      rgba(0, 212, 170, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, #0a0f2e 0%, #0d1235 100%);
  z-index: 0;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero-bg::before {
  width: 350px;
  height: 350px;
  right: 5%;
  top: 10%;
  background: radial-gradient(
    circle,
    rgba(245, 197, 24, 0.12) 0%,
    transparent 70%
  );
  animation-delay: 0s;
}
.hero-bg::after {
  width: 200px;
  height: 200px;
  right: 30%;
  bottom: 20%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 170, 0.1) 0%,
    transparent 70%
  );
  animation-delay: -4s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  animation: fadeInLeft 0.9s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.hero-title .accent-gold {
  color: var(--gold);
}
.hero-title .accent-teal {
  color: var(--teal);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual {
  animation: fadeInRight 0.9s 0.2s ease both;
}
.casino-illustration {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.slot-machine {
  background: linear-gradient(145deg, #1a2350, #0d1235);
  border: 2px solid rgba(245, 197, 24, 0.3);
  border-radius: 24px;
  padding: 2rem;
  box-shadow:
    var(--shadow-gold),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.slot-machine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.slot-header {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.slot-reels {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.reel {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #0a0f2e, #161d42);
  border: 2px solid rgba(245, 197, 24, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  animation: reelSpin 3s ease-in-out infinite;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}
.reel:nth-child(2) {
  animation-delay: 0.3s;
}
.reel:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes reelSpin {
  0%,
  80%,
  100% {
    transform: rotateX(0);
  }
  10% {
    transform: rotateX(360deg);
  }
}
.slot-payline {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--teal),
    var(--gold),
    transparent
  );
  border-radius: 2px;
  margin: 0 1rem 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.slot-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.4);
}
.slot-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.6);
}
.floating-chips {
  position: absolute;
  animation: floatChip 4s ease-in-out infinite;
}
.chip {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.chip-1 {
  background: linear-gradient(135deg, #f5c518, #d4a800);
  top: -20px;
  right: 30px;
  animation: floatChip 3s ease-in-out infinite;
}
.chip-2 {
  background: linear-gradient(135deg, #00d4aa, #00a888);
  bottom: 20px;
  left: -20px;
  animation: floatChip 3.5s 1s ease-in-out infinite;
}
.chip-3 {
  background: linear-gradient(135deg, #ff4f6a, #cc3355);
  top: 50%;
  right: -25px;
  animation: floatChip 4s 0.5s ease-in-out infinite;
}
@keyframes floatChip {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(15deg);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#acerca {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
#acerca::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 170, 0.05) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}
.acerca-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.acerca-text h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.acerca-text p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.acerca-text p strong {
  color: var(--white);
}
.acerca-badge {
  display: inline-block;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.3);
  color: var(--teal);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.feature-img {
  background: linear-gradient(145deg, var(--navy-card), #1a2350);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.feature-img i {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-img p {
  color: var(--muted);
  font-size: 0.95rem;
}
.advantage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.advantage-card {
  background: var(--navy-card);
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(245, 197, 24, 0.35);
}
.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(245, 197, 24, 0.15),
    rgba(245, 197, 24, 0.05)
  );
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.advantage-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}
.advantage-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.advantage-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

#juegos {
  background: var(--navy);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.game-card {
  background: var(--navy-card);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}
.game-preview {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-1 .game-preview {
  background: linear-gradient(135deg, #1a0a2e, #2d1a4a, #3d2a0a);
}
.game-2 .game-preview {
  background: linear-gradient(135deg, #0a1a0a, #1a3a1a, #2a4a0a);
}
.game-icon-large {
  font-size: 5rem;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(245, 197, 24, 0.4));
}
.game-badge-new {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.game-info {
  padding: 1.5rem;
}
.game-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.game-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}
.game-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.game-tag {
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}
.game-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}
.game-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
iframe {
  display: none;
}

#game-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.97);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.overlay-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(245, 197, 24, 0.08);
  border-bottom: 1px solid rgba(245, 197, 24, 0.15);
}
.overlay-title {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.2rem;
}
#close-overlay {
  background: rgba(255, 79, 106, 0.15);
  border: 1px solid rgba(255, 79, 106, 0.3);
  color: #ff4f6a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
#close-overlay:hover {
  background: #ff4f6a;
  color: white;
}
#game-frame {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
  background: #000;
}
.game-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  color: var(--muted);
  font-size: 1.1rem;
}
.game-placeholder i {
  font-size: 4rem;
  color: var(--gold);
}

#como {
  background: var(--navy-mid);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 3.2rem;
  left: calc(16.6% + 2rem);
  right: calc(16.6% + 2rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  z-index: 0;
}
.step-card {
  background: var(--navy-card);
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  z-index: 1;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}
.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(245, 197, 24, 0.12),
    rgba(0, 212, 170, 0.05)
  );
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.step-icon i {
  font-size: 2rem;
  color: var(--gold);
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

#promo {
  background: var(--navy);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.promo-card {
  background: linear-gradient(145deg, var(--navy-card), #1a2350);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  overflow: hidden;
  position: relative;
}
.promo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.promo-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.promo-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}
.promo-card:nth-child(3)::before {
  background: linear-gradient(90deg, #9c6fde, #7040b0);
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.promo-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.promo-amount {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.promo-unit {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.promo-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.promo-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}
.promo-disclaimer {
  color: rgba(136, 146, 176, 0.6);
  font-size: 0.75rem;
  font-style: italic;
}

#resenas {
  background: var(--navy-mid);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--navy-card);
  border: 1px solid rgba(245, 197, 24, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 5rem;
  color: rgba(245, 197, 24, 0.1);
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.review-avatar i {
  font-size: 2.8rem;
  color: var(--teal);
}
.review-name {
  font-weight: 700;
  color: var(--white);
}
.review-date {
  font-size: 0.8rem;
  color: var(--muted);
}
.review-stars {
  margin-bottom: 0.8rem;
}
.review-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

#contacto {
  background: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  color: var(--gold);
}
.contact-label {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.contact-value {
  color: var(--muted);
  font-size: 0.9rem;
}
.contact-form {
  background: var(--navy-card);
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 146, 176, 0.5);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}
.form-group.error input,
.form-group.error textarea {
  border-color: var(--danger);
}
.form-group.error .form-error {
  display: block;
}

#faq {
  background: var(--navy-mid);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--navy-card);
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(245, 197, 24, 0.35);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--white);
  user-select: none;
  gap: 1rem;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-answer p {
  color: var(--muted);
  padding-bottom: 1.3rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

#footer {
  background: #06091e;
  border-top: 1px solid rgba(245, 197, 24, 0.1);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-disclaimer {
  background: rgba(245, 197, 24, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.footer-disclaimer p {
  color: rgba(136, 146, 176, 0.7);
  font-size: 0.82rem;
  line-height: 1.8;
}
.footer-disclaimer strong {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(136, 146, 176, 0.5);
  font-size: 0.82rem;
}
.footer-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 79, 106, 0.1);
  border: 1px solid rgba(255, 79, 106, 0.25);
  color: #ff4f6a;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 900px;
  background: rgba(17, 24, 54, 0.98);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 8888;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.5s ease;
  flex-wrap: wrap;
}
@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.cookie-text {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
}
.cookie-text strong {
  color: var(--white);
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
#cookie-banner.hidden {
  display: none;
}

#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 20, 0.98);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.age-gate-box {
  background: var(--navy-card);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 24px;
  padding: 3rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-gold);
  animation: fadeInUp 0.5s ease;
}
.age-gate-icon {
  font-size: 4rem;
  margin-bottom: 1.2rem;
}
.age-gate-box h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.age-gate-box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.age-gate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.age-gate-no {
  background: transparent;
  border: 2px solid rgba(255, 79, 106, 0.4);
  color: #ff4f6a;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  font-size: 1rem;
}
.age-gate-no:hover {
  background: rgba(255, 79, 106, 0.1);
}

.page-hero {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  padding: 8rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.page-content {
  padding: 5rem 0;
  max-width: 860px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
}
.page-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--teal);
  margin: 1.5rem 0 0.7rem;
}
.page-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.9;
}
.page-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
}
.page-content ul li {
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.page-content ul li::marker {
  color: var(--gold);
}
.page-content a {
  color: var(--teal);
  text-decoration: underline;
}
.info-box {
  background: rgba(0, 212, 170, 0.07);
  border: 1px solid rgba(0, 212, 170, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.info-box p {
  color: var(--teal);
  margin: 0;
}
.warn-box {
  background: rgba(255, 79, 106, 0.07);
  border: 1px solid rgba(255, 79, 106, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.warn-box p {
  color: #ff4f6a;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 46, 0.98);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(245, 197, 24, 0.15);
    backdrop-filter: blur(12px);
  }
  .nav-links.open {
    display: flex;
  }
  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .casino-illustration {
    max-width: 340px;
  }

  .acerca-grid {
    grid-template-columns: 1fr;
  }
  .advantage-cards {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .age-gate-actions {
    flex-direction: column;
  }
  .age-gate-box {
    padding: 2rem 1.5rem;
  }

  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 16px 16px 0 0;
    max-width: 100%;
  }
  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  #cookie-banner.hidden {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .reel {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
  }
  .slot-header {
    font-size: 1.1rem;
  }
}
