/* ═══════════════════════════════════════════
   PANCECITO SOCIAL CASINO — MAIN STYLES
   Colombia Social Entertainment Platform
═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --primary: #FF6B35;
  --primary-dark: #E55A26;
  --secondary: #FFD700;
  --accent: #9B59B6;
  --accent2: #27AE60;
  --bg-dark: #0D0D1A;
  --bg-card: #1A1A2E;
  --bg-card2: #16213E;
  --text-primary: #FFFFFF;
  --text-secondary: #B8BEC4;
  --text-muted: #7A8590;
  --gradient-hero: linear-gradient(135deg, #0D0D1A 0%, #1A0533 50%, #0D1A33 100%);
  --gradient-primary: linear-gradient(135deg, #FF6B35, #FFD700);
  --gradient-accent: linear-gradient(135deg, #9B59B6, #3498DB);
  --gradient-card: linear-gradient(145deg, #1A1A2E, #16213E);
  --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; }
ul { list-style: none; }

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

/* ─── Disclaimer Bar ─── */
.disclaimer-bar {
  background: linear-gradient(90deg, #1a0533, #0d1a33, #1a0533);
  border-bottom: 2px solid var(--primary);
  padding: 8px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.disclaimer-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.disclaimer-badge {
  background: var(--primary);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Baloo 2', sans-serif;
}

.disclaimer-badge-18 {
  background: #E74C3C;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
  font-family: 'Righteous', cursive;
}

.disclaimer-text {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: 'Nunito', sans-serif;
}

/* ─── Header ─── */
.site-header {
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  padding: 14px 0;
  position: sticky;
  top: 40px;
  z-index: 998;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Righteous', cursive;
  font-size: 26px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav { display: flex; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  background: rgba(255, 107, 53, 0.15);
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── AGE POPUP ─── */
.age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 20px;
}

.age-popup-box {
  background: var(--gradient-card);
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255, 107, 53, 0.4);
  animation: popupIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIn {
  from { transform: scale(0.7) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.popup-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 12px;
  border-radius: 50%;
}

.age-badge-big {
  font-family: 'Righteous', cursive;
  font-size: 48px;
  background: linear-gradient(135deg, #E74C3C, #C0392B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 4px 0 12px;
  line-height: 1;
}

.age-popup-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.age-popup-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.age-popup-question {
  font-family: 'Baloo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.age-popup-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-age-yes {
  background: var(--gradient-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5); }

.btn-age-no {
  background: rgba(231, 76, 60, 0.15);
  color: #E74C3C;
  border: 2px solid #E74C3C;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-age-no:hover { background: rgba(231, 76, 60, 0.25); transform: translateY(-2px); }

.age-popup-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.age-popup-disclaimer a { color: var(--primary); text-decoration: underline; }

/* ─── Hero Section ─── */
.hero-section {
  position: relative;
  min-height: 88vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.no-money-badge {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(231, 76, 60, 0.1));
  border: 1px solid #E74C3C;
  color: #E74C3C;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
  letter-spacing: 0.5px;
}

.age-badge-hero {
  background: #E74C3C;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 900;
  font-family: 'Righteous', cursive;
}

.hero-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.text-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-disclaimer-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 auto;
}

/* Floating coins animation */
.floating-coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.coin {
  position: absolute;
  font-size: 2rem;
  animation: floatCoin linear infinite;
  opacity: 0.4;
}

.coin:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.coin:nth-child(2) { left: 25%; animation-duration: 10s; animation-delay: 2s; }
.coin:nth-child(3) { left: 50%; animation-duration: 7s; animation-delay: 1s; }
.coin:nth-child(4) { left: 70%; animation-duration: 9s; animation-delay: 3s; }
.coin:nth-child(5) { left: 88%; animation-duration: 11s; animation-delay: 1.5s; }

@keyframes floatCoin {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ─── Info Banner ─── */
.info-banner {
  background: var(--bg-card);
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.info-icon { font-size: 2.5rem; margin-bottom: 12px; }

.info-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.info-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

/* ─── Games Section ─── */
.games-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.game-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(255, 107, 53, 0.3);
}

.game-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.game-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--secondary);
  color: #1A1A2E;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 900;
  font-family: 'Baloo 2', sans-serif;
  z-index: 2;
}

.game-preview-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.game-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.game-card:hover .game-preview-img { transform: scale(1.05); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.btn-play-game {
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: var(--transition);
}

.btn-play-game:hover { transform: scale(1.1); }

.game-card-info {
  padding: 20px;
}

.game-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.game-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

.no-real-tag {
  background: rgba(231, 76, 60, 0.15);
  color: #E74C3C;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.btn-play-full {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 12px;
  border-radius: 12px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-play-full:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* ─── SLOT MACHINE SECTION ─── */
.slot-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0D0D1A 0%, #12001F 50%, #0D0D1A 100%);
  position: relative;
  overflow: hidden;
}

.slot-header {
  text-align: center;
  margin-bottom: 48px;
}

.slot-title {
  font-family: 'Righteous', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #FFD700, #FF6B35, #FF1744);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  text-shadow: none;
}

.slot-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════
   SLOT — STATS BAR (3 равных блока на всю ширину)
══════════════════════════════════════════════════ */
.slot-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  width: 100%;
}

.ssb-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
  transition: var(--transition);
}

.ssb-item:hover { border-color: rgba(255,255,255,0.2); }

.ssb-win {
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.06);
  box-shadow: 0 0 20px rgba(255,215,0,0.08);
}

.ssb-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.ssb-value {
  display: block;
  font-family: 'Righteous', cursive;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 5px;
}

.ssb-win-val { color: var(--secondary) !important; }

.ssb-note {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════
   SLOT — 3-COLUMN MAIN LAYOUT
══════════════════════════════════════════════════ */
.slot-main-layout {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  gap: 20px;
  align-items: start;
  width: 100%;
}

/* ══════════════════════════════════════════════════
   LEFT: Paytable panel
══════════════════════════════════════════════════ */
.paytable-panel {
  background: linear-gradient(160deg, #1A0A2E, #0D1833);
  border: 1px solid rgba(106,47,255,0.35);
  border-radius: 20px;
  padding: 20px 16px;
  position: sticky;
  top: 80px;
}

.paytable-panel .paytable-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.5px;
}

.paytable-panel .paytable-grid { display: flex; flex-direction: column; gap: 6px; }

.paytable-panel .pt-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.paytable-panel .pt-row:hover { background: rgba(255,255,255,0.06); }

.paytable-panel .pt-row.jackpot {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.5);
  animation: jackpotPulse 2s ease-in-out infinite;
}

@keyframes jackpotPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255,215,0,0.3); }
  50% { box-shadow: 0 0 12px rgba(255,215,0,0.4); }
}

