/* ═══════════════════════════════════════════════════════════
   SocialHoursein.pro — Indian Night Market Aesthetic
   Deep indigo + electric pink + amber gold
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Kalam:wght@300;400;700&display=swap');

:root {
  --pink:    #FF2D8B;
  --pink2:   #FF6BB5;
  --amber:   #FFB800;
  --amber2:  #FFD060;
  --indigo:  #0E0A2E;
  --ink:     #130F3A;
  --card:    #1A1548;
  --card2:   #221D5A;
  --border:  rgba(255,45,139,0.15);
  --border2: rgba(255,184,0,0.15);
  --text:    #F0ECF8;
  --muted:   #8A84B0;
  --green:   #00E096;
  --red:     #FF4B6E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--indigo);
  color: var(--text);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── GRAIN TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity: .5;
}

/* ── AMBIENT GLOW ── */
.ambient {
  position: fixed; pointer-events: none; z-index: 0;
  border-radius: 50%; filter: blur(120px); opacity: .18;
}
.ambient-1 { width: 600px; height: 600px; background: var(--pink); top: -200px; left: -150px; }
.ambient-2 { width: 500px; height: 500px; background: var(--amber); bottom: -100px; right: -100px; }
.ambient-3 { width: 400px; height: 400px; background: #4B2AFF; top: 40%; left: 50%; transform: translateX(-50%); }

/* ══════════════════════════════════════
   AGE GATE
══════════════════════════════════════ */
#age-gate {
  position: fixed; inset: 0;
  background: rgba(14,10,46,0.97);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
}
.ag-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 52px 44px;
  max-width: 460px; width: 92%;
  text-align: center;
  position: relative; overflow: hidden;
}
.ag-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--amber), var(--pink));
}
.ag-badge {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Kalam', cursive; font-size: 30px; font-weight: 700;
  color: #fff; margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(255,45,139,0.4);
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 40px rgba(255,45,139,0.4); }
  50%       { box-shadow: 0 0 60px rgba(255,45,139,0.7); }
}
.ag-card h2 {
  font-size: 28px; font-weight: 800; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--pink2), var(--amber2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ag-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 30px; }
