﻿/* =============================================
   AGUERO JUEGOS - LIGHT BLUE / SKY BLUE THEME
   aguerojuegos.net
   ============================================= */

:root {
  --bg-primary: #e8f4fd;
  --bg-secondary: #f0f8ff;
  --bg-card: #ffffff;
  --bg-card-hover: #dceefb;
  --bg-dark: #0d47a1;
  --bg-dark2: #1565c0;
  --accent: #0288d1;
  --accent-dark: #01579b;
  --text-primary: #0d1b2a;
  --text-secondary: #37474f;
  --text-light: #607d8b;
  --btn-login: #1b5e20;
  --btn-register: #b71c1c;
  --gold: #ff8f00;
  --border: #b3d9f5;
  --header-bg: #0d47a1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-dark);
}

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

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(13,71,161,0.4);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-aguero {
  color: #ffffff;
}

.logo-juegos {
  color: #4fc3f7;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #b3d9f5;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #ffffff;
}

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

.btn-login {
  background: var(--btn-login);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-login:hover {
  background: #2e7d32;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-register {
  background: var(--btn-register);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-register:hover {
  background: #c62828;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background-color: #0d47a1;
  background-image: url('../images/hero-bg.webp');
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  padding: 80px 20px 90px;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,71,161,0.92) 0%, rgba(13,71,161,0.70) 45%, rgba(13,71,161,0.15) 100%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4fc3f7;
  margin-bottom: 14px;
  display: block;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-bonus-label {
  font-size: 0.9rem;
  color: #b3e5fc;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hero-bonus {
  font-size: 2.3rem;
  font-weight: 900;
  color: #ffd54f;
  text-shadow: 0 2px 12px rgba(255,143,0,0.5);
  margin-bottom: 6px;
  line-height: 1.1;
}

.hero-subtext {
  font-size: 1rem;
  color: #e1f5fe;
  margin-bottom: 6px;
}

.hero-code {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff8f00 0%, #ffa000 100%);
  color: #ffffff;
  padding: 16px 38px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,143,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(255,143,0,0.65);
  color: #ffffff;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section {
  padding: 60px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

/* =============================================
   GAME CARDS GRID
   ============================================= */
.games-section {
  background: var(--bg-secondary);
  padding: 60px 20px;
}

/* game cards — unified CSS at bottom of file */

/* =============================================
   ARTICLE SECTION
   ============================================= */
.article-section {
  background: var(--bg-primary);
  padding: 60px 20px;
}

.article-container {
  max-width: 860px;
  margin: 0 auto;
}

.article-h1 {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--bg-dark);
  margin-bottom: 18px;
  line-height: 1.2;
}

.article-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Table of Contents */
.toc {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(2,136,209,0.07);
}

.toc-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toc ol {
  padding-left: 20px;
}

.toc li {
  margin-bottom: 7px;
}

.toc a {
  color: #01579b;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.toc a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Info Table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(2,136,209,0.1);
}

.info-table thead th {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 13px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-table tbody tr:nth-child(even) {
  background: #f0f8ff;
}

.info-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.info-table td {
  padding: 11px 18px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.info-table td:first-child {
  font-weight: 700;
  color: var(--text-primary);
  width: 45%;
}

/* Article headings */
.article-h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

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

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.step-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(2,136,209,0.07);
}

.step-number {
  width: 46px;
  height: 46px;
  background: var(--bg-dark);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 7px;
}

.step-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Payment table */
.pay-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(2,136,209,0.1);
}

.pay-table thead th {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.pay-table tbody tr:nth-child(even) {
  background: #f0f8ff;
}

.pay-table tbody tr:nth-child(odd) {
  background: #ffffff;
}

.pay-table td {
  padding: 11px 16px;
  font-size: 0.91rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

/* Bonus timeline */
.bonus-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0;
}

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(2,136,209,0.06);
}

.bonus-day {
  background: var(--bg-dark);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  min-width: 80px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-detail {
  flex: 1;
}

.bonus-detail strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.bonus-detail span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Stats bar */
.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: #4fc3f7;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: #b3e5fc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* Pros cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 22px 0;
}

.pros, .cons {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 20px 22px;
  border: 1.5px solid var(--border);
}

.pros {
  border-top: 4px solid #2e7d32;
}

.cons {
  border-top: 4px solid #c62828;
}

.pros-title {
  font-size: 1rem;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 12px;
}

.cons-title {
  font-size: 1rem;
  font-weight: 800;
  color: #c62828;
  margin-bottom: 12px;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros ul li, .cons ul li {
  font-size: 0.91rem;
  color: var(--text-secondary);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.pros ul li:last-child, .cons ul li:last-child {
  border-bottom: none;
}

.pros ul li::before {
  content: '✅ ';
}

.cons ul li::before {
  content: '❌ ';
}

/* Support cards */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0;
}

.support-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(2,136,209,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2,136,209,0.15);
}

.support-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.support-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 6px;
}

.support-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  margin: 20px 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--bg-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.faq-answer.open {
  display: block;
}

/* Comments */
.comments-section {
  margin-top: 40px;
}

.comment-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.comment {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(2,136,209,0.06);
}

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

.comment-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}

