﻿/* =============================================
   AGUERO JUEGOS — MAIN STYLESHEET
   Dark Blue Casino Theme
   ============================================= */

/* --- CSS VARIABLES --- */
:root {
  --bg-primary: #0a1628;
  --bg-secondary: #0d1f3c;
  --bg-card: #162040;
  --accent: #1e90ff;
  --text-primary: #ffffff;
  --text-secondary: #8aa8c8;
  --btn-login: #28a745;
  --btn-register: #dc3545;
  --gold: #ffd700;
  --border: #1e3a5f;
  --border-radius: 10px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 32px rgba(30,144,255,0.25);
}

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

html {
  scroll-behavior: smooth;
}

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

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

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5 {
  line-height: 1.25;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-login {
  background: var(--btn-login);
  color: #fff;
}

.btn-login:hover {
  background: #218838;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(40,167,69,0.4);
}

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

.btn-register:hover {
  background: #c82333;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(220,53,69,0.4);
}

.btn-hero {
  background: linear-gradient(135deg, var(--accent), #0060cc);
  color: #fff;
  font-size: 18px;
  padding: 16px 48px;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 6px 30px rgba(30,144,255,0.5);
  animation: pulse-btn 2.5s infinite;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #0060cc, var(--accent));
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(30,144,255,0.65);
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 6px 30px rgba(30,144,255,0.5); }
  50% { box-shadow: 0 6px 45px rgba(30,144,255,0.8), 0 0 0 8px rgba(30,144,255,0.1); }
}

.btn-loadmore {
  display: block;
  margin: 36px auto 0;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-loadmore:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,144,255,0.35);
}

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(8px);
}

.header .container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-white {
  color: #ffffff;
}

.logo-blue {
  color: var(--accent);
}

.logo:hover .logo-white,
.logo:hover .logo-blue {
  text-shadow: 0 0 12px rgba(30,144,255,0.7);
}

.header nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex: 1;
}

.header nav a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 5px;
  transition: var(--transition);
}

.header nav a:hover {
  color: var(--text-primary);
  background: rgba(30,144,255,0.12);
}

.header-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 520px;
  background-color: #0a1628;
  background-image: url('../images/hero-bg.webp');
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.75) 45%, rgba(10,22,40,0.15) 100%);
  pointer-events: none;
}

/* Animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Generate individual particles using pseudo-elements on spans */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(30,144,255,0.6);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0;
  }
}

.particle:nth-child(1)  { left: 5%;  width: 4px;  height: 4px;  animation-duration: 8s;  animation-delay: 0s;   background: rgba(30,144,255,0.7); }
.particle:nth-child(2)  { left: 12%; width: 6px;  height: 6px;  animation-duration: 11s; animation-delay: 1s;   background: rgba(255,215,0,0.5); }
.particle:nth-child(3)  { left: 20%; width: 3px;  height: 3px;  animation-duration: 9s;  animation-delay: 2s;   background: rgba(30,144,255,0.6); }
.particle:nth-child(4)  { left: 30%; width: 5px;  height: 5px;  animation-duration: 12s; animation-delay: 0.5s; background: rgba(255,215,0,0.4); }
.particle:nth-child(5)  { left: 40%; width: 4px;  height: 4px;  animation-duration: 7s;  animation-delay: 3s;   background: rgba(30,144,255,0.8); }
.particle:nth-child(6)  { left: 50%; width: 7px;  height: 7px;  animation-duration: 14s; animation-delay: 1.5s; background: rgba(255,215,0,0.35); }
.particle:nth-child(7)  { left: 60%; width: 3px;  height: 3px;  animation-duration: 9s;  animation-delay: 4s;   background: rgba(30,144,255,0.65); }
.particle:nth-child(8)  { left: 70%; width: 5px;  height: 5px;  animation-duration: 10s; animation-delay: 2.5s; background: rgba(255,215,0,0.5); }
.particle:nth-child(9)  { left: 80%; width: 4px;  height: 4px;  animation-duration: 8s;  animation-delay: 0.8s; background: rgba(30,144,255,0.7); }
.particle:nth-child(10) { left: 88%; width: 6px;  height: 6px;  animation-duration: 13s; animation-delay: 3.5s; background: rgba(255,215,0,0.45); }
.particle:nth-child(11) { left: 95%; width: 3px;  height: 3px;  animation-duration: 7s;  animation-delay: 1.2s; background: rgba(30,144,255,0.6); }
.particle:nth-child(12) { left: 25%; width: 5px;  height: 5px;  animation-duration: 11s; animation-delay: 5s;   background: rgba(30,144,255,0.5); }
.particle:nth-child(13) { left: 55%; width: 4px;  height: 4px;  animation-duration: 10s; animation-delay: 6s;   background: rgba(255,215,0,0.4); }
.particle:nth-child(14) { left: 75%; width: 3px;  height: 3px;  animation-duration: 9s;  animation-delay: 2s;   background: rgba(30,144,255,0.75); }
.particle:nth-child(15) { left: 45%; width: 6px;  height: 6px;  animation-duration: 15s; animation-delay: 0s;   background: rgba(255,215,0,0.3); }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
}

