/* ===== MinesIgra.com - Premium Dark Casino Theme ===== */

:root {
  --bg-primary: #07091a;
  --bg-secondary: #0d1230;
  --bg-tertiary: #131a3d;
  --bg-card: rgba(20, 26, 60, 0.85);
  --bg-card-hover: rgba(28, 38, 80, 0.95);
  --neon-cyan: #00f0ff;
  --neon-gold: #ffc83d;
  --neon-red: #ff2e63;
  --neon-green: #38ff9c;
  --neon-purple: #a855f7;
  --text-primary: #f4f6ff;
  --text-secondary: #b9c0e0;
  --text-muted: #7a85b5;
  --border-glow: rgba(0, 240, 255, 0.25);
  --border-soft: rgba(255, 255, 255, 0.07);
  --gradient-gold: linear-gradient(135deg, #ffc83d 0%, #ff8a3d 100%);
  --gradient-cyan: linear-gradient(135deg, #00f0ff 0%, #6f7bff 100%);
  --gradient-red: linear-gradient(135deg, #ff2e63 0%, #ff7a3d 100%);
  --shadow-glow: 0 0 40px rgba(0, 240, 255, 0.15);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Animated Grid Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -2;
  animation: gridShift 40s linear infinite;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 240, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 200, 61, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 50% 95%, rgba(168, 85, 247, 0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating Particles */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-cyan);
  opacity: 0.5;
  animation: floatUp 18s linear infinite;
}

.particle:nth-child(2n) { background: var(--neon-gold); box-shadow: 0 0 12px var(--neon-gold); }
.particle:nth-child(3n) { background: var(--neon-purple); box-shadow: 0 0 12px var(--neon-purple); }
.particle:nth-child(5n) { background: var(--neon-green); box-shadow: 0 0 12px var(--neon-green); }

@keyframes floatUp {
  0% { transform: translateY(110vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(80px); opacity: 0; }
}

/* Layout helpers */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 22px; }

/* ===== Header / Navigation ===== */
.site-header {
  position: sticky; top: 0;
  background: rgba(7, 9, 26, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text-primary);
  font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.5px;
}

.brand-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-cyan);
  display: grid; place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.brand-logo::after {
  content: ''; position: absolute; inset: 2px;
  background: var(--bg-primary);
  border-radius: 10px;
  display: grid; place-items: center;
}

.brand-logo span {
  position: relative; z-index: 1;
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-name span { color: var(--neon-cyan); }

.main-nav ul {
  display: flex; gap: 6px; list-style: none;
}

.main-nav a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  position: relative;
}

.main-nav a:hover { color: var(--neon-cyan); background: rgba(0, 240, 255, 0.08); }
.main-nav a.active { color: var(--neon-cyan); background: rgba(0, 240, 255, 0.12); }
.main-nav a.active::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 2px; background: var(--neon-cyan);
  border-radius: 2px; box-shadow: 0 0 8px var(--neon-cyan);
}

.menu-toggle {
  display: none; background: transparent; border: none;
  color: var(--text-primary); font-size: 1.6rem; cursor: pointer;
  width: 44px; height: 44px;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; top: 70px; right: -100%;
    width: 280px; height: calc(100vh - 70px);
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-soft);
    transition: right 0.3s ease; padding: 24px;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 14px 18px; font-size: 1rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 999px;
  color: var(--neon-cyan);
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero h1 .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  position: relative; overflow: hidden;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #1a0a0a;
  box-shadow: 0 8px 30px rgba(255, 200, 61, 0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(255, 200, 61, 0.55); }

.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}

.btn-ghost:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
}

.hero-stat .num {
  font-size: 1.7rem; font-weight: 800;
  background: var(--gradient-cyan);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.hero-stat .label {
  font-size: 0.86rem; color: var(--text-muted);
}

/* ===== Mines Grid Animation ===== */
.mines-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin-left: auto;
}

.mines-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%; height: 100%;
}

.tile {
  background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid; place-items: center;
  font-size: 1.6rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.tile::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tile:hover { transform: translateY(-3px) scale(1.05); border-color: var(--neon-cyan); }
.tile:hover::before { opacity: 1; }

.tile.gem { animation: gemReveal 0.6s ease-out forwards; }
.tile.mine { animation: mineExplode 0.6s ease-out forwards; }

.tile .icon {
  opacity: 0;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px currentColor);
}

.tile.gem .icon, .tile.mine .icon { opacity: 1; transform: scale(1); }
.tile.gem .icon { color: var(--neon-green); }
.tile.mine .icon { color: var(--neon-red); }

