
:root {
  /* SpinWaves — refreshed theme: emerald + slate. Free play, virtual credits, no real money. */
  --bg-dark: #0f1419;
  --bg-panel: #151c23;
  --bg-card: #1a222c;
  --bg-elevated: #232d3a;
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dim: #059669;
  --accent: #06b6d4;
  --accent-soft: #22d3ee;
  --accent-glow: rgba(16, 185, 129, 0.35);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(16, 185, 129, 0.2);
  --radius: 8px;
  --radius-lg: 14px;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Top strip: brand left, tags right — distinct from old single-line bar */
.social-casino-strip {
  background: var(--bg-card);
  border-top: 2px solid var(--primary);
  padding: 0.5rem 0;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.strip-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.strip-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
}

.strip-tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.strip-tag-age {
  color: var(--primary-light);
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.08);
}

@media (max-width: 480px) {
  .strip-inner {
    justify-content: center;
    text-align: center;
  }
  .strip-tags {
    justify-content: center;
  }
}

/* Legacy: keep .no-money if used elsewhere */
.social-casino-strip .no-money {
  color: var(--accent);
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 20, 25, 0.97);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  position: relative;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(16, 185, 129, 0.2);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 3rem;
  max-height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo:hover {
  color: var(--primary-light);
}

.logo:hover .logo-img {
  opacity: 0.95;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-active {
  color: var(--primary);
}


.hero {
  padding: 4rem 0 5rem;
  text-align: start;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 0.75rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.hero-compliance {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
}


.hero-split {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-panel) 100%);
  position: relative;
  overflow: hidden;
}

.hero-split::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .hero-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  text-align: left;
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero-actions .cta-btn {
  margin-top: 0;
}

.hero-links {
  display: flex;
  gap: 1rem;
}

.hero-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.hero-links a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  text-align: start;
}

.hero-visual {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob {
  width: 180px;
  height: 180px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(94, 200, 183, 0.08) 100%);
  animation: blob 8s ease-in-out infinite;
}

.hero-dots {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  place-items: center;
  pointer-events: none;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
}

@keyframes blob {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg); }
  50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(180deg); }
}

/* ========== Home page: different section UI and order ========== */
.home .hero-center {
  padding: 3rem 0 4rem;
  background: var(--bg-dark);
  text-align: center;
}

.home .hero-block {
  max-width: 720px;
  margin: 0 auto;
}

.home .hero-block .hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.home .hero-block .hero-lead {
  margin: 0 auto 1.5rem;
  text-align: center;
}

.home .hero-block .cta-btn {
  margin: 0 0 1rem;
}

.home .hero-block .hero-note {
  text-align: center;
  font-size: 0.8rem;
}

/* Games block: list-style cards */
.home .games-block {
  padding: 3rem 0;
  background: var(--bg-panel);
}

.home .block-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  text-align: center;
}

.home .block-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 auto 1.5rem;
}

.home .games-block {
  position: relative;
  background-image: url("./assets/game_back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home .games-block .container {
  position: relative;
  z-index: 1;
}

.home .games-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.82);
  z-index: 0;
}

.home .game-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1.5rem;
}

.home .game-list li {
  margin: 0;
}

.home .game-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.home .game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 20, 25, 0.9) 0%, rgba(15, 20, 25, 0.7) 100%);
  z-index: 0;
  transition: opacity 0.2s;
}

.home .game-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(16, 185, 129, 0.2);
}

.home .game-card:hover::before {
  opacity: 0.88;
}

.home .game-card > * {
  position: relative;
  z-index: 1;
}

.home .game-card-slots { background-image: url('./assets/game_card_slot.webp'); }
.home .game-card-blackjack { background-image: url('./assets/blackjack.webp'); }
.home .game-card-poker { background-image: url('./assets/poker.webp'); }
.home .game-card-baccarat { background-image: url('./assets/baccarat.webp'); }
.home .game-card-craps { background-image: url('./assets/dice.webp'); }
.home .game-card-roulette { background-image: url('./assets/roulette.webp'); }

.home .game-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.home .game-card-text {
  flex: 1;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}

.home .game-card-text strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #fff;
}

.home .game-card-arrow {
  color: var(--primary-light);
  font-size: 1.1rem;
  opacity: 0.9;
}

.home .block-more {
  text-align: center;
  margin: 1.5rem 0 0;
}