.paytable-panel .pt-symbols { font-size: 14px; line-height: 1; }
.paytable-panel .pt-row.small .pt-symbols { font-size: 10px; color: var(--text-secondary); }

.paytable-panel .pt-mult {
  font-family: 'Righteous', cursive;
  font-size: 14px;
  color: var(--primary);
}

.paytable-panel .pt-row.jackpot .pt-mult { color: var(--secondary); font-size: 16px; }

.paytable-panel .pt-label { font-size: 9px; color: var(--text-muted); text-align: right; }

.paytable-panel .paytable-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   CENTER: Slot Machine
══════════════════════════════════════════════════ */
.slot-machine-center {
  background: linear-gradient(160deg, #1A0A2E 0%, #0D1833 50%, #1A0A2E 100%);
  border: 3px solid #4A1A7A;
  border-radius: 28px;
  padding: 24px 28px 20px;
  position: relative;
  box-shadow:
    0 0 80px rgba(100, 0, 200, 0.35),
    0 0 160px rgba(100, 0, 200, 0.1),
    inset 0 0 60px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* ─── Marquee / top lights ─── */
.machine-marquee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.marquee-lights {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-shrink: 0;
}

.ml {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 8px var(--secondary);
  animation: blinkLights 1.5s ease-in-out infinite;
}

.ml:nth-child(even) { animation-delay: 0.75s; }

@keyframes blinkLights {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.machine-title {
  font-family: 'Righteous', cursive;
  font-size: clamp(13px, 1.4vw, 17px);
  color: var(--secondary);
  letter-spacing: 2px;
  text-shadow: 0 0 12px var(--secondary);
  text-align: center;
  white-space: nowrap;
}

/* ─── Reels frame ─── */
.slot-machine-center .reels-container {
  margin: 0;
}

.slot-machine-center .reels-frame {
  background: #060010;
  border: 3px solid #6A2FFF;
  border-radius: 18px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.9), 0 0 30px rgba(106, 47, 255, 0.5);
  /* Высота = 3 ячейки по 88px + padding 2*10 */
  height: calc(3 * 88px + 20px);
}

/* Win-line */
.win-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  transform: translateY(-50%);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.win-line.active { opacity: 1; animation: winLineFlash 0.5s ease-in-out infinite; }

@keyframes winLineFlash {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--secondary); }
  50% { opacity: 0.3; }
}