@keyframes gemReveal {
  0% { transform: scale(1); background: var(--bg-tertiary); }
  50% { transform: scale(1.1); background: rgba(56, 255, 156, 0.2); box-shadow: 0 0 30px rgba(56, 255, 156, 0.5); }
  100% { transform: scale(1); background: rgba(56, 255, 156, 0.1); border-color: var(--neon-green); }
}

@keyframes mineExplode {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); background: rgba(255, 46, 99, 0.4); box-shadow: 0 0 50px rgba(255, 46, 99, 0.8); }
  100% { transform: scale(1); background: rgba(255, 46, 99, 0.15); border-color: var(--neon-red); }
}

.mines-visual::before {
  content: ''; position: absolute; inset: -30px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.18), transparent 70%);
  z-index: -1; animation: glow 4s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mines-visual { max-width: 380px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* ===== Sections ===== */
section {
  padding: 70px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-head .eyebrow {
  display: inline-block;
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-head h2 .accent {
  background: var(--gradient-cyan);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.section-head p {
  font-size: 1.05rem; color: var(--text-secondary);
}

article h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 36px 0 18px; font-weight: 800; letter-spacing: -0.5px; }
article h3 { font-size: 1.3rem; margin: 28px 0 14px; font-weight: 700; color: var(--neon-cyan); }
article h4 { font-size: 1.08rem; margin: 22px 0 10px; font-weight: 700; }
article p { margin-bottom: 14px; color: var(--text-secondary); }
article p strong { color: var(--text-primary); }
article ul, article ol { margin: 14px 0 22px 22px; color: var(--text-secondary); }
article ul li, article ol li { margin-bottom: 8px; }
article a { color: var(--neon-cyan); text-decoration: none; border-bottom: 1px dotted rgba(0,240,255,0.4); }
article a:hover { color: var(--neon-gold); border-bottom-color: var(--neon-gold); }

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 240, 255, 0.1);
  background: var(--bg-card-hover);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--neon-cyan);
  transition: all 0.3s;
}

.card:hover .card-icon {
  background: rgba(0, 240, 255, 0.2);
  transform: rotate(8deg) scale(1.05);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Provider Cards Variant */
.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all 0.35s ease;
}

.provider-card .badge {
  position: absolute; top: 18px; right: 18px;
  padding: 4px 12px;
  background: rgba(255, 200, 61, 0.15);
  color: var(--neon-gold);
  border: 1px solid rgba(255, 200, 61, 0.4);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.provider-card .badge.top { background: rgba(56, 255, 156, 0.15); color: var(--neon-green); border-color: rgba(56, 255, 156, 0.4); }
.provider-card .badge.new { background: rgba(168, 85, 247, 0.15); color: var(--neon-purple); border-color: rgba(168, 85, 247, 0.4); }

.provider-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

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

.provider-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gradient-cyan);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.2rem;
  color: var(--bg-primary);
}

.provider-card h3 { font-size: 1.25rem; font-weight: 800; }

.provider-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 14px 0; margin: 14px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.provider-stat .label {
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}

.provider-stat .value {
  font-size: 1.05rem; font-weight: 700; color: var(--neon-cyan);
}

.rating {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--neon-gold);
  font-size: 0.95rem;
}

/* ===== Tables ===== */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  margin: 26px 0;
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

table.compare th, table.compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

table.compare th {
  background: rgba(0, 240, 255, 0.06);
  color: var(--neon-cyan);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table.compare tbody tr { transition: background 0.2s; }
table.compare tbody tr:hover { background: rgba(0, 240, 255, 0.04); }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td { font-size: 0.95rem; color: var(--text-secondary); }
table.compare td strong { color: var(--text-primary); }
table.compare .yes { color: var(--neon-green); font-weight: 700; }
table.compare .no { color: var(--neon-red); font-weight: 700; }

/* ===== FAQ Accordion ===== */
.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(0, 240, 255, 0.25); }

.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: inherit;
}

.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--neon-cyan);
  display: grid; place-items: center;
  font-size: 1.4rem; font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-q .plus { transform: rotate(45deg); background: rgba(0, 240, 255, 0.2); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-a {
  max-height: 600px;
  padding: 0 24px 22px;
}

.faq-a p { color: var(--text-secondary); line-height: 1.7; }

/* ===== Pro Tips Callout ===== */
.callout {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-left: 4px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 26px 0;
}

.callout.gold {
  background: linear-gradient(135deg, rgba(255, 200, 61, 0.1), rgba(255, 138, 61, 0.05));
  border-color: rgba(255, 200, 61, 0.3);
  border-left-color: var(--neon-gold);
}

.callout.red {
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.08), rgba(255, 122, 61, 0.05));
  border-color: rgba(255, 46, 99, 0.3);
  border-left-color: var(--neon-red);
}