/* Pillars: inline strip */
.home .pillars-strip {
  padding: 1rem 0;
  background: var(--bg-card);
}

.home .pillars-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.home .pillar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.6;
}

/* Intro block: desktop = image left, text right; mobile = stacked */
.home .intro-block {
  padding: 3rem 0;
  background: var(--bg-dark);
}

.home .intro-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.home .intro-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.home .intro-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.home .intro-text {
  text-align: left;
}

.home .intro-text .block-title {
  margin-bottom: 1rem;
  text-align: left;
}

.home .intro-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* Steps: vertical list with left line */
.home .steps-block {
  padding: 3rem 0;
  background: var(--bg-panel);
}

.home .steps-block .block-title {
  margin-bottom: 1.5rem;
}

/* Desktop: 3 columns; mobile: vertical timeline */
.home .steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home .steps-list-item {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--primary);
}

.home .steps-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--primary);
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.home .steps-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.home .steps-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.home .steps-list-item:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

/* About block: cards left, copy right */
.home .about-block {
  padding: 3rem 0;
  background: var(--bg-card);
}

.home .about-block-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.home .about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home .about-card {
  padding: 1rem 1.25rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.home .about-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.home .about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.home .about-copy .block-title {
  text-align: left;
  margin-bottom: 0.75rem;
}

.home .about-copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .home .hero-center {
    padding: 2.5rem 0 3rem;
  }
  .home .games-block {
    padding: 2rem 0;
  }
  .home .game-list {
    grid-template-columns: 1fr;
  }
  .home .game-card {
    padding: 0.875rem 1rem;
  }
  .home .intro-block .container {
    grid-template-columns: 1fr;
  }
  .home .intro-image-wrap {
    order: 0;
  }
  .home .intro-text {
    order: 1;
    text-align: center;
  }
  .home .intro-text .block-title {
    text-align: center;
  }
  .home .intro-block {
    padding: 2rem 0;
  }
  .home .steps-block {
    padding: 2rem 0;
  }
  .home .steps-list {
    grid-template-columns: 1fr;
  }
  .home .steps-list-item {
    padding: 1.25rem 1rem;
  }
  .home .about-block-inner {
    grid-template-columns: 1fr;
  }
  .home .about-cards {
    order: 0;
  }
  .home .about-copy {
    order: 1;
  }
  .home .about-copy .block-title {
    text-align: center;
  }
  .home .about-copy p {
    text-align: center;
  }
  .home .about-copy .cta-btn {
    display: block;
    text-align: center;
  }
}

/* ========== Home page: NEW layout (split hero, tiles, pills, callout, row steps, CTA panel) ========== */
.home .hero-split {
  padding: 3rem 0 4rem;
  background: var(--bg-dark);
}

.home .hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 769px) {
  .home .hero-split-inner {
    max-width: none;
  }
}

.home .hero-split-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.home .hero-split-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.home .hero-split-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.home .hero-split-visual {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .hero-split-blob {
  width: 220px;
  height: 220px;
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.12) 100%);
}

/* Games: tile strip */
.home .games-tiles-wrap {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

/* Blurred background image – barely visible */
.home .games-tiles-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/game_back.webp") center / cover no-repeat;
  filter: blur(12px);
  opacity: 0.5;
  z-index: 0;
}

/* Dark overlay so background shows very little; content stays clear */
.home .games-tiles-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 0;
}

.home .games-tiles-wrap .container {
  position: relative;
  z-index: 1;
}

.home .tiles-heading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.home .tiles-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

@media (min-width: 769px) {
  .home .tiles-heading,
  .home .tiles-intro {
    text-align: left;
  }
  .home .tiles-more {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .home .tiles-heading,
  .home .tiles-intro {
    text-align: center;
  }
  .home .tiles-more {
    text-align: center;
  }
}

.home .games-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.home .game-tile {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.home .game-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 25, 0.95) 0%, transparent 50%);
  z-index: 0;
}

.home .game-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(6, 182, 212, 0.4), inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.home .game-tile-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.home .game-tile-roulette { background-image: url('./assets/roulette.webp'); }
.home .game-tile-craps { background-image: url('./assets/dice.webp'); }
.home .game-tile-blackjack { background-image: url('./assets/blackjack.webp'); }
.home .game-tile-slots { background-image: url('./assets/game_card_slot.webp'); }
.home .game-tile-baccarat { background-image: url('./assets/baccarat.webp'); }
.home .game-tile-poker { background-image: url('./assets/poker.webp'); }