.comment-meta {
  flex: 1;
}

.comment-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.comment-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.comment-stars {
  color: var(--gold);
  font-size: 1.05rem;
}

.comment-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-dark);
  color: #b3d9f5;
  padding: 48px 20px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand .logo {
  margin-bottom: 14px;
  display: inline-flex;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #90caf9;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  margin-bottom: 14px;
}

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

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

.footer-links a {
  color: #90caf9;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #4fc3f7;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copyright {
  font-size: 0.83rem;
  color: #78909c;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: #607d8b;
  max-width: 680px;
  line-height: 1.55;
}

.footer-18 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  background: var(--btn-register);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* =============================================
   SLOT PAGE STYLES
   ============================================= */
.slot-hero {
  padding: 60px 20px 50px;
  text-align: center;
}

.slot-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.slot-thumb-big {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px rgba(13,71,161,0.25);
}

.slot-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--bg-dark);
  margin-bottom: 8px;
}

.slot-provider-badge {
  display: inline-block;
  background: var(--bg-dark);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.slot-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}

.slot-meta-item {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.slot-meta-item strong {
  color: var(--bg-dark);
}

.slot-article {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.slot-article h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin: 34px 0 12px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--border);
}

.slot-article p {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.slot-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.slot-feature {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
}

.slot-feature .feat-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.slot-feature .feat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.slot-feature .feat-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-top: 2px;
}