/* Reel column */
.reel-col {
  background: rgba(0,0,0,0.7);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(106, 47, 255, 0.4);
  height: 100%;
}

/* Reel window mask */
.reel-window {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 9px;
}

/* Scrollable symbol strip */
.reel-track {
  display: flex;
  flex-direction: column;
  width: 100%;
  will-change: transform;
}

/* Single symbol cell — matches CELL_H in JS */
.reel-cell {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

/* Depth overlay top/bottom */
.reel-window::before,
.reel-window::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  z-index: 5;
  pointer-events: none;
}
.reel-window::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(6,0,16,0.9), transparent);
}
.reel-window::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(6,0,16,0.9), transparent);
}

/* ─── Last result row ─── */
.result-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
}

.result-sym {
  font-size: 2.4rem;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
  transition: var(--transition);
}

.result-sep {
  color: var(--text-muted);
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ─── Win overlay ─── */
.win-message {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  border-radius: 26px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  backdrop-filter: blur(6px);
}

.win-message.active {
  display: flex;
  animation: winMsgIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes winMsgIn {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.win-message-inner { text-align: center; padding: 30px 24px; }

.win-icon {
  font-size: 3.8rem;
  margin-bottom: 8px;
  animation: bounceIcon 0.6s ease-in-out;
  display: block;
}

@keyframes bounceIcon {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.35); }
}

.win-text {
  font-family: 'Righteous', cursive;
  font-size: 2rem;
  color: var(--secondary);
  text-shadow: 0 0 20px var(--secondary);
  margin-bottom: 6px;
}

.win-amount {
  font-family: 'Righteous', cursive;
  font-size: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.win-subtext { font-size: 12px; color: var(--text-muted); }

/* ─── Controls panel ─── */
.controls-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Bet row: [−] [center] [+] */
.bet-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 12px 16px;
}

.bet-center {
  flex: 1;
  text-align: center;
}

.bet-lbl {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.bet-val {
  display: block;
  font-family: 'Righteous', cursive;
  font-size: 28px;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 2px;
}

.bet-unit {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
}

.btn-bet-adj {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.15);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  cursor: pointer;
  line-height: 1;
}

.btn-bet-adj:hover { background: var(--primary); color: white; transform: scale(1.1); }
.btn-bet-adj:active { transform: scale(0.93); }
.btn-bet-adj:disabled { opacity: 0.35; cursor: not-allowed; }

/* Action row: [MAX] [GIRAR!] [placeholder] */
.action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* MAX BET button */
.btn-max {
  background: rgba(155, 89, 182, 0.2);
  color: #B980E8;
  border: 2px solid #9B59B6;
  padding: 12px 18px;
  border-radius: 14px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-max:hover { background: rgba(155, 89, 182, 0.45); transform: scale(1.04); }
.btn-max:active { transform: scale(0.96); }

/* GIRAR! main spin button */
.btn-spin-big {
  flex: 1;
  max-width: 260px;
  background: linear-gradient(135deg, #FF6B35 0%, #FF1744 50%, #FFD700 100%);
  background-size: 200% 200%;
  animation: spinBtnGlow 2.5s ease-in-out infinite;
  color: white;
  border: none;
  border-radius: 18px;
  padding: 16px 24px;
  font-family: 'Righteous', cursive;
  font-size: 22px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.55);
  cursor: pointer;
  white-space: nowrap;
}

@keyframes spinBtnGlow {
  0%, 100% { background-position: 0% 50%;   box-shadow: 0 6px 28px rgba(255,107,53,0.55); }
  50%       { background-position: 100% 50%; box-shadow: 0 8px 36px rgba(255,215,0,0.65); }
}

.btn-spin-big:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 10px 40px rgba(255,107,53,0.7); }
.btn-spin-big:active:not(:disabled) { transform: scale(0.97); }
.btn-spin-big:disabled { opacity: 0.45; cursor: not-allowed; animation: none; }

.spin-big-icon { font-size: 1.6rem; }
.spin-big-text { font-size: 22px; letter-spacing: 1px; }

.action-placeholder { flex-shrink: 0; width: 80px; }

/* ─── Machine disclaimer ─── */
.machine-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ══════════════════════════════════════════════════
   RIGHT: Info panel
══════════════════════════════════════════════════ */
.info-panel-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 80px;
}