.hero-content .container {
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-shadow: 0 0 40px rgba(30,144,255,0.4);
  margin-bottom: 24px;
  line-height: 1;
}

.hero-bonus {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.bonus-pct {
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,215,0,0.5);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0%, 100% { text-shadow: 0 0 30px rgba(255,215,0,0.5); }
  50% { text-shadow: 0 0 50px rgba(255,215,0,0.9), 0 0 80px rgba(255,215,0,0.4); }
}

.bonus-plus {
  font-size: 40px;
  font-weight: 900;
  color: var(--text-secondary);
}

.bonus-free {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.hero-sub2 {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

/* --- SECTION TITLE --- */
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
}

/* --- GAMES SECTION --- */
.games-section {
  padding: 60px 0;
  background: var(--bg-primary);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* --- GAME CARD --- */
.game-card {
  display: block;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-hover);
  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;
  box-shadow: 0 4px 15px rgba(30,144,255,0.4);
}

.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: var(--gold); 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;
}

/* --- ARTICLE / CONTENT SECTION --- */
.article-section {
  background: var(--bg-secondary);
  padding: 60px 0;
}

.article-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 48px;
}

.article-inner h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.article-inner h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.article-inner h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin: 24px 0 10px;
}

.article-inner p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.article-inner ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.article-inner ul li {
  color: var(--text-secondary);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
}

.article-inner ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 10px;
  top: 9px;
}

.article-inner ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-inner ol li {
  color: var(--text-secondary);
  padding: 5px 0;
  line-height: 1.65;
}

.article-inner ol li::marker {
  color: var(--accent);
  font-weight: 700;
}

/* --- TABLE OF CONTENTS --- */
.toc {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 20px 28px;
  margin: 24px 0 32px;
}

.toc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.toc ol li {
  padding: 4px 0;
}

.toc ol li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition);
}

.toc ol li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* --- INFO TABLE --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.info-table tr:nth-child(odd) {
  background: var(--bg-secondary);
}

.info-table tr:nth-child(even) {
  background: var(--bg-primary);
}

.info-table tr:hover {
  background: rgba(30,144,255,0.07);
}

.info-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 45%;
  border-right: 1px solid var(--border);
}

.info-table td {
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

/* --- DEPOSIT TABLE --- */
.deposit-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.deposit-table thead tr {
  background: var(--accent);
}

.deposit-table thead th {
  padding: 12px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.deposit-table tbody tr:nth-child(odd) {
  background: var(--bg-secondary);
}

.deposit-table tbody tr:nth-child(even) {
  background: var(--bg-primary);
}

.deposit-table tbody tr:hover {
  background: rgba(30,144,255,0.1);
}

.deposit-table tbody td {
  padding: 11px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

.deposit-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- SUPPORT TABLE --- */
.support-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.support-table thead tr {
  background: var(--bg-secondary);
}

.support-table thead th {
  padding: 12px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

.support-table tbody tr:nth-child(odd) {
  background: rgba(22,32,64,0.7);
}

.support-table tbody tr:nth-child(even) {
  background: var(--bg-primary);
}

.support-table tbody tr:hover {
  background: rgba(30,144,255,0.08);
}

.support-table tbody td {
  padding: 11px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

.support-table tbody td:first-child {
  color: var(--text-primary);
  font-weight: 600;
}

/* --- REGISTRATION SECTION --- */
.reg-section {
  background: var(--bg-secondary);
  padding: 60px 0;
}

/* --- REGISTRATION FORM BOX --- */
.reg-form-box {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(30,144,255,0.1) 100%);
  border: 2px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 24px 0;
  text-align: center;
}

.reg-form-box .reg-bonus-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.reg-form-box .reg-bonus-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.reg-form-box .reg-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
  display: block;
  margin-bottom: 4px;
  margin-top: 12px;
}

.reg-form-box input[type="email"],
.reg-form-box input[type="password"],
.reg-form-box input[type="text"] {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.reg-form-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.15);
}

.reg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

/* --- GAME CATEGORIES ROW --- */
.game-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.game-cat {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}

.game-cat:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* --- BONUS LIST --- */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 24px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  transition: var(--transition);
}

.bonus-item:hover {
  border-color: var(--accent);
  background: rgba(30,144,255,0.06);
}

.bonus-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bonus-text {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
}

/* --- PROS & CONS BOX --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 24px;
}

.pros-box, .cons-box {
  border-radius: var(--border-radius);
  padding: 22px;
}

.pros-box {
  background: rgba(40,167,69,0.08);
  border: 1px solid rgba(40,167,69,0.3);
}

.cons-box {
  background: rgba(220,53,69,0.08);
  border: 1px solid rgba(220,53,69,0.3);
}

.pros-box h4, .cons-box h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pros-box h4 { color: #28a745; }
.cons-box h4 { color: #dc3545; }

.pros-box li, .cons-box li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.55;
}

.pros-box li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.3;
}

.cons-box li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.3;
}

/* --- STATS BAR --- */
.stats-bar {
  display: flex;
  gap: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: 24px 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: rgba(30,144,255,0.1);
  color: var(--text-primary);
}

/* --- FAQ ACCORDION --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  transition: var(--transition);
  gap: 12px;
}

.faq-question:hover {
  color: var(--accent);
  background: rgba(30,144,255,0.05);
}

.faq-item.active .faq-question {
  color: var(--accent);
  background: rgba(30,144,255,0.07);
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* --- COMMENTS --- */
.comments-section {
  background: var(--bg-primary);
  padding: 48px 0;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 36px;
}

.comment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
}