.callout-title {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--neon-cyan);
}

.callout.gold .callout-title { color: var(--neon-gold); }
.callout.red .callout-title { color: var(--neon-red); }

.callout p { color: var(--text-secondary); margin: 0; }

/* ===== Stats / Pros-Cons ===== */
.proscons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin: 24px 0;
}

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

.proscons-block {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}

.proscons-block.pros { border-left: 3px solid var(--neon-green); }
.proscons-block.cons { border-left: 3px solid var(--neon-red); }

.proscons-block h4 {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px; font-size: 1.05rem;
}

.proscons-block.pros h4 { color: var(--neon-green); }
.proscons-block.cons h4 { color: var(--neon-red); }

.proscons-block ul { list-style: none; margin: 0; }
.proscons-block li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-secondary); font-size: 0.95rem;
}

.proscons-block.pros li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--neon-green); font-weight: 800;
}
.proscons-block.cons li::before {
  content: '✕'; position: absolute; left: 0; top: 0;
  color: var(--neon-red); font-weight: 800;
}

/* ===== Steps / Tutorial ===== */
.steps { counter-reset: step; }
.steps .step {
  position: relative;
  padding: 22px 24px 22px 80px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  counter-increment: step;
}

.steps .step::before {
  content: counter(step);
  position: absolute; top: 22px; left: 22px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-cyan);
  color: var(--bg-primary);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.steps .step h4 { color: var(--text-primary); margin-bottom: 6px; }
.steps .step p { color: var(--text-secondary); margin: 0; font-size: 0.96rem; }

/* ===== Stat Bars ===== */
.stat-bars { margin: 24px 0; }
.stat-bar { margin-bottom: 18px; }
.stat-bar-head { display: flex; justify-content: space-between; margin-bottom: 6px; }
.stat-bar-head .label { color: var(--text-primary); font-weight: 600; font-size: 0.95rem; }
.stat-bar-head .val { color: var(--neon-cyan); font-weight: 700; font-size: 0.95rem; }
.stat-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px; overflow: hidden;
  border: 1px solid var(--border-soft);
}
.stat-bar-fill {
  height: 100%;
  background: var(--gradient-cyan);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-bar-fill.gold { background: var(--gradient-gold); box-shadow: 0 0 12px rgba(255, 200, 61, 0.6); }
.stat-bar-fill.green { background: linear-gradient(135deg, var(--neon-green), #2dd4bf); box-shadow: 0 0 12px rgba(56, 255, 156, 0.6); }

/* ===== CTA Section ===== */
.cta-section {
  background:
    linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(168, 85, 247, 0.06)),
    linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 30px 0;
}

.cta-section::before {
  content: '';
  position: absolute; inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 240, 255, 0.15), transparent 30%, transparent 70%, rgba(255, 200, 61, 0.15), transparent);
  animation: rotate 12s linear infinite;
  z-index: 0;
}

.cta-section > * { position: relative; z-index: 1; }

@keyframes rotate { to { transform: rotate(360deg); } }

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  font-weight: 800;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* ===== Image Frames ===== */
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  position: relative;
  box-shadow: var(--shadow-card);
}

.image-frame img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-frame:hover img { transform: scale(1.03); }

.image-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  z-index: 1; pointer-events: none;
}

.split-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 50px 0;
}

.split-image.reverse { grid-template-columns: 1fr 1fr; }
.split-image.reverse > .image-frame { order: 2; }

@media (max-width: 800px) {
  .split-image, .split-image.reverse { grid-template-columns: 1fr; gap: 24px; }
  .split-image.reverse > .image-frame { order: 0; }
}

/* ===== Internal Linking Block ===== */
.related-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.related-card {
  display: block;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.related-card .label {
  font-size: 0.78rem; color: var(--neon-cyan);
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 6px; display: block;
}

.related-card .title {
  font-size: 1.02rem; font-weight: 700;
  color: var(--text-primary);
  display: block; margin-bottom: 6px;
}

.related-card .arrow {
  display: inline-block;
  color: var(--neon-cyan);
  transition: transform 0.3s;
  font-size: 0.85rem;
}

.related-card:hover .arrow { transform: translateX(6px); }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-soft);
  padding: 60px 0 30px;
  margin-top: 60px;
}

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

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

.footer-grid h4 {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neon-cyan);
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--neon-cyan); }

.footer-grid p { color: var(--text-muted); font-size: 0.92rem; }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 16px;
}

.trust-badge {
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}

.footer-bottom p { font-size: 0.86rem; color: var(--text-muted); }

