/* =============================================
   LotusJoyHub Social Casino — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
  --gold:       #d4af37;
  --gold-light: #f5d769;
  --gold-dark:  #9a7d1a;
  --purple:     #6a0dad;
  --purple-deep:#3d0066;
  --purple-mid: #8b24c9;
  --purple-soft:#c084fc;
  --bg-dark:    #0a0010;
  --bg-card:    #12011e;
  --bg-card2:   #1a0030;
  --text:       #f0e6ff;
  --text-muted: #9b7bb5;
  --red:        #e63946;
  --green:      #06d6a0;
  --border:     rgba(212,175,55,0.25);
  --glow-gold:  0 0 20px rgba(212,175,55,0.6);
  --glow-purple:0 0 20px rgba(138,36,201,0.6);
  --radius:     16px;
  --radius-sm:  8px;
  --transition: 0.3s ease;
}

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

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

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(106,13,173,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(212,175,55,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--purple-mid); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
.heading-font { font-family: 'Cinzel', serif; }

h1,h2,h3,h4 { font-family: 'Cinzel', serif; line-height: 1.2; }

/* ── UTILITY CLASSES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple-soft); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* ── GLOWING DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 60px 0;
  opacity: 0.4;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0a0010;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.6);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  color: #fff;
  box-shadow: 0 4px 20px rgba(138,36,201,0.4);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138,36,201,0.6);
}

.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ── CARDS ── */
.card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

/* ── SECTION TITLE ── */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-social {
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
}

.badge-free {
  background: rgba(6,214,160,0.15);
  border: 1px solid rgba(6,214,160,0.4);
  color: var(--green);
}

.badge-18 {
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.4);
  color: #ff6b6b;
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(10,0,16,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

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

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

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

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-age-badge {
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.4);
  color: #ff6b6b;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(106,13,173,0.3) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.1) 0%, transparent 50%);
}

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

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title .line1 {
  display: block;
  background: linear-gradient(135deg, #fff 0%, var(--purple-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.5));
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

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

/* Floating cards decoration */
.hero-cards {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  position: absolute;
  width: 70px;
  height: 100px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--glow-purple);
  animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

/* ── FEATURES STRIP ── */
.features-strip {
  background: linear-gradient(90deg, var(--bg-card), rgba(106,13,173,0.2), var(--bg-card));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.features-inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.feature-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

.feature-item strong { color: var(--text); }

/* ── GAMES SECTION ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.game-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold), 0 20px 40px rgba(0,0,0,0.4);
  transform: translateY(-6px);
}

.game-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.game-card-body { padding: 24px; }

.game-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.game-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.game-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.game-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.game-stars { color: var(--gold); font-size: 0.85rem; }

/* ── SOCIAL CASINO INFO ── */
.social-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.social-info-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
}

.social-info-card:hover {
  border-color: var(--purple-soft);
  box-shadow: var(--glow-purple);
}

.social-info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: #fff;
}

.social-info-card h3 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.social-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── RESPONSIBLE GAMING (home section) ── */
.responsible-home {
  background: linear-gradient(135deg, rgba(106,13,173,0.2), rgba(10,0,16,0.8));
  border: 1px solid rgba(106,13,173,0.4);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.responsible-home::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06), transparent);
  pointer-events: none;
}