.home .tiles-more {
  margin: 1.5rem 0 0;
}

/* Key pills */
.home .key-pills-wrap {
  padding: 1.25rem 0;
}

.home .key-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.home .key-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.home .key-pill-icon {
  font-size: 0.75rem;
  color: var(--primary);
}

/* Intro callout */
.home .intro-callout-wrap {
  padding: 3rem 0;
  background: var(--bg-dark);
}

@media (min-width: 769px) {
  .home .intro-callout-wrap .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .home .intro-callout-image {
    margin-bottom: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .home .intro-callout {
    max-width: none;
    margin: 0;
  }
}

.home .intro-callout-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.home .intro-callout-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.home .intro-callout {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.home .intro-callout-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.home .intro-callout p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

/* How row: 3 columns compact */
.home .how-row-wrap {
  padding: 3rem 0;
  background: var(--bg-panel);
}

.home .how-row-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem;
}

@media (min-width: 769px) {
  .home .how-row-heading {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .home .how-row-heading {
    text-align: center;
  }
}

.home .how-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home .how-row-item {
  padding: 1.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.home .how-row-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--primary);
  border-radius: 50%;
}

.home .how-row-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.35rem;
}

.home .how-row-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* About CTA panel */
.home .about-cta-wrap {
  padding: 3rem 0;
  background: var(--bg-panel);
}

.home .about-cta-panel {
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

@media (min-width: 769px) {
  .home .about-cta-panel {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem 2rem;
    text-align: left;
  }
  .home .about-cta-title {
    flex: 0 0 auto;
    margin: 0;
  }
  .home .about-cta-panel p {
    flex: 1 1 400px;
    margin: 0;
    min-width: 0;
  }
  .home .about-cta-panel .cta-btn {
    flex: 0 0 auto;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .home .about-cta-panel {
    max-width: 640px;
    text-align: center;
  }
}

.home .about-cta-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.home .about-cta-panel p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

/* Home new layout: responsive */
@media (max-width: 900px) {
  .home .games-tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .home .hero-split-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .home .hero-split-lead,
  .home .hero-split-note {
    text-align: center;
  }
  .home .hero-split-visual {
    min-height: 140px;
  }
  .home .hero-split-blob {
    width: 160px;
    height: 160px;
  }
  .home .games-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .home .game-tile-name {
    font-size: 0.8rem;
    padding: 0.75rem;
  }
  .home .how-row {
    grid-template-columns: 1fr;
  }
  .home .intro-callout {
    border-left-width: 3px;
    padding: 1.25rem 1.5rem;
  }
}

/* ========== Games page (banner, key bar, row cards) ========== */
.games-page .games-banner {
  padding: 2.5rem 0;
  background: var(--bg-panel);
}

.games-page .games-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.games-page .games-banner-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.games-key-bar {
  padding: 0.6rem 0;
  background: var(--bg-card);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.games-key-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.key-bar-sep {
  color: var(--border);
  margin: 0 0.15rem;
}

.games-rows-wrap {
  padding: 2.5rem 0 3rem;
  background: var(--bg-dark);
}

.games-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.games-page .game-row {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.games-page .game-row:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.game-row-thumb {
  width: 140px;
  min-width: 140px;
  background-size: cover;
  background-position: center;
}

.game-row-roulette { background-image: url('./assets/roulette.webp'); }
.game-row-craps { background-image: url('./assets/dice.webp'); }
.game-row-blackjack { background-image: url('./assets/blackjack.webp'); }
.game-row-slots { background-image: url('./assets/game_card_slot.webp'); }
.game-row-baccarat { background-image: url('./assets/baccarat.webp'); }
.game-row-poker { background-image: url('./assets/poker.webp'); }

.game-row-body {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1rem 1.25rem;
}

.game-row-body strong {
  font-size: 1.1rem;
  color: var(--text);
}

.game-row-tag {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.game-row-cta {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.games-page .game-row:hover .game-row-cta {
  color: var(--primary-light);
}

.games-page .games-back {
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}

.games-how-inline {
  padding: 1.25rem 0;
  background: var(--bg-panel);
  text-align: center;
}

.games-how-line {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .game-row-thumb {
    width: 100px;
    min-width: 100px;
  }
  .game-row-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .game-row-cta {
    margin-left: 0;
  }
}

.play-section {
  padding: 4rem 0;
  background: var(--bg-panel);
}

.play-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.games-page .play-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.games-page .play-section .container {
  position: relative;
  z-index: 1;
}

.games-page .play-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.82);
  z-index: 0;
}

.play-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.play-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  grid-template-areas:
    "slot slot blackjack roulette"
    "texas craps baccarat baccarat";
}

.bento-grid .bento-card:nth-child(1) { grid-area: slot; }
.bento-grid .bento-card:nth-child(2) { grid-area: blackjack; }
.bento-grid .bento-card:nth-child(3) { grid-area: roulette; }
.bento-grid .bento-card:nth-child(4) { grid-area: texas; }
.bento-grid .bento-card:nth-child(5) { grid-area: craps; }
.bento-grid .bento-card:nth-child(6) { grid-area: baccarat; }

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 140px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.7) 0%, rgba(15, 20, 25, 0.9) 100%);
  z-index: 0;
  transition: opacity 0.2s;
}