.comment-card:hover {
  border-color: rgba(30,144,255,0.4);
}

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

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

.comment-meta {
  flex: 1;
}

.comment-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.comment-date {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

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

.comment-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* --- COMMENT FORM --- */
.comment-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 28px;
}

.comment-form h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.form-group label span { color: var(--btn-register); }

.form-group input,
.form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,144,255,0.12);
}

.form-group textarea {
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 13px;
  color: var(--text-secondary);
}

.btn-comment {
  background: var(--btn-login);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-comment:hover {
  background: #218838;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(40,167,69,0.35);
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.payment-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.payment-badge:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

.age-badge {
  background: var(--btn-register);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-legal {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-legal p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 12px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(138,168,200,0.5);
  margin: 0;
}

/* --- SLOT PAGE STYLES --- */
.slot-title-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.slot-content {
  padding: 48px 0;
  background: var(--bg-secondary);
}

.slot-content h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.slot-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.slot-content h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.slot-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 28px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.slot-table tr:nth-child(odd) {
  background: var(--bg-primary);
}

.slot-table tr:nth-child(even) {
  background: var(--bg-secondary);
}

.slot-table tr:hover {
  background: rgba(30,144,255,0.07);
}

.slot-table th {
  padding: 12px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  width: 42%;
  border-right: 1px solid var(--border);
  background: rgba(22,32,64,0.5);
}

.slot-table td {
  padding: 12px 18px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.slot-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 16px 22px;
  margin: 24px 0;
}

.slot-rating .stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 3px;
}

.slot-rating .rating-text {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
}

/* =============================================
   RESPONSIVE — 1024px
   ============================================= */
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 44px;
  }

  .bonus-pct {
    font-size: 58px;
  }

  .bonus-free {
    font-size: 26px;
  }

  .article-inner {
    padding: 32px;
  }

  .footer-cols {
    gap: 24px;
  }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header nav {
    display: none;
  }

  .header-btns .btn-login {
    display: none;
  }

  .hero-title {
    font-size: 34px;
  }

  .bonus-pct {
    font-size: 48px;
  }

  .bonus-free {
    font-size: 20px;
  }

  .hero-sub2 {
    font-size: 14px;
  }

  .btn-hero {
    font-size: 15px;
    padding: 13px 32px;
  }

  .article-inner {
    padding: 22px 18px;
  }

  .article-inner h1 {
    font-size: 24px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--border);
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-payments {
    gap: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }

  .reg-form-row {
    grid-template-columns: 1fr;
  }

  .slot-content h1 {
    font-size: 22px;
  }

  .comment-header {
    flex-wrap: wrap;
  }
}

/* =============================================
   MOBILE — 480px
   ============================================= */
@media (max-width: 480px) {
  .header .logo {
    font-size: 20px;
  }

  .hero-title {
    font-size: 28px;
  }

  .bonus-pct {
    font-size: 40px;
  }

  .bonus-free {
    font-size: 17px;
  }

  .game-cats {
    gap: 6px;
  }

  .game-cat {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* --- 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-secondary);
  margin-top: 8px;
  font-style: italic;
}

/* --- 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; }
}

/* --- BREADCRUMB --- */
.breadcrumb {
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.breadcrumb-list li { color: var(--text-secondary); }
.breadcrumb-list li a { color: var(--accent); text-decoration: none; }
.breadcrumb-list li a:hover { color: var(--gold); }
.breadcrumb-list li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* --- 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;
  }
}