.responsible-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.responsible-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.responsible-item i {
  color: var(--green);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.responsible-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── REGULATORS ── */
.regulators-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.regulators-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.regulator-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.regulator-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.regulator-badge i {
  font-size: 1.1rem;
  color: var(--gold);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo-text {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold); }

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

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

.footer-disclaimer {
  text-align: center;
  padding: 20px;
  background: rgba(230,57,70,0.05);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-disclaimer strong { color: #ff6b6b; }

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

.age-popup {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(212,175,55,0.2);
  animation: popup-enter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popup-enter {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.age-popup-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.age-popup-logo img { width: 100%; height: 100%; object-fit: cover; }

.age-popup h2 {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.age-popup h3 {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
}

.age-18-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(230,57,70,0.15);
  border: 3px solid #e63946;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ff6b6b;
}

.age-popup-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.age-popup-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-popup-legal {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ── GAME PAGE STYLES ── */
.game-page {
  min-height: 100vh;
  padding-top: 80px;
}

.game-header {
  background: linear-gradient(135deg, rgba(106,13,173,0.3), rgba(10,0,16,0.9));
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.game-balance-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.balance-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 10px 24px;
  box-shadow: var(--glow-gold);
}

.balance-chip .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.balance-chip .value {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.balance-chip i { color: var(--gold); font-size: 1.2rem; }

/* ── SLOT MACHINE ── */
.slot-machine-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.slot-machine {
  background: linear-gradient(135deg, #1a0030, #0d001a);
  border: 3px solid var(--gold);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 0 40px rgba(212,175,55,0.3),
    inset 0 0 40px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.slot-machine::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.slot-machine-top {
  text-align: center;
  margin-bottom: 28px;
}

.slot-machine-top .machine-name {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.slot-reels-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.slot-reel {
  width: 120px;
  height: 120px;
  background: #000;
  border: 3px solid var(--purple-mid);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 0 10px rgba(138,36,201,0.3);
}

.slot-reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.1s linear;
}

.slot-symbol {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.slot-reel::before,
.slot-reel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  z-index: 2;
  pointer-events: none;
}

.slot-reel::before {
  top: 0;
  background: linear-gradient(to bottom, #000, transparent);
}

.slot-reel::after {
  bottom: 0;
  background: linear-gradient(to top, #000, transparent);
}

.slot-win-line {
  position: absolute;
  top: 50%;
  left: -8px;
  right: -8px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateY(-50%);
  opacity: 0.5;
  z-index: 3;
  pointer-events: none;
}

.slot-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bet-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
}

.bet-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.bet-btn:hover { background: var(--gold); color: #000; transform: scale(1.1); }

.bet-amount {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 60px;
  text-align: center;
}

.spin-btn {
  padding: 16px 48px;
  font-size: 1.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(212,175,55,0.5);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.spin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(212,175,55,0.8);
}

.spin-btn:active { transform: scale(0.98); }

.spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.spin-btn .spin-text { position: relative; z-index: 1; }

.slot-result-msg {
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-result-msg .msg-text {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease;
}

.slot-result-msg .msg-text.show { opacity: 1; }
.slot-result-msg .msg-text.win  { color: var(--gold); text-shadow: 0 0 20px rgba(212,175,55,0.8); }
.slot-result-msg .msg-text.lose { color: var(--text-muted); }
.slot-result-msg .msg-text.jackpot {
  color: var(--gold-light);
  font-size: 1.6rem;
  text-shadow: 0 0 30px rgba(212,175,55,1);
  animation: jackpot-pulse 0.5s ease infinite alternate;
}

@keyframes jackpot-pulse {
  from { text-shadow: 0 0 20px rgba(212,175,55,0.8); }
  to   { text-shadow: 0 0 40px rgba(212,175,55,1), 0 0 60px rgba(212,175,55,0.6); }
}

.paytable {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 24px;
}

.paytable h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.1em;
}

.paytable-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
}

.paytable-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}

.paytable-row .symbols { font-size: 1rem; }
.paytable-row .multiplier { color: var(--gold); font-size: 0.8rem; font-weight: 600; }

/* Confetti */
.confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  top: -20px;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ── HI-LO GAME ── */
.hilo-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hilo-arena {
  background: linear-gradient(135deg, #001a0d, #0a0010);
  border: 3px solid var(--gold);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 0 40px rgba(212,175,55,0.2);
  text-align: center;
}

.hilo-deck-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.playing-card {
  width: 120px;
  height: 170px;
  border-radius: 14px;
  background: #fff;
  border: 3px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  transition: all 0.3s ease;
  font-family: 'Cinzel', serif;
}

.playing-card.red { border-color: #e63946; }
.playing-card.black { border-color: #222; }

.card-value {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.card-suit {
  font-size: 1.4rem;
  margin-top: 4px;
}

.playing-card.red .card-value,
.playing-card.red .card-suit { color: #e63946; }

.playing-card.black .card-value,
.playing-card.black .card-suit { color: #111; }

.playing-card.hidden {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  border-color: var(--gold);
}

.playing-card.hidden .card-back {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
}

.card-flip-enter { animation: card-flip 0.4s ease; }

@keyframes card-flip {
  0%   { transform: rotateY(90deg) scale(0.8); opacity: 0; }
  100% { transform: rotateY(0) scale(1); opacity: 1; }
}

.vs-divider {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-muted);
}

.hilo-question {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}

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

.hilo-btn {
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hilo-btn-higher {
  background: linear-gradient(135deg, #06d6a0, #048a65);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,214,160,0.4);
}

.hilo-btn-lower {
  background: linear-gradient(135deg, #e63946, #9a0018);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230,57,70,0.4);
}

.hilo-btn-same {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}

.hilo-btn:hover { transform: translateY(-3px) scale(1.03); }
.hilo-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.hilo-result {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hilo-result-text {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease;
}

.hilo-result-text.show { opacity: 1; }
.hilo-result-text.correct { color: var(--green); }
.hilo-result-text.wrong { color: var(--red); }

.hilo-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hilo-stat-chip {
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.hilo-stat-chip strong { color: var(--gold); }

/* ── PAGE INNER HEADER ── */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

/* ── RESPONSIBLE GAMING PAGE ── */
.responsible-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.rg-block {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.rg-block h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rg-block h3 i { color: var(--purple-soft); }

.rg-block p,
.rg-block li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.rg-block ul { padding-left: 0; }
.rg-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.rg-block ul li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.helpline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.helpline-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(6,214,160,0.3);
}

.helpline-item strong {
  display: block;
  color: var(--green);
  margin-bottom: 4px;
}

.helpline-item span { color: var(--text-muted); font-size: 0.875rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-form-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

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

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.contact-card h4 { color: var(--gold); margin-bottom: 4px; font-size: 0.95rem; }
.contact-card p  { color: var(--text-muted); font-size: 0.875rem; }
.contact-card a  { color: var(--text-muted); transition: color var(--transition); }
.contact-card a:hover { color: var(--gold); }

/* Map */
.map-placeholder {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  overflow: hidden;
  position: relative;
}

.map-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.5; }

/* Toast notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 16px 24px;
  color: var(--gold);
  font-weight: 600;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
  box-shadow: var(--glow-gold);
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10,0,16,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  backdrop-filter: blur(20px);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-menu-close:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.glow-text {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,100% { text-shadow: 0 0 10px rgba(212,175,55,0.3); }
  50%      { text-shadow: 0 0 30px rgba(212,175,55,0.8), 0 0 60px rgba(212,175,55,0.4); }
}

/* Win flash overlay */
.win-flash {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(212,175,55,0.3), transparent);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  animation: win-flash-anim 0.8s ease forwards;
}

@keyframes win-flash-anim {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Spin animation */
@keyframes spin-fast {
  from { transform: translateY(0); }
  to   { transform: translateY(-1000px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .btn { display: none; }

  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }

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

  .footer-top { grid-template-columns: 1fr; }

  .slot-reels-container { gap: 8px; }
  .slot-reel { width: 90px; height: 90px; }
  .slot-symbol { width: 80px; height: 80px; font-size: 2.2rem; }

  .responsible-home { padding: 28px 20px; }
  .age-popup { padding: 32px 24px; }

  .section-pad { padding: 60px 0; }
}

@media (max-width: 480px) {
  .slot-reel { width: 80px; height: 80px; }
  .slot-symbol { font-size: 2rem; }
  .playing-card { width: 90px; height: 130px; }
  .card-value { font-size: 1.8rem; }
  .hilo-btn { padding: 12px 24px; font-size: 0.95rem; }
}