.bento-card:hover::before {
  opacity: 0.88;
}

.bento-card .bento-icon,
.bento-card .bento-content {
  position: relative;
  z-index: 1;
}

.bento-card-slots {
  background-color: var(--bg-elevated);
  background-image: url('./assets/game_card_slot.webp');
}
.bento-card-blackjack { background-image: url('./assets/blackjack.webp'); }
.bento-card-poker { background-image: url('./assets/poker.webp'); }
.bento-card-baccarat { background-image: url('./assets/baccarat.webp'); }
.bento-card-craps { background-image: url('./assets/dice.webp'); }
.bento-card-roulette { background-image: url('./assets/roulette.webp'); }

.bento-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(16, 185, 129, 0.15);
}

.bento-large {
  min-height: 160px;
  padding: 2rem;
}

.bento-icon {
  width: 64px;
  height: 48px;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bento-card .bento-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.2rem;
}

.bento-card .bento-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.bento-card[class*="bento-card-"] .bento-content h3 { color: #fff; }
.bento-card[class*="bento-card-"] .bento-content p { color: rgba(255, 255, 255, 0.85); }
.bento-card[class*="bento-card-"] .bento-cta { color: var(--primary-light); }

.bento-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.bento-card:hover .bento-cta {
  color: var(--primary-light);
}

.play-more {
  text-align: center;
  margin-top: 2rem;
}

/* ---------- Games page: casino / club style ---------- */
@keyframes clubShine {
  0% { transform: translateX(-100%) skewX(-12deg); opacity: 0.4; }
  100% { transform: translateX(200%) skewX(-12deg); opacity: 0; }
}

@keyframes clubMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes clubPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--primary-light); }
  50% { opacity: 0.85; box-shadow: 0 0 24px var(--primary-light), 0 0 40px rgba(52, 211, 153, 0.3); }
}

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

@keyframes clubCardGlow {
  0%, 100% { border-color: rgba(255, 255, 255, 0.08); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
  50% { border-color: rgba(52, 211, 153, 0.2); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(52, 211, 153, 0.15); }
}

@keyframes clubLiveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.games-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-dark) 100%);
  animation: clubFadeInUp 0.8s ease-out;
}

.games-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-light);
  margin: 0 0 0.75rem;
  animation: clubFadeInUp 0.6s ease-out 0.1s both;
}

.games-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
  animation: clubFadeInUp 0.6s ease-out 0.2s both;
}

.games-hero-lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
  animation: clubFadeInUp 0.6s ease-out 0.35s both;
}

/* Club entrance strip */
.club-entrance {
  padding: 0.6rem 0;
  text-align: center;
  background: var(--bg-panel);
  animation: clubFadeInUp 0.5s ease-out 0.4s both;
}

.club-badge {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Marquee — single static line */
.club-marquee {
  padding: 0.5rem 0;
  background: var(--bg-dark);
  animation: clubFadeInUp 0.5s ease-out 0.5s both;
}

.club-marquee-line {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* Perks bar (console style) */
.club-perks {
  padding: 1.25rem 0;
  background: var(--bg-panel);
  animation: clubFadeInUp 0.5s ease-out 0.55s both;
}

.club-perks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.club-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.club-perks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--primary-light);
}

