/* Variables de color y estilos globales */
:root {
  --bg-dark: #121212;
  --bg-sidebar: #1a1a1a;
  --bg-card: #1e1e1e;
  --bg-card-hover: #282828;
  --gold-primary: #f3af19;
  --gold-hover: #ffd05b;
  --green-btn: #28a745;
  --green-btn-hover: #31ba53;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --border-color: #2e2e2e;
  --sidebar-width: 70px;
  --sidebar-width-expanded: 220px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Layout principal */
.layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Lateral */
.sidebar {
  width: var(--sidebar-width);
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  transition: width 0.3s ease;
}

.sidebar.expanded {
  width: var(--sidebar-width-expanded);
}

.sidebar-top {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.burger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--gold-primary);
  border-radius: 2px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
  background-color: rgba(243, 175, 25, 0.1);
  color: var(--gold-primary);
}

.nav-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  object-fit: contain;
}

.nav-label {
  margin-left: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}

.sidebar.expanded .nav-label {
  opacity: 1;
}

/* Contenedor principal ajustado al sidebar */
.main-container {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: margin-left 0.3s ease;
}

/* Header Superior */
.header {
  height: 60px;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 90;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #222222;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 6px 14px;
  width: 300px;
}

.search-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  opacity: 0.7;
}

.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  width: 100%;
  font-size: 0.85rem;
}

.header-right {
  display: flex;
  gap: 12px;
}

/* Botones de acción general */
.btn {
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: transform 0.1s, background-color 0.2s;
  text-transform: uppercase;
}

.btn:active {
  transform: scale(0.97);
}

.btn-login {
  background-color: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn-login:hover {
  background-color: rgba(243, 175, 25, 0.15);
}

.btn-register {
  background-color: var(--green-btn);
  color: #ffffff;
}

.btn-register:hover {
  background-color: var(--green-btn-hover);
}

/* Main Content */
.content {
  padding: 20px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Banner */
.hero-section {
  margin-bottom: 25px;
}

.hero-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
}

.hero-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
  padding: 30px;
}

.hero-text-content {
  max-width: 500px;
}