.ipr-block {
  background: linear-gradient(160deg, #1A0A2E, #0D1833);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px 14px;
  transition: var(--transition);
}

.ipr-block:hover { border-color: rgba(255,255,255,0.2); }

.ipr-warn {
  border-color: rgba(255, 107, 53, 0.4);
  background: linear-gradient(160deg, #2A0A0A, #1A1010);
}

.ipr-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  display: block;
}

.ipr-block h4 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.ipr-block p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.ipr-link {
  font-size: 11px;
  color: var(--accent2);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.ipr-link:hover { text-decoration: underline; }

/* ─── Legacy aliases (kept for paytable used outside slot-machine-center) ─── */
.paytable {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px;
}

.paytable-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.paytable-grid { display: flex; flex-direction: column; gap: 8px; }

.pt-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.pt-symbols { font-size: 16px; }
.pt-row.small .pt-symbols { font-size: 11px; color: var(--text-secondary); }

.pt-mult {
  font-family: 'Righteous', cursive;
  font-size: 16px;
  color: var(--primary);
}

.pt-label { font-size: 11px; color: var(--text-muted); text-align: right; }

.paytable-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

/* Slot lights legacy */
.slot-top-deco {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.slot-lights { display: flex; gap: 6px; align-items: center; }

.sl-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 6px var(--secondary);
  animation: blinkLights 1.5s ease-in-out infinite;
}

.sl-light:nth-child(even) { animation-delay: 0.75s; }

.slot-machine-name {
  font-family: 'Righteous', cursive;
  font-size: 13px;
  color: var(--secondary);
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--secondary);
}

/* (old reels/controls/paytable CSS removed — see new rules above) */

/* RG Reminder */
.rg-reminder {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 32px;
  width: 100%;
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 8px;
}

.rg-reminder i { color: var(--accent2); flex-shrink: 0; }

.rg-link {
  margin-left: auto;
  color: var(--accent2);
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rg-link:hover { text-decoration: underline; }

/* ─── Responsible Gaming Section ─── */
.responsible-section {
  padding: 80px 0;
  background: var(--bg-card);
}

.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.rg-card {
  background: var(--gradient-card);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.rg-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent2);
  box-shadow: 0 8px 30px rgba(39, 174, 96, 0.2);
}

.rg-icon { font-size: 2.5rem; margin-bottom: 12px; }

.rg-card h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.rg-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.rg-cta { text-align: center; }

/* ─── Regulators Section ─── */
.regulators-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.regulators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  justify-items: center;
}

.regulator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
}

.regulator-card:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.regulator-logo {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  /* белый фон для SVG логотипов на тёмном сайте */
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.regulator-card:hover .regulator-logo {
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}

.regulator-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: 'Baloo 2', sans-serif;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #060612;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Footer RG Block */
.footer-rg-block {
  background: linear-gradient(90deg, rgba(231, 76, 60, 0.15), rgba(192, 57, 43, 0.1));
  border-bottom: 1px solid rgba(231, 76, 60, 0.3);
  padding: 24px 0;
}

.footer-rg-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-rg-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 260px;
}

.footer-18-badge {
  background: #E74C3C;
  color: white;
  padding: 8px 14px;
  border-radius: 12px;
  font-family: 'Righteous', cursive;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-rg-text strong {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #E74C3C;
  margin-bottom: 4px;
}

.footer-rg-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

.footer-rg-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.no-money-footer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #E74C3C;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
  letter-spacing: 0.5px;
}