.ag-btns { display: flex; gap: 12px; }
.ag-yes, .ag-no {
  flex: 1; padding: 15px; border-radius: 12px; border: none;
  font-family: 'Baloo 2', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.ag-yes {
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,45,139,0.3);
}
.ag-yes:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,45,139,0.45); }
.ag-no {
  background: transparent; border: 1px solid var(--border);
  color: var(--text);
}
.ag-no:hover { border-color: var(--pink); }
.ag-note { margin-top: 20px; font-size: 11px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   RG BANNER
══════════════════════════════════════ */
#rg-bar {
  background: linear-gradient(90deg, #1a0010, #100020, #1a0010);
  border-bottom: 1px solid rgba(255,75,110,0.3);
  padding: 9px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-size: 12.5px; color: #ffaabb;
  text-align: center; flex-wrap: wrap;
  position: sticky; top: 0; z-index: 500;
}
#rg-bar strong { color: var(--red); }
#rg-bar a { color: #ffaabb; text-decoration: underline; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 52px;
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 10;
}
.logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
}
.logo-orb {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--pink), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(255,45,139,0.35);
}
.logo-name {
  font-family: 'Kalam', cursive;
  font-size: 22px; font-weight: 700;
  background: linear-gradient(135deg, var(--pink2), var(--amber2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-tld { -webkit-text-fill-color: var(--muted); font-size: 14px; }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 600;
  padding: 8px 18px; border-radius: 10px;
  transition: all .2s;
}
nav a:hover, nav a.active {
  color: var(--text); background: rgba(255,255,255,0.06);
}
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff !important; font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(255,45,139,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,45,139,0.4);
  background: linear-gradient(135deg, var(--pink), var(--pink2)) !important;
}
.hamburger {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 10px; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s;
}
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
  position: relative; z-index: 9;
}
.mobile-nav a {
  color: var(--muted); text-decoration: none;
  font-size: 15px; font-weight: 600; padding: 10px 14px;
  border-radius: 10px; transition: all .2s;
}
.mobile-nav a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.mobile-nav.open { display: flex; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden; z-index: 1;
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.hero-inner { max-width: 900px; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,139,0.1);
  border: 1px solid rgba(255,45,139,0.25);
  border-radius: 40px; padding: 7px 22px;
  font-size: 12px; color: var(--pink2);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeSlideUp .7s ease both;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero h1 {
  font-family: 'Kalam', cursive;
  font-size: clamp(48px, 9vw, 108px);
  line-height: .92; margin-bottom: 26px;
  animation: fadeSlideUp .7s ease .1s both;
}
.hero h1 .t1 { display: block; color: var(--text); }
.hero h1 .t2 {
  display: block;
  background: linear-gradient(135deg, var(--pink), var(--amber), var(--pink2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: clamp(15px, 2vw, 19px); color: var(--muted);
  max-width: 580px; margin: 0 auto 44px; line-height: 1.7;
  animation: fadeSlideUp .7s ease .2s both;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeSlideUp .7s ease .3s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff; border: none;
  padding: 17px 42px; border-radius: 14px;
  font-family: 'Baloo 2', sans-serif; font-size: 17px; font-weight: 700;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 28px rgba(255,45,139,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,45,139,0.5);
}
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
  padding: 17px 42px; border-radius: 14px;
  font-family: 'Baloo 2', sans-serif; font-size: 17px; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.btn-secondary:hover { border-color: var(--amber); color: var(--amber2); }
.hero-fine {
  margin-top: 26px; font-size: 12px; color: var(--muted);
  animation: fadeSlideUp .7s ease .4s both;
}

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

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(255,45,139,0.04); padding: 11px 0;
}
.ticker-track {
  display: flex; animation: tickRun 30s linear infinite;
  width: max-content;
}
.tick { white-space: nowrap; font-size: 13px; color: var(--muted); padding: 0 30px; }
.tick em { color: var(--pink2); font-style: normal; margin-right: 8px; }
@keyframes tickRun { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-row {
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--border);
  background: var(--ink);
}
.st {
  flex: 1; max-width: 220px;
  padding: 28px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.st:last-child { border-right: none; }
.st-val {
  font-family: 'Kalam', cursive; font-size: 38px; font-weight: 700;
  background: linear-gradient(135deg, var(--pink2), var(--amber2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.st-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: .5px; }

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { padding: 96px 52px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-dark { background: var(--ink); }
.section-wrap { padding: 96px 0; }
.section-wrap .section { padding-top: 0; padding-bottom: 0; }

.tag { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--pink2); margin-bottom: 14px; }
.h2 {
  font-family: 'Kalam', cursive;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.1; margin-bottom: 14px;
}
.sub { color: var(--muted); font-size: 15.5px; line-height: 1.7; max-width: 560px; }

/* ══════════════════════════════════════
   GAME CARDS
══════════════════════════════════════ */
.games-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px;
}
.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
  cursor: pointer;
  transition: all .28s;
  position: relative;
}
.game-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,45,139,0.06), transparent);
  opacity: 0; transition: opacity .28s;
}
.game-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255,45,139,0.4);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,45,139,0.2);
}
.game-card:hover::before { opacity: 1; }
.game-thumb {
  height: 148px; display: flex; align-items: center; justify-content: center;
  font-size: 60px; position: relative;
}
.game-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--card));
}
.game-body { padding: 18px 20px 22px; }
.game-name { font-family: 'Kalam', cursive; font-size: 18px; margin-bottom: 5px; }
.game-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 16px; }
.game-foot { display: flex; align-items: center; justify-content: space-between; }
.game-badge {
  font-size: 10px; font-weight: 700; padding: 3px 11px; border-radius: 20px;
  background: rgba(0,224,150,0.1); color: var(--green);
  border: 1px solid rgba(0,224,150,0.2); letter-spacing: .5px;
}
.game-play-btn {
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  border: none; color: #fff;
  font-family: 'Baloo 2', sans-serif; font-size: 13px; font-weight: 700;
  padding: 7px 18px; border-radius: 9px; cursor: pointer;
  transition: opacity .2s;
}
.game-play-btn:hover { opacity: .85; }