.games-showcase {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-dark);
  animation: clubFadeInUp 0.6s ease-out 0.6s both;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.games-showcase .games-grid .bento-card {
  min-height: 200px;
  padding: 1.5rem;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  animation: clubFadeInUp 0.5s ease-out both;
}

.games-showcase .games-grid .bento-card:nth-child(1) { animation-delay: 0.05s; }
.games-showcase .games-grid .bento-card:nth-child(2) { animation-delay: 0.1s; }
.games-showcase .games-grid .bento-card:nth-child(3) { animation-delay: 0.15s; }
.games-showcase .games-grid .bento-card:nth-child(4) { animation-delay: 0.2s; }
.games-showcase .games-grid .bento-card:nth-child(5) { animation-delay: 0.25s; }
.games-showcase .games-grid .bento-card:nth-child(6) { animation-delay: 0.3s; }

.games-showcase .games-grid .bento-card::before {
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.4) 0%, rgba(15, 20, 25, 0.92) 70%);
}

.games-showcase .games-grid .bento-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(16, 185, 129, 0.2);
  border-color: var(--primary);
}

.games-showcase .games-grid .bento-content {
  width: 100%;
}

.games-showcase .games-grid .bento-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.games-showcase .games-grid .bento-content p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.games-showcase .games-grid .bento-cta {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.games-showcase .games-grid .bento-cta::after {
  content: '→';
  opacity: 0.9;
}

.games-back {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.btn-back {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-light);
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-back:hover {
  background: var(--bg-elevated);
  border-color: var(--primary);
  color: #fff;
}

/* How it works (club console panel) */
.club-how {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-panel) 100%);
  animation: clubFadeInUp 0.6s ease-out both;
}

.club-how-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.5rem;
  text-align: center;
}

.club-how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.club-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  animation: clubFadeInUp 0.5s ease-out both;
}

.club-step:nth-child(1) { animation-delay: 0.1s; }
.club-step:nth-child(2) { animation-delay: 0.2s; }
.club-step:nth-child(3) { animation-delay: 0.3s; }

.club-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-light);
}

.club-step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.club-step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* OPEN 24/7 badge */
.club-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  background: var(--bg-card);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  animation: clubFadeInUp 0.5s ease-out both;
}

.club-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: clubLiveDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--primary-light);
}

@media (prefers-reduced-motion: reduce) {
  .games-hero,
  .games-hero-label,
  .games-hero-title,
  .games-hero-lead,
  .club-entrance,
  .club-marquee,
  .club-perks,
  .games-showcase,
  .games-showcase .games-grid .bento-card,
  .club-step,
  .club-live,
  .club-live-dot {
    animation: none;
  }
}