.badge-gold {
  background: linear-gradient(90deg, var(--gold-primary), #e2b038);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 900;
}

.hero-subtitle {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.btn-hero {
  background-color: var(--gold-primary);
  color: #000;
  padding: 12px 24px;
  font-size: 0.95rem;
}

.btn-hero:hover {
  background-color: var(--gold-hover);
}

/* Barra de categorías */
.category-bar {
  margin-bottom: 25px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.categories-scroll {
  display: flex;
  gap: 10px;
}

.category-btn {
  background-color: #1e1e1e;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

/* Galería de Juegos */
.game-section {
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-counter {
  background-color: #252525;
  color: #22c55e;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.game-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  border-color: #444;
}

.game-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #151515;
}

.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
}

.game-badge.exclusive {
  background-color: var(--gold-primary);
  color: #000;
}

.game-badge.top {
  background-color: #e11d48;
  color: #fff;
}

.game-badge.live {
  background-color: #2563eb;
  color: #fff;
}

.game-hover-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card:hover .game-hover-overlay {
  opacity: 1;
}

.btn-play {
  background-color: var(--green-btn);
  color: #fff;
  width: 80%;
  padding: 8px 0;
}

.btn-play:hover {
  background-color: var(--green-btn-hover);
}

.btn-demo {
  background-color: transparent;
  color: #fff;
  border: 1px solid #ffffff;
  width: 80%;
  padding: 6px 0;
  font-size: 0.75rem;
  text-align: center;
  text-decoration: none;
}

.game-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.game-title {
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-title a {
  color: white;
  text-decoration: none;
}

.game-provider {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Información SEO */
.info-section {
  margin-top: 50px;
  margin-bottom: 30px;
}

.info-box {
  background-color: #171717;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

.info-box h3 {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.info-box p {
  color: #a0a0a0;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #0d0d0d;
  border-top: 1px solid var(--border-color);
  padding: 40px 20px 20px 20px;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-heading {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

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

.providers-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 20px;
  text-align: center;
}

.regulatory-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.age-restriction {
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  font-weight: bold;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.regulatory-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
}

.copyright {
  font-size: 0.75rem;
  color: #555;
}

/* Modal de Cookies (Esquina Inferior Derecha) */
.cookie-modal {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background-color: #1a1a1a;
  border: 1px solid var(--gold-primary);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 18px;
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal.hidden {
  display: none;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cookie-icon {
  width: 22px;
  height: 22px;
}

.cookie-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.cookie-text {
  font-size: 0.78rem;
  color: #ccc;
  margin-bottom: 14px;
  line-height: 1.4;
}

.cookie-text a {
  color: var(--gold-primary);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  background-color: var(--gold-primary);
  color: #000;
  flex: 1;
  font-size: 0.75rem;
  padding: 8px 0;
}

.btn-cookie-accept:hover {
  background-color: var(--gold-hover);
}

.btn-cookie-settings {
  background-color: transparent;
  color: #aaa;
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  padding: 8px 12px;
}

.btn-cookie-settings:hover {
  color: #fff;
  border-color: #666;
}

/* Responsivo */
@media (max-width: 768px) {
  .search-bar {
    display: none;
  }
  
  .hero-title {
    font-size: 1.3rem;
  }
  
  .hero-subtitle {
    font-size: 0.8rem;
  }
  
  .cookie-modal {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 10px;
  }

  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}
/* Inner page styles */
/* Estilos específicos para la página interna del slot */
.slot-page-container {
  max-width: 1000px;
  margin: 0 auto;
}

.slot-page-title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slot-preview-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  background-color: #000;
  margin-bottom: 30px;
  aspect-ratio: 16 / 9;
}

.slot-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-preview-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 90%;
  max-width: 320px;
}

.btn-slot-demo {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--gold-primary);
  color: #000000;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(243, 175, 25, 0.3);
  border: none;
}

.btn-slot-demo:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-slot-real {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--green-btn);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  border: none;
}

.btn-slot-real:hover {
  background-color: var(--green-btn-hover);
  transform: translateY(-2px);
}

/* Sección de descripción y características */
.slot-description-section {
  margin-bottom: 40px;
}

.slot-info-card {
  background-color: #171717;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 28px;
}

.slot-info-card h2 {
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.slot-info-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 25px 0 15px 0;
  font-weight: 700;
}

.slot-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.slot-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.spec-item {
  background-color: #222222;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.spec-value {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .slot-page-title {
    font-size: 1.5rem;
  }
  .btn-slot-demo, .btn-slot-real {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}
.slot-preview-wrapper {
  position: relative;
  overflow: hidden;
}

.slot-demo-frame-wrap {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: #050505;
}

.slot-demo-frame {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #050505;
}

.slot-demo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 28px;
  line-height: 38px;
  cursor: pointer;
}

.slot-demo-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .slot-demo-frame-wrap {
    min-height: 420px;
  }

  .slot-demo-frame {
    height: 480px;
  }
}
.article-content {
  color: #f5f7fb;
  font-size: 16px;
  line-height: 1.75;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  color: #ffffff;
  line-height: 1.25;
  font-weight: 800;
  margin: 32px 0 16px;
}

.article-content h1 {
  font-size: 34px;
}

.article-content h2 {
  font-size: 28px;
}

.article-content h3 {
  font-size: 23px;
}

.article-content h4 {
  font-size: 20px;
}

.article-content h5 {
  font-size: 18px;
}

.article-content h6 {
  font-size: 16px;
  text-transform: uppercase;
}

.article-content p {
  margin: 0 0 18px;
  color: #d7deec;
}

.article-content a {
  color: #f6c84f;
  font-weight: 700;
  text-decoration: none;
}

.article-content a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.article-content strong,
.article-content b {
  color: #ffffff;
  font-weight: 800;
}

.article-content em,
.article-content i {
  color: #eef3ff;
}

.article-content ul,
.article-content ol {
  margin: 0 0 22px 22px;
  padding: 0;
  color: #d7deec;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin: 8px 0;
  padding-left: 4px;
}

.article-content li::marker {
  color: #f6c84f;
  font-weight: 800;
}

.article-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid #f6c84f;
  border-radius: 8px;
  background: rgba(246, 200, 79, 0.08);
  color: #ffffff;
}

.article-content blockquote p {
  margin-bottom: 0;
  color: #ffffff;
}

.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 10px;
}

.article-content figure {
  margin: 28px 0;
}

.article-content figcaption {
  margin-top: 10px;
  color: #9ea9bd;
  font-size: 14px;
  text-align: center;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.article-content th,
.article-content td {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d7deec;
  text-align: left;
  vertical-align: top;
}

.article-content th {
  color: #ffffff;
  font-weight: 800;
  background: rgba(246, 200, 79, 0.14);
}

.article-content tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.035);
}

.article-content code {
  padding: 3px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #f6c84f;
  font-size: 0.92em;
}

.article-content pre {
  overflow-x: auto;
  margin: 24px 0;
  padding: 18px;
  border-radius: 8px;
  background: #080b12;
  color: #f5f7fb;
}

.article-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.article-content hr {
  border: 0;
  height: 1px;
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.14);
}

.article-content .table-wrapper {
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .article-content {
    font-size: 15px;
    line-height: 1.65;
  }

  .article-content h1 {
    font-size: 28px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content h3 {
    font-size: 21px;
  }

  .article-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .article-content th,
  .article-content td {
    padding: 12px;
  }
}
.sports-bet-block {
  margin: 32px 0;
}

.sports-bet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sports-bet-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #171313;
  min-height: 220px;
}

.sports-bet-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.sports-bet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.sports-bet-btn {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 8px;
  background: #28a745;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sports-bet-btn:hover {
  background: #32c855;
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 700px) {
  .sports-bet-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sports-bet-card,
  .sports-bet-card img {
    min-height: 180px;
  }
}
.bonus-gallery-section {
  margin: 32px 0;
}

.bonus-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bonus-gallery-card {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #171313;
  border: 1px solid rgba(245, 176, 39, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.bonus-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}

.bonus-gallery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 176, 39, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 700px) {
  .bonus-gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.bonus-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}
@media (max-width: 600px) {
  .header-right .btn-login,
  .header-right .btn-register {
    display: none;
  }
}