/* thumb gradients */
.gth-1 { background: linear-gradient(135deg,#1a0d2e,#2d0a3e); }
.gth-2 { background: linear-gradient(135deg,#0a1a2e,#0d2040); }
.gth-3 { background: linear-gradient(135deg,#1a1a08,#2a200a); }
.gth-4 { background: linear-gradient(135deg,#0a2a1a,#082018); }

/* ══════════════════════════════════════
   FEATURES GRID
══════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr));
  gap: 22px; margin-top: 48px;
}
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: border-color .2s;
}
.feat-card:hover { border-color: rgba(255,45,139,0.35); }
.feat-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(255,45,139,0.1);
  border: 1px solid rgba(255,45,139,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.feat-title { font-family: 'Kalam', cursive; font-size: 18px; margin-bottom: 8px; }
.feat-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════
   RESPONSIBLE GAMBLING SECTION
══════════════════════════════════════ */
.rg-section {
  background: linear-gradient(135deg, #140808, #080814);
  border-top: 1px solid rgba(255,75,110,0.2);
  border-bottom: 1px solid rgba(255,75,110,0.2);
  padding: 72px 52px;
}
.rg-container { max-width: 960px; margin: 0 auto; }
.rg-head { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.rg-orb {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,75,110,0.12);
  border: 1px solid rgba(255,75,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.rg-head h2 { font-family: 'Kalam', cursive; font-size: 26px; color: #ffb0be; }
.rg-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.rg-card {
  background: rgba(255,75,110,0.05);
  border: 1px solid rgba(255,75,110,0.12);
  border-radius: 12px; padding: 20px;
}
.rg-card h4 { font-size: 14px; font-weight: 700; color: #ffb0be; margin-bottom: 7px; }
.rg-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.rg-helplines { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.rg-link {
  background: rgba(255,75,110,0.07);
  border: 1px solid rgba(255,75,110,0.18);
  color: #ffb0be; text-decoration: none;
  padding: 10px 18px; border-radius: 9px;
  font-size: 13px; transition: background .2s;
}
.rg-link:hover { background: rgba(255,75,110,0.16); }

/* ══════════════════════════════════════
   DISCLAIMER
══════════════════════════════════════ */
.disclaimer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 40px 52px;
}
.disclaimer-inner { max-width: 960px; margin: 0 auto; }
.disclaimer h3 { font-size: 11px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 12px; }
.disclaimer p { font-size: 12px; color: var(--muted); line-height: 1.75; margin-bottom: 8px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: var(--indigo); border-top: 1px solid var(--border); padding: 56px 52px 36px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 36px;
}
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-top: 12px; max-width: 250px; }
.footer-col h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--pink2); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.age-pill {
  background: rgba(255,45,139,0.1);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 4px 14px; font-size: 12px; color: var(--pink2); font-weight: 700;
}

/* ══════════════════════════════════════
   GAME MODAL
══════════════════════════════════════ */
#game-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 8000; display: none;
  align-items: center; justify-content: center;
  padding: 16px; backdrop-filter: blur(10px);
}
#game-modal.open { display: flex; }
.modal-box {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 24px; width: 100%; max-width: 650px;
  max-height: 92vh; overflow-y: auto;
  animation: modalPop .3s ease;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(.92) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--ink); z-index: 2;
  border-radius: 24px 24px 0 0;
}
.modal-title {
  font-family: 'Kalam', cursive; font-size: 21px;
  background: linear-gradient(135deg, var(--pink2), var(--amber2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.modal-close {
  background: none; border: none; color: var(--muted);
  font-size: 24px; cursor: pointer; transition: color .2s;
  line-height: 1; padding: 2px 6px;
}
.modal-close:hover { color: var(--text); }
.modal-body { padding: 24px; }
.modal-disclaimer {
  background: rgba(255,75,110,0.06);
  border: 1px solid rgba(255,75,110,0.16);
  border-radius: 10px; padding: 11px 15px;
  font-size: 11.5px; color: #ffb0be; margin-bottom: 22px; line-height: 1.5;
}

/* ── Shared game UI ── */
.coins-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 13px; padding: 13px 20px; margin-bottom: 20px;
}
.coins-bar .cl { font-size: 12px; color: var(--muted); }
.coins-bar .cv {
  font-family: 'Kalam', cursive; font-size: 28px;
  background: linear-gradient(135deg, var(--pink2), var(--amber2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.bet-row { display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.bet-lbl { font-size: 12.5px; color: var(--muted); }
.bb {
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); padding: 6px 16px; border-radius: 8px;
  cursor: pointer; font-size: 13px;
  font-family: 'Baloo 2', sans-serif; transition: all .15s;
}
.bb:hover, .bb.on { border-color: var(--pink); color: var(--pink2); background: rgba(255,45,139,0.08); }
.big-action {
  background: linear-gradient(135deg, var(--pink), var(--pink2));
  color: #fff; border: none; padding: 15px 50px;
  border-radius: 13px; font-family: 'Baloo 2', sans-serif;
  font-size: 18px; font-weight: 800; cursor: pointer;
  box-shadow: 0 6px 24px rgba(255,45,139,0.35);
  transition: all .2s; display: block; margin: 0 auto;
}
.big-action:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,45,139,0.5); }
.big-action:disabled { opacity: .4; cursor: not-allowed; }
.game-msg { min-height: 28px; text-align: center; font-size: 15px; font-weight: 700; margin-top: 12px; }
.game-msg.win { color: var(--green); }
.game-msg.lose { color: var(--muted); }
.game-msg.push { color: var(--amber2); }

/* SLOTS */
.slot-reels { display: flex; gap: 12px; justify-content: center; margin-bottom: 22px; }
.sr {
  width: 90px; height: 96px; background: var(--card);
  border: 2px solid var(--border); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; transition: border-color .3s;
}
.sr.spinning { animation: reelBounce .09s linear infinite; }
@keyframes reelBounce { 0%{transform:translateY(0)}50%{transform:translateY(-5px)}100%{transform:translateY(0)} }
.sr.win { border-color: var(--pink); box-shadow: 0 0 20px rgba(255,45,139,0.4); }
.paytable { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.pt-r { display: flex; justify-content: space-between; font-size: 12px; padding: 4px 10px; background: var(--card); border-radius: 7px; }
.pt-r span:last-child { color: var(--amber2); }

/* BLACKJACK */
.bj-area { margin-bottom: 14px; text-align: center; }
.bj-lbl { font-size: 10.5px; letter-spacing: 1.2px; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.card-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; min-height: 88px; align-items: center; }
.pcard {
  width: 60px; height: 84px; background: #fff;
  border-radius: 9px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 21px; box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  color: #111; flex-shrink: 0;
}
.pcard .cs { font-size: 12px; }
.pcard.red { color: #cc1111; }
.pcard.back { background: var(--card); border: 1px solid var(--border); color: var(--muted); font-size: 26px; }
.bj-score { font-size: 12px; color: var(--muted); margin-top: 5px; }
.bj-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.bj-btn {
  padding: 10px 24px; border-radius: 10px; border: none;
  font-family: 'Baloo 2', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: opacity .2s;
}
.bj-btn:disabled { opacity: .3; cursor: not-allowed; }
.bj-btn.hit { background: linear-gradient(135deg, var(--pink), var(--pink2)); color: #fff; }
.bj-btn.stand { background: var(--card); border: 1px solid var(--border); color: var(--text); }
.bj-btn.deal { background: linear-gradient(135deg, var(--pink), var(--pink2)); color: #fff; }

/* ROULETTE */
.r-outside-bets { display: flex; gap: 7px; justify-content: center; flex-wrap: wrap; margin-bottom: 13px; }
.r-ob {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 9px; padding: 7px 15px; font-size: 13px;
  cursor: pointer; transition: all .15s; font-weight: 600;
}
.r-ob:hover, .r-ob.on { background: rgba(255,45,139,0.1); border-color: var(--pink); color: var(--pink2); }
.r-numgrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 13px; }
.r-num {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 7px; padding: 7px 0; font-size: 12px;
  cursor: pointer; text-align: center; transition: all .15s;
}
.r-num.rn { color: #ff8888; }
.r-num.bn { color: #aaa; }
.r-num:hover, .r-num.on { background: rgba(255,45,139,0.1); border-color: var(--pink); }
.r-result-row { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 10px; }
.r-result-ball {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff;
}

/* POKER */
.poker-result { font-family: 'Kalam', cursive; font-size: 21px; color: var(--pink2); min-height: 28px; margin-bottom: 10px; text-align: center; }
.poker-cards { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.poker-card-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.poker-card-wrap input { accent-color: var(--pink); width: 15px; height: 15px; cursor: pointer; }
.hold-label { font-size: 10px; color: var(--pink2); min-height: 14px; font-weight: 800; }
.poker-paytable { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 15px; border-top: 1px solid var(--border); padding-top: 13px; }
.pp-row { display: flex; justify-content: space-between; font-size: 11px; padding: 3px 9px; background: var(--card); border-radius: 6px; }
.pp-row span:last-child { color: var(--amber2); }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  padding: 64px 52px 56px;
  position: relative; overflow: hidden; z-index: 1;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--amber), var(--pink), transparent);
}
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink2); }
.breadcrumb .sep { margin: 0 8px; }
.page-hero h1 { font-family: 'Kalam', cursive; font-size: clamp(32px, 5vw, 56px); margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 16px; max-width: 600px; line-height: 1.7; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 768px) {
  header { padding: 14px 20px; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 64px 20px; }
  .section { padding: 64px 20px; }
  .rg-section { padding: 52px 20px; }
  .disclaimer { padding: 32px 20px; }
  footer { padding: 44px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rg-cards { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
  .st { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .slot-reels { gap: 8px; }
  .sr { width: 78px; height: 84px; font-size: 36px; }
  .page-hero { padding: 44px 20px 36px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