.responsible-notice {
  background: rgba(255, 46, 99, 0.06);
  border: 1px solid rgba(255, 46, 99, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 26px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-align: center;
}

.responsible-notice strong { color: var(--neon-red); }

/* Decorative Mines for Sections */
.mini-mines-bg {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Number Reveal Animation */
.number-anim {
  opacity: 0; transform: translateY(20px);
  animation: numFadeIn 0.8s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes numFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Tutorial Numbered Lists */
.tutorial-list {
  counter-reset: tut;
  list-style: none !important;
  margin-left: 0 !important;
}

.tutorial-list li {
  position: relative;
  padding: 14px 16px 14px 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  counter-increment: tut;
}

.tutorial-list li::before {
  content: counter(tut);
  position: absolute; left: 14px; top: 14px;
  width: 30px; height: 30px;
  background: rgba(0, 240, 255, 0.15);
  color: var(--neon-cyan);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  border: 1px solid rgba(0, 240, 255, 0.4);
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(255, 200, 61, 0.08), rgba(255, 138, 61, 0.04));
  border: 1px solid rgba(255, 200, 61, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 22px 0;
}

.highlight-box .label {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 200, 61, 0.2);
  color: var(--neon-gold);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.highlight-box p { color: var(--text-secondary); margin: 0; }

/* Casino List */
.casino-list { display: flex; flex-direction: column; gap: 16px; }
.casino-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px; align-items: center;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.casino-item:hover { transform: translateX(4px); border-color: rgba(0,240,255,0.25); }
.casino-rank {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.3rem;
}
.casino-info h4 { font-size: 1.08rem; margin-bottom: 4px; }
.casino-info p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.casino-bonus { color: var(--neon-gold); font-weight: 700; font-size: 0.95rem; }
@media (max-width: 600px) {
  .casino-item { grid-template-columns: 50px 1fr; }
  .casino-bonus { grid-column: 2; font-size: 0.9rem; }
}

/* Casino-item rich variant (casinos.html) */
.casino-item .casino-body {
  display: flex; flex-direction: column; gap: 8px;
  grid-column: 2 / -1;
}
.casino-item .casino-body h3 {
  font-size: 1.25rem; margin: 0; color: var(--text-primary);
  letter-spacing: -0.01em;
}
.casino-item .casino-body h3::after {
  content: ''; display: block; width: 36px; height: 2px;
  background: var(--gradient-gold); margin-top: 6px; opacity: 0.85;
}
.casino-meta {
  font-size: 0.82rem; color: var(--neon-cyan);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0 !important;
}
.casino-item .casino-body p:not(.casino-meta) {
  color: var(--text-secondary); font-size: 0.94rem;
  line-height: 1.6; margin: 0;
}
.casino-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 6px;
}
.casino-features .feature {
  display: inline-flex; align-items: center;
  padding: 5px 12px;
  background: rgba(0,240,255,0.06);
  border: 1px solid rgba(0,240,255,0.18);
  border-radius: 999px;
  font-size: 0.78rem; color: var(--text-primary);
  font-weight: 600; letter-spacing: 0.01em;
  transition: all 0.25s ease;
}
.casino-features .feature:hover {
  background: rgba(255,200,61,0.08);
  border-color: rgba(255,200,61,0.35);
  color: var(--neon-gold);
}
@media (max-width: 600px) {
  .casino-item .casino-body { grid-column: 2; }
  .casino-item .casino-body h3 { font-size: 1.1rem; }
  .casino-features .feature { font-size: 0.74rem; padding: 4px 10px; }
}

/* Provider Detail Block */
.provider-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 26px 0;
}

@media (max-width: 800px) { .provider-detail { grid-template-columns: 1fr; } }

.provider-detail h3 { color: var(--neon-cyan); margin-top: 0; }

.provider-stats-aside {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  align-self: start;
}

.provider-stats-aside h4 {
  font-size: 0.78rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}

.provider-stat-row {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-soft);
}
.provider-stat-row:last-child { border-bottom: none; }
.provider-stat-row .key { color: var(--text-secondary); font-size: 0.92rem; }
.provider-stat-row .v { color: var(--neon-cyan); font-weight: 700; font-size: 0.92rem; }

/* Cookie/Notice Banner placeholder unused */

/* Responsive Tweaks */
@media (max-width: 700px) {
  section { padding: 50px 0; }
  .hero { padding: 50px 0 40px; }
  .cta-section { padding: 36px 22px; }
  .hero-stats { font-size: 0.9rem; }
  .hero-stat .num { font-size: 1.4rem; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,240,255,0.3); }

/* Selection */
::selection { background: rgba(0, 240, 255, 0.3); color: var(--text-primary); }