.link-underline {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.link-underline:hover {
  text-decoration: underline;
  color: var(--primary-light);
}

.pillars {
  padding: 2.5rem 0;
  background: var(--bg-panel);
}

.pillars-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.pillar {
  text-align: center;
  padding: 1rem;
}

.pillar-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.how-section {
  padding: 3.5rem 0;
  background: var(--bg-dark);
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin: 0 0 2rem;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}

.how-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.how-step:hover {
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--primary);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.how-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.about-teaser {
  padding: 3.5rem 0;
  background: var(--bg-card);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.about-teaser-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

.about-teaser-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.about-teaser-content .cta-btn {
  margin-top: 0.5rem;
}

.about-teaser-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-teaser-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.about-teaser-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.about-teaser-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.responsible-bar {
  padding: 1.25rem 0;
}

.responsible-bar .container p {
  text-align: center;
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.responsible-bar a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.responsible-bar a:hover {
  text-decoration: underline;
  color: var(--primary-light);
}

/* Feature section: one block with text + one image */
.feature-section {
  padding: 3.5rem 0;
  background: var(--bg-card);
}

.feature-section-games {
  padding: 2.5rem 0;
  border-top: none;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.feature-inner-reverse {
  direction: rtl;
}

.feature-inner-reverse > * {
  direction: ltr;
}

.feature-content {
  padding: 0 0.5rem 0 0;
}

.feature-inner-reverse .feature-content {
  padding: 0 0 0 0.5rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.feature-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.feature-content .cta-btn {
  margin-top: 0;
}

.feature-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px var(--border);
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.legal-strip {
  padding: 1rem 0;
  background: var(--bg-panel);
}

.legal-strip p {
  text-align: center;
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-strip strong {
  color: var(--primary);
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(16, 185, 129, 0.4);
}

.cta-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.cta-secondary:hover {
  background: rgba(16, 185, 129, 0.15);
  box-shadow: none;
}

.games-cta-wrap {
  text-align: center;
  margin: 2rem 0 0;
}

.games-cta-wrap .cta-btn {
  margin-top: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
  text-align: center;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.games {
  padding: 1rem 0;
  background: var(--bg-card);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.game-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.game-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.15);
}

.games-rooms {
  gap: 1.75rem;
}

.game-room {
  position: relative;
  padding: 1.5rem 1.75rem 2rem;
  background: linear-gradient(145deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 2px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(52, 211, 153, 0.06), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.game-room::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, transparent 50%, rgba(16, 185, 129, 0.06) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.game-room:hover {
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: inset 0 1px 0 rgba(52, 211, 153, 0.15), 0 0 28px rgba(16, 185, 129, 0.1), 0 6px 24px rgba(0, 0, 0, 0.25);
}

.game-room-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dim);
  margin-bottom: 1rem;
  padding: 0.25rem 0.6rem;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.game-room .game-thumb {
  margin-bottom: 1.25rem;
}

.game-room .game-btn-play {
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--accent-glow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.game-room .game-btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.game-thumb {
  width: 100%;
  max-width: 160px;
  height: 100px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.game-thumb svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.game-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.game-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.game-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  flex-grow: 1;
}

.game-badges {
  font-size: 0.75rem;
  color: var(--primary-dim);
  margin-bottom: 1rem;
}

.game-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bg-dark);
  background: var(--primary);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.game-btn:hover {
  background: var(--primary-light);
  color: var(--bg-dark);
}

.how-it-works {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px var(--accent-glow);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.responsible {
  padding: 4rem 0;
  background: var(--bg-card);
}

.responsible-intro {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.responsible-list {
  max-width: 400px;
  margin: 0 auto;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.responsible-list li {
  margin-bottom: 0.5rem;
}

.responsible-cta {
  text-align: center;
  margin: 1rem 0 0;
}

.link-gold {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.link-gold:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.about {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.about .container p {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
}

.disclaimer {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}

.disclaimer-inner {
  text-align: center;
}

.disclaimer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 1rem;
}

.disclaimer-inner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.4rem 0;
}

.footer {
  padding: 2rem 0;
  background: var(--bg-dark);
  text-align: center;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.footer-tagline .social-badge {
  color: var(--primary);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-age {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.games-page .games-section {
  padding: 3rem 0 4rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
  text-align: center;
}

.games-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.5rem;
  text-align: center;
}

.games-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

.games-legal {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 2.5rem 0 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
}

.page-content {
  padding: 3rem 0 4rem;
  max-width: 680px;
  margin: 0 auto;
}

.page-content h1 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 1rem;
}

.page-content h2 {
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-content p,
.page-content ul {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.page-content ul {
  padding-left: 1.25rem;
}

.page-content a[href] {
  color: var(--primary);
}

.page-content a[href]:hover {
  color: var(--primary-light);
}

.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.contact-form .cta-btn {
  margin-top: 0.5rem;
  cursor: pointer;
  border: none;
}

@media (max-width: 900px) {
  .container {
    padding: 0 1rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text .hero-title,
  .hero-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-links {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 120px;
  }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr;
  }

  .feature-inner-reverse {
    direction: ltr;
  }

  .feature-content {
    padding: 0;
    order: 1;
  }

  .feature-image-wrap {
    order: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .feature-title {
    text-align: center;
  }

  .feature-lead,
  .feature-text {
    text-align: center;
  }

  .feature-content .cta-btn {
    display: block;
    text-align: center;
  }

  .hero-blob {
    width: 140px;
    height: 140px;
  }

  .play-section {
    padding: 3rem 0;
  }

  .play-head {
    margin-bottom: 2rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .games-showcase .games-grid .bento-card {
    min-height: 180px;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    grid-template-areas:
      "slot slot"
      "blackjack roulette"
      "texas craps"
      "baccarat baccarat";
  }

  .bento-grid .bento-card:nth-child(1) { grid-area: slot; }
  .bento-grid .bento-card:nth-child(2) { grid-area: blackjack; }
  .bento-grid .bento-card:nth-child(3) { grid-area: roulette; }
  .bento-grid .bento-card:nth-child(4) { grid-area: texas; }
  .bento-grid .bento-card:nth-child(5) { grid-area: craps; }
  .bento-grid .bento-card:nth-child(6) { grid-area: baccarat; }

  .bento-card {
    min-height: 120px;
    padding: 1.25rem;
  }

  .bento-large {
    min-height: 130px;
  }

  .how-section,
  .about-teaser {
    padding: 2.5rem 0;
  }

  .pillars-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-teaser-aside {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .about-teaser-card {
    flex: 1 1 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.75rem 1rem;
    flex-wrap: nowrap;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0;
    gap: 0;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .header.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.875rem 1.25rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .logo-img {
    height: 2.25rem;
    max-height: 40px;
  }

  .hero,
  .hero-split {
    padding: 2.5rem 0 3rem;
  }

  .hero-text .hero-title {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .cta-btn {
    text-align: center;
    padding: 0.875rem 1.5rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-links {
    justify-content: center;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .games-showcase .games-grid .bento-card {
    min-height: 170px;
  }

  .games-hero {
    padding: 2.5rem 0;
  }

  .games-hero-title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }

  .club-perks-list {
    gap: 1rem 1.5rem;
  }

  .club-perks-list li {
    font-size: 0.85rem;
  }

  .club-how-steps {
    gap: 0.875rem;
  }

  .club-step {
    padding: 1rem 1.25rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: unset;
    gap: 0.875rem;
  }

  .bento-grid .bento-card:nth-child(1),
  .bento-grid .bento-card:nth-child(2),
  .bento-grid .bento-card:nth-child(3),
  .bento-grid .bento-card:nth-child(4),
  .bento-grid .bento-card:nth-child(5),
  .bento-grid .bento-card:nth-child(6) {
    grid-area: unset;
  }

  .bento-card {
    min-height: 100px;
    padding: 1.25rem 1rem;
  }

  .bento-large {
    min-height: 110px;
  }

  .bento-icon {
    width: 52px;
    height: 40px;
  }

  .bento-content h3 {
    font-size: 1rem;
  }

  .play-title {
    font-size: 1.35rem;
  }

  .play-intro {
    font-size: 0.9rem;
  }

  .how-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .how-step {
    padding: 1.25rem 1rem;
  }

  .pillars {
    padding: 2rem 0;
  }

  .pillars-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar {
    padding: 0.75rem;
  }

  .responsible-bar .container p {
    font-size: 0.9rem;
  }

  .legal-strip p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .footer {
    padding: 1.5rem 0;
  }

  .footer-nav {
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-content {
    padding: 2rem 0 3rem;
  }

  .page-content h1 {
    font-size: 1.5rem;
  }

  .contact-form .cta-btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-text .hero-title {
    font-size: 1.35rem;
  }

  .hero-note {
    font-size: 0.75rem;
  }

  .games-hero {
    padding: 2rem 0;
  }

  .games-hero-title {
    font-size: 1.75rem;
  }

  .games-showcase .games-grid .bento-card {
    min-height: 160px;
    padding: 1.25rem;
  }

  .games-showcase .games-grid .bento-content h3 {
    font-size: 1.2rem;
  }

  .club-badge {
    letter-spacing: 0.2em;
  }

  .club-perks-list {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .club-step {
    padding: 1rem 1.25rem;
  }

  .club-step-num {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .play-section {
    padding: 2.5rem 0;
  }

  .play-head {
    margin-bottom: 1.5rem;
  }

  .bento-card {
    min-height: 90px;
    padding: 1rem;
  }

  .how-section {
    padding: 2rem 0;
  }

  .how-num {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .about-teaser {
    padding: 2rem 0;
  }

  .about-teaser-title {
    font-size: 1.25rem;
  }

  .about-teaser-content p {
    font-size: 0.9rem;
  }

  .about-teaser-content .cta-btn {
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
  }

  .about-teaser-card {
    flex: 1 1 100%;
  }

  .legal-strip {
    padding: 0.875rem 0;
  }

  .legal-strip p {
    font-size: 0.7rem;
    padding: 0 0.25rem;
  }

  .disclaimer-inner p {
    font-size: 0.85rem;
  }
}