.slot-cta-box {
  background: linear-gradient(135deg, #0d47a1 0%, #0288d1 100%);
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  margin: 36px 0;
  box-shadow: 0 6px 24px rgba(2,136,209,0.25);
}

.slot-cta-box .cta-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.slot-cta-box .cta-bonus {
  font-size: 1.1rem;
  color: #ffd54f;
  font-weight: 700;
  margin-bottom: 20px;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: var(--bg-secondary);
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.84rem;
  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb-inner a:hover {
  text-decoration: underline;
}

/* =============================================
   BONUS BANNER
   ============================================= */
.bonus-banner {
  background: linear-gradient(90deg, #0d47a1 0%, #0288d1 100%);
  padding: 18px 20px;
  text-align: center;
}

.bonus-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-text {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.banner-bonus {
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffd54f;
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #0a3780;
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: #e3f2fd;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav-btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.mobile-nav-btns a {
  flex: 1;
  text-align: center;
  border-bottom: none;
  border-radius: 6px;
  padding: 11px 10px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .header-btns {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-bonus {
    font-size: 1.8rem;
  }
}

@media (max-width: 700px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .support-cards {
    grid-template-columns: 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-bonus {
    font-size: 1.5rem;
  }
  .stats-bar {
    flex-direction: column;
    gap: 18px;
  }
  .slot-title {
    font-size: 1.8rem;
  }
  .article-h1 {
    font-size: 1.6rem;
  }
  .bonus-banner-inner {
    flex-direction: column;
    gap: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  .slot-meta-grid {
    flex-direction: column;
  }
  .slot-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- ARTICLE IMAGES --- */
.article-img-wrap {
  margin: 28px 0;
  text-align: center;
}
.article-img-wrap img {
  width: 100%;
  max-width: 720px;
  height: auto;
  min-height: 220px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: inline-block;
  object-fit: cover;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.9rem;
  vertical-align: middle;
  line-height: 220px;
}
.article-img-wrap figcaption {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

/* === GAME CARDS (unified format = site 1) === */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.game-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30,144,255,0.2);
  border-color: var(--accent);
}
.game-thumb {
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-icon {
  font-size: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
  z-index: 1;
}
.game-card:hover .game-icon { transform: scale(1.15); }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.game-overlay span {
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}
.badge-popular { background: var(--accent); color: #fff; }
.badge-nuevo   { background: #28a745; color: #fff; }
.badge-hot     { background: #dc3545; color: #fff; }
.badge-jackpot { background: #f57c00; color: #000; }
.badge-top     { background: #9b59b6; color: #fff; }
.badge-clasico { background: #6c757d; color: #fff; }
.game-name {
  padding: 10px 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1024px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .games-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- AUTHOR BLOCK --- */
.author-section {
  background: var(--bg-secondary);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  max-width: 860px;
}
.author-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  background: var(--bg-primary);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.author-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.author-role {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.author-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.author-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-social-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.author-social-link:hover {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .author-socials { justify-content: center; }
}

/* --- RELATED SLOTS --- */
.related-slots { padding: 40px 0; background: var(--bg-secondary); }
.related-slots h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: var(--text-primary); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .related-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,22,40,0.97);
  border-top: 2px solid var(--accent);
  padding: 14px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 99999;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}
.cookie-banner.visible { display: flex; }
.cookie-text {
  font-size: 0.85rem;
  color: #ccc;
  flex: 1;
  min-width: 200px;
}
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btn-accept {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.85; }
.cookie-btn-decline {
  background: transparent;
  color: #888;
  border: 1px solid #555;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; }
}

/* --- SLOT CARD IMAGES --- */
.game-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 0;
  display: block;
}
.game-thumb .game-icon    { position: relative; z-index: 1; }
.game-thumb .game-overlay { z-index: 3; }
.game-thumb .game-badge   { z-index: 4; }

/* --- SLOT PAGE IMAGES --- */
.slot-main-img {
  margin: 20px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  max-width: 720px;
}
.slot-main-img img {
  width: 100%;
  height: auto;
  min-height: 200px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bg-card);
}
.slot-thumb-big {
  position: relative;
  overflow: hidden;
}
.slot-thumb-big img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.slot-thumb-big > :not(img) { position: relative; z-index: 1; }

/* --- SLOT MAIN IMG FIX --- */
.slot-main-img {
  margin: 0 0 24px 24px;
  float: right;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  clear: right;
}
.slot-main-img img {
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  background: var(--bg-card);
}
@media (max-width: 600px) {
  .slot-main-img {
    float: none;
    margin: 0 auto 20px;
    width: 160px;
  }
}

/* --- SLOT THUMB BIG IMAGE FIX --- */
.slot-thumb-big img {
  position: static !important;
  width: auto !important;
  height: 100% !important;
  max-height: 280px;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}
.slot-thumb-big {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 16px;
}

/* --- HIDE EMOJI WHEN IMAGE PRESENT IN SLOT THUMB BIG --- */
.slot-thumb-big { font-size: 0; color: transparent; }
.slot-thumb-big img {
  font-size: 1rem;
  color: inherit;
  display: block;
  margin: 0 auto;
  max-height: 280px;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* --- CONTAINER (used by subpages) --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- SLOT TABLE STYLED --- */
.slot-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
  font-size: 0.9rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(2,136,209,0.1);
}
.slot-table th {
  background: #0288d1;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}
.slot-table tr:nth-child(even) { background: #f0f8ff; }
.slot-table tr:nth-child(odd)  { background: #ffffff; }
.slot-table tr:hover { background: #dceefb; }
.slot-table td { padding: 12px 16px; color: #0d1b2a; border-bottom: 1px solid #b3d9f5; }
.slot-table td:first-child { font-weight: 700; color: #01579b; width: 45%; }

/* --- PERFORMANCE & CONTRAST FIXES --- */
.btn-cta {
  animation: cta-pulse 2s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,143,0,0.5); }
  50%       { box-shadow: 0 8px 32px rgba(255,143,0,0.8); }
}
figcaption { color: #37474f !important; }
.toc a { color: #01579b; }