/* Footer Main */
.footer-main { padding: 60px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand { max-width: 280px; }

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand-name {
  font-family: 'Righteous', cursive;
  font-size: 22px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-placeholder {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.social-placeholder:hover { border-color: var(--primary); color: var(--primary); }

.footer-col-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

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

.footer-regulators-mini {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reg-mini-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  background: #ffffff;
  border-radius: 6px;
  padding: 4px 7px;
  transition: var(--transition);
}

.reg-mini-logo:hover { opacity: 1; box-shadow: 0 2px 10px rgba(255,107,53,0.3); }

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.4);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom-inner {
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-legal-note {
  font-size: 12px;
  color: #4A5568;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* ─── Cookie Banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 26, 0.97);
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  padding: 16px 24px;
  z-index: 997;
  backdrop-filter: blur(10px);
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-content p { font-size: 14px; color: var(--text-secondary); }
.cookie-content a { color: var(--primary); text-decoration: underline; }

.btn-accept-cookies {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-accept-cookies:hover { transform: translateY(-2px); }

/* ─── Page Content (sub-pages) ─── */
.page-hero {
  background: linear-gradient(135deg, #1A0533 0%, #0D1833 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0 80px;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 12px;
}

.content-block h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 24px 0 8px;
}

.content-block p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.content-block ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-block li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.content-block a { color: var(--primary); text-decoration: underline; }

/* ─── FAQ Accordion ─── */
.faq-item {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Baloo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  gap: 12px;
  transition: var(--transition);
}

.faq-question:hover { background: rgba(255, 107, 53, 0.05); }

.faq-icon { color: var(--primary); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ─── Contact Form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: 'Baloo 2', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-info-value a { color: var(--primary); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — SLOT SECTION
══════════════════════════════════════════════════ */

/* ─── ≤ 1100px: сжимаем боковые панели ─── */
@media (max-width: 1100px) {
  .slot-main-layout {
    grid-template-columns: 190px 1fr 160px;
    gap: 14px;
  }
}

/* ─── ≤ 900px: убираем правую панель, уменьшаем левую ─── */
@media (max-width: 900px) {
  .slot-main-layout {
    grid-template-columns: 180px 1fr;
    gap: 14px;
  }
  .info-panel-right { display: none; }
  .paytable { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Барабаны чуть меньше */
  .slot-machine-center .reels-frame {
    height: calc(3 * 72px + 20px);
  }
  .reel-cell { height: 72px; font-size: 44px; }
}

/* ─── ≤ 768px: однколонка, паттейбл снизу ─── */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13,13,26,0.98);
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 990;
  }
  .main-nav.open .nav-list { flex-direction: column; gap: 4px; }
  .mobile-menu-toggle { display: flex; }

  /* Слот: 1 колонка, паттейбл под машиной */
  .slot-main-layout {
    grid-template-columns: 1fr;
  }
  .paytable-panel {
    order: 2;
    position: static;
  }
  .slot-machine-center {
    order: 1;
  }
  .info-panel-right { display: none; }

  /* Статы: 2 колонки */
  .slot-stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .slot-stats-bar .ssb-item:last-child {
    grid-column: span 2;
  }

  /* Барабаны */
  .slot-machine-center .reels-frame {
    height: calc(3 * 72px + 20px);
  }
  .reel-cell { height: 72px; font-size: 44px; }

  /* Кнопка спина на мобильном — full width */
  .btn-spin-big { max-width: 100%; font-size: 20px; }
  .action-placeholder { display: none; }
  .btn-max { font-size: 12px; padding: 10px 14px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-rg-right { align-items: flex-start; }
  .ssb-value { font-size: 22px; }
  .age-popup-box { padding: 28px 20px; }
  .age-popup-buttons { flex-direction: column; }
  .btn-age-yes, .btn-age-no { width: 100%; }
}

/* ─── ≤ 480px: компактный мобайл ─── */
@media (max-width: 480px) {
  .slot-stats-bar {
    grid-template-columns: 1fr;
  }
  .slot-stats-bar .ssb-item:last-child {
    grid-column: span 1;
  }

  /* Барабаны */
  .slot-machine-center .reels-frame {
    height: calc(3 * 60px + 16px);
    gap: 5px;
    padding: 8px;
  }
  .reel-cell { height: 60px; font-size: 36px; }
  .machine-title { font-size: 11px; letter-spacing: 1px; }
  .ml { width: 8px; height: 8px; }

  /* Контролы */
  .bet-val { font-size: 22px; }
  .btn-bet-adj { width: 38px; height: 38px; font-size: 19px; }
  .btn-spin-big { padding: 14px 20px; font-size: 18px; }
  .action-row { gap: 10px; }

  .hero-buttons { flex-direction: column; align-items: stretch; }
  .slot-machine-center { padding: 18px 16px 16px; }
  .ssb-value { font-size: 20px; }
}

