/* ============================================================
   LuckyVibees — Site Stylesheet — Jungle Light Theme
   Prefix: lvb-
   Colors: Jungle Green (#2ECC71), Emerald (#27AE60),
           Light Mint (#F0FFF4), Warm Cream (#FFF8F0),
           Coral (#FF6B6B), Sunny Yellow (#F7DC6F),
           Sky Blue (#85C1E9), Passion Purple (#BB8FCE)
   ============================================================ */

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

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #FFF8F0;
  color: #2C3E50;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: #27AE60; text-decoration: none; transition: color 0.2s; }
a:hover { color: #2ECC71; }

img { max-width: 100%; height: auto; display: block; }

/* --- DECORATIVE JUNGLE BACKGROUND --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(46,204,113,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(133,193,233,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(247,220,111,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.lvb-main { position: relative; z-index: 1; flex: 1; }

/* --- HEADER --- */
.lvb-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 204, 113, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(46, 204, 113, 0.06);
}

.lvb-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.lvb-logo-link {
  flex-shrink: 0;
  display: inline-block;
  animation: lvb-logo-float 3s ease-in-out infinite;
}

@keyframes lvb-logo-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.02); }
}

.lvb-logo { display: block; }

/* Hamburger toggle */
.lvb-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
}

.lvb-menu-bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #2C3E50;
  border-radius: 3px;
  transition: all 0.3s;
}

.lvb-menu-toggle--active .lvb-menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.lvb-menu-toggle--active .lvb-menu-bar:nth-child(2) {
  opacity: 0;
}

.lvb-menu-toggle--active .lvb-menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation overlay */
.lvb-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
}

.lvb-nav-overlay--visible {
  display: block;
  opacity: 1;
}

/* Dropdown navigation */
.lvb-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #FFF;
  box-shadow: -5px 0 30px rgba(0,0,0,0.08);
  z-index: 99;
  transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.lvb-nav--open {
  right: 0;
}

.lvb-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lvb-nav-link {
  display: block;
  padding: 0.85rem 1rem;
  color: #2C3E50;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s;
}

.lvb-nav-link:hover,
.lvb-nav-active {
  background: rgba(46, 204, 113, 0.08);
  color: #27AE60;
}

.lvb-nav-active { font-weight: 700; }

.lvb-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #7F8C8D;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.lvb-nav-close:hover {
  background: rgba(0,0,0,0.05);
  color: #2C3E50;
}

/* --- MAIN --- */
.lvb-main { flex: 1; }

/* --- BUTTONS --- */
.lvb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.lvb-btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.lvb-btn-md { padding: 0.75rem 1.8rem; font-size: 1rem; }
.lvb-btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

.lvb-btn-primary {
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #FFF;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.25);
}

.lvb-btn-primary:hover {
  background: linear-gradient(135deg, #27AE60, #1E8449);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.35);
}

.lvb-btn-secondary {
  background: rgba(46, 204, 113, 0.08);
  color: #27AE60;
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.lvb-btn-secondary:hover {
  background: rgba(46, 204, 113, 0.15);
  border-color: #2ECC71;
}

.lvb-btn-gold {
  background: linear-gradient(135deg, #F7DC6F, #F1C40F);
  color: #2C3E50;
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.lvb-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(241, 196, 15, 0.4);
}

.lvb-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* --- HERO SECTION --- */
.lvb-games-hero {
  background: linear-gradient(135deg, #F0FFF4 0%, #E8F8F0 30%, #FFF8F0 100%);
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(46, 204, 113, 0.08);
  position: relative;
  overflow: hidden;
}

/* Jungle decorative leaves in hero */
.lvb-games-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M40 40 Q60 10 80 30 Q100 50 70 70 Q40 90 40 40Z' fill='%232ECC71' opacity='0.04'/%3E%3C/svg%3E") repeat;
  background-size: 120px 120px;
  pointer-events: none;
}

.lvb-games-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: lvb-hero-fade-up 0.8s ease-out;
}

@keyframes lvb-hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.lvb-games-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #27AE60, #2ECC71, #1E8449);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  animation: lvb-hero-title 1s ease-out;
}

@keyframes lvb-hero-title {
  from { opacity: 0; transform: translateY(20px) scale(0.95); letter-spacing: -4px; }
  to { opacity: 1; transform: translateY(0) scale(1); letter-spacing: -0.5px; }
}

.lvb-games-hero p {
  font-size: 1.15rem;
  color: #7F8C8D;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  animation: lvb-hero-fade-up 0.8s ease-out 0.2s both;
}

.lvb-hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: lvb-hero-fade-up 0.8s ease-out 0.4s both;
}

.lvb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.lvb-hero-badge--green {
  background: rgba(46, 204, 113, 0.12);
  color: #27AE60;
}

.lvb-hero-badge--coral {
  background: rgba(255, 107, 107, 0.12);
  color: #E74C3C;
}

.lvb-hero-badge--gold {
  background: rgba(241, 196, 15, 0.15);
  color: #D4AC0D;
}

.lvb-hero-badge--blue {
  background: rgba(133, 193, 233, 0.15);
  color: #2E86C1;
}

/* Floating leaf particles for hero animation */
.lvb-hero-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  font-size: 2rem;
  z-index: 0;
  animation: lvb-leaf-drift linear infinite;
}

@keyframes lvb-leaf-drift {
  0% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  10% { opacity: 0.1; }
  50% { opacity: 0.08; }
  90% { opacity: 0.05; }
  100% { transform: translateY(-120px) rotate(180deg) scale(0.5); opacity: 0; }
}

/* ---- SECTION CONTAINER ---- */
.lvb-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.lvb-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #27AE60;
}

.lvb-section-sub {
  text-align: center;
  color: #7F8C8D;
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   GAME BLOCKS — Shared layout
   ============================================================ */
.lvb-game-block {
  background: #FFF;
  border: 1px solid rgba(46, 204, 113, 0.12);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 30px rgba(46, 204, 113, 0.06), 0 1px 8px rgba(0,0,0,0.03);
}

.lvb-game-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lvb-game-block-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
}

.lvb-game-block-header .lvb-game-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  background: rgba(187, 143, 206, 0.1);
  color: #8E44AD;
  font-weight: 600;
}

/* ============================================================
   LUCKY LANES — 5x3 Reel Board
   ============================================================ */
.lvb-lanes-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Credits panel */
.lvb-credits-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(46, 204, 113, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(46, 204, 113, 0.1);
  width: 100%;
  max-width: 600px;
}

.lvb-credits-item { text-align: center; }

.lvb-credits-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #95A5A6;
  margin-bottom: 0.2rem;
}

.lvb-credits-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2C3E50;
}

.lvb-credits-value--win { color: #2ECC71; }
.lvb-credits-value--balance { color: #F39C12; }

/* Reel Board */
.lvb-lanes-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 14px;
  background: linear-gradient(145deg, #F8FFF9, #F0FFF4);
  border-radius: 18px;
  border: 2px solid rgba(46, 204, 113, 0.15);
  max-width: 480px;
  width: 100%;
  aspect-ratio: 5 / 3;
}

.lvb-lanes-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  border: 1px solid rgba(46, 204, 113, 0.06);
  transition: all 0.3s;
  aspect-ratio: 1;
  padding: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.lvb-lanes-cell img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.lvb-lanes-cell--win {
  border-color: #F7DC6F;
  background: rgba(247, 220, 111, 0.15);
  animation: lvb-pulse-win 0.6s ease-in-out;
}

@keyframes lvb-pulse-win {
  0%, 100% { box-shadow: 0 0 0 rgba(241, 196, 15, 0); }
  50% { box-shadow: 0 0 20px rgba(241, 196, 15, 0.3); }
}

.lvb-lanes-cell--spin {
  animation: lvb-spin-cell 0.15s ease-in-out;
}

@keyframes lvb-spin-cell {
  0% { transform: scaleY(0.3); opacity: 0.5; }
  50% { transform: scaleY(1.2); opacity: 1; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* Controls row */
.lvb-lanes-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.lvb-stake-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lvb-stake-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(46, 204, 113, 0.15);
  background: #FFF;
  color: #2C3E50;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.lvb-stake-btn:hover {
  background: rgba(46, 204, 113, 0.08);
  border-color: #2ECC71;
}

.lvb-stake-display {
  padding: 0.35rem 0.85rem;
  min-width: 50px;
  text-align: center;
  font-weight: 700;
  color: #F39C12;
}

/* Result message */
.lvb-lanes-result {
  text-align: center;
  font-size: 1rem;
  min-height: 1.6rem;
  color: #7F8C8D;
}

.lvb-lanes-result--win {
  color: #2ECC71;
  font-weight: 600;
}

.lvb-lanes-result--big {
  color: #F39C12;
  font-weight: 700;
  font-size: 1.15rem;
}

.lvb-lanes-result--grand {
  color: #E74C3C;
  font-weight: 800;
  font-size: 1.3rem;
  animation: lvb-glow-text 1s ease-in-out infinite alternate;
}

@keyframes lvb-glow-text {
  from { text-shadow: 0 0 5px rgba(231,76,60,0.2); }
  to { text-shadow: 0 0 20px rgba(231,76,60,0.4); }
}

/* Pay table */
.lvb-paytable {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.2rem;
  padding: 0.75rem 1rem;
  background: rgba(46, 204, 113, 0.03);
  border-radius: 12px;
  max-width: 520px;
  width: 100%;
}

.lvb-paytable-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #7F8C8D;
}

.lvb-paytable-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: contain;
}

.lvb-paytable-item strong { color: #2C3E50; }

/* ============================================================
   MEMORY VIBES — 4x4 Memory Game
   ============================================================ */
.lvb-memory-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.lvb-memory-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(187, 143, 206, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(187, 143, 206, 0.1);
  width: 100%;
  max-width: 500px;
}

.lvb-memory-stat { text-align: center; }

.lvb-memory-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #95A5A6;
  margin-bottom: 0.2rem;
}

.lvb-memory-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C3E50;
}

.lvb-memory-stat-value--pairs { color: #8E44AD; }
.lvb-memory-stat-value--moves { color: #2ECC71; }

/* Board */
.lvb-memory-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px;
  background: linear-gradient(145deg, #F8F0FF, #F5F0FF);
  border-radius: 18px;
  border: 2px solid rgba(187, 143, 206, 0.12);
  max-width: 440px;
  width: 100%;
}

.lvb-memory-card {
  aspect-ratio: 1;
  border-radius: 14px;
  cursor: pointer;
  perspective: 600px;
  transition: transform 0.15s;
}

.lvb-memory-card:hover:not(.lvb-memory-card--matched):not(.lvb-memory-card--flipped) {
  transform: translateY(-3px);
}

.lvb-memory-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.4s ease;
  transform-style: preserve-3d;
}

.lvb-memory-card--flipped .lvb-memory-card-inner,
.lvb-memory-card--matched .lvb-memory-card-inner {
  transform: rotateY(180deg);
}

.lvb-memory-card-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lvb-memory-card-front {
  background: linear-gradient(145deg, #A8E6CF, #7EC8A8);
  border: 1px solid rgba(46, 204, 113, 0.2);
}

.lvb-memory-card-front::after {
  content: '?';
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.lvb-memory-card-back {
  background: #FFF;
  border: 1px solid rgba(187, 143, 206, 0.2);
  transform: rotateY(180deg);
  padding: 6px;
}

.lvb-memory-card-back img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.lvb-memory-card--matched { cursor: default; }

.lvb-memory-card--matched .lvb-memory-card-face {
  border-color: #2ECC71;
}

.lvb-memory-card--matched .lvb-memory-card-back {
  background: rgba(46, 204, 113, 0.05);
  animation: lvb-match-glow 1s ease-in-out;
}

@keyframes lvb-match-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(46, 204, 113, 0); }
  50% { box-shadow: 0 0 25px rgba(46, 204, 113, 0.2); }
}

.lvb-memory-card--shake {
  animation: lvb-shake 0.4s ease-in-out;
}

@keyframes lvb-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

/* Memory controls */
.lvb-memory-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.lvb-memory-msg {
  text-align: center;
  font-size: 1rem;
  min-height: 1.6rem;
  color: #7F8C8D;
}

.lvb-memory-msg--match {
  color: #2ECC71;
  font-weight: 600;
}

.lvb-memory-msg--complete {
  color: #F39C12;
  font-weight: 700;
  font-size: 1.15rem;
}

/* ============================================================
   INFO CARDS
   ============================================================ */
.lvb-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.lvb-info-card {
  background: #FFF;
  border: 1px solid rgba(46, 204, 113, 0.08);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(46, 204, 113, 0.04);
}

.lvb-info-card:hover {
  border-color: rgba(46, 204, 113, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.08);
}

.lvb-info-card h3 {
  font-size: 1.15rem;
  color: #27AE60;
  margin-bottom: 0.5rem;
}

.lvb-info-card p {
  font-size: 0.9rem;
  color: #7F8C8D;
  line-height: 1.7;
}

/* ============================================================
   JUNGLE ICON GRID (new homepage sections)
   ============================================================ */
.lvb-jungle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 1rem;
}

.lvb-jungle-item {
  padding: 1.5rem;
}

.lvb-jungle-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.lvb-jungle-item h3 {
  font-size: 1.1rem;
  color: #2C3E50;
  margin-bottom: 0.4rem;
}

.lvb-jungle-item p {
  font-size: 0.85rem;
  color: #7F8C8D;
  line-height: 1.6;
}

/* Stats bar */
.lvb-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 4rem;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, #F0FFF4, #E8F8F0);
  border-radius: 24px;
  margin: 1rem 0;
}

.lvb-stat-item { text-align: center; }

.lvb-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #27AE60;
  line-height: 1;
}

.lvb-stat-label {
  font-size: 0.85rem;
  color: #7F8C8D;
  margin-top: 0.3rem;
}

/* Steps / timeline */
.lvb-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: lvb-step;
  margin-top: 1rem;
}

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

.lvb-step::before {
  counter-increment: lvb-step;
  content: counter(lvb-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: rgba(46, 204, 113, 0.1);
  color: #27AE60;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
}

.lvb-step h3 {
  font-size: 1rem;
  color: #2C3E50;
  margin-bottom: 0.3rem;
}

.lvb-step p {
  font-size: 0.85rem;
  color: #7F8C8D;
  line-height: 1.5;
}

/* ============================================================
   FOOTER — Jungle Styled
   ============================================================ */
.lvb-footer {
  background: linear-gradient(135deg, #F0FFF4, #E8F8F0, #FFF8F0);
  border-top: 2px solid rgba(46, 204, 113, 0.08);
  padding: 3.5rem 1.5rem 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.lvb-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2ECC71, #F7DC6F, #FF6B6B, #BB8FCE, #85C1E9, #2ECC71);
  background-size: 200% 100%;
  animation: lvb-rainbow 4s linear infinite;
}

@keyframes lvb-rainbow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.lvb-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lvb-footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem 3rem;
  margin-bottom: 2rem;
}

.lvb-footer-brand { max-width: 360px; }

.lvb-footer-logo { margin-bottom: 1rem; }

.lvb-footer-tagline {
  color: #7F8C8D;
  font-size: 0.9rem;
  line-height: 1.6;
}

.lvb-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.lvb-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.08);
  color: #27AE60;
  font-size: 1.1rem;
  transition: all 0.2s;
}

.lvb-footer-social a:hover {
  background: rgba(46, 204, 113, 0.2);
  transform: translateY(-2px);
}

.lvb-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lvb-footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #27AE60;
  margin-bottom: 1rem;
}

.lvb-footer-list { list-style: none; }

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

.lvb-footer-list a {
  color: #7F8C8D;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.lvb-footer-list a:hover { color: #27AE60; }

.lvb-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46, 204, 113, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.lvb-footer-age {
  color: #FF6B6B;
  font-size: 0.8rem;
  font-weight: 500;
}

.lvb-footer-copy {
  color: #95A5A6;
  font-size: 0.8rem;
}

.lvb-footer-copy a { color: #95A5A6; }
.lvb-footer-copy a:hover { color: #27AE60; }

.lvb-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lvb-footer-bottom-links a {
  color: #95A5A6;
  font-size: 0.8rem;
}

.lvb-footer-bottom-links a:hover { color: #27AE60; }

/* ============================================================
   DIVIDER
   ============================================================ */
.lvb-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
}

.lvb-divider-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,204,113,0.2), transparent);
}

.lvb-divider-icon { font-size: 1.2rem; color: #2ECC71; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .lvb-menu-toggle { display: flex; }

  .lvb-header-inner { padding: 0.75rem 1rem; }

  .lvb-games-hero { padding: 3rem 1rem 2.5rem; }
  .lvb-games-hero h1 { font-size: 1.8rem; }
  .lvb-games-hero p { font-size: 1rem; }

  .lvb-section { padding: 2rem 1rem; }
  .lvb-section-title { font-size: 1.4rem; }

  .lvb-game-block { padding: 1.25rem; }

  .lvb-credits-panel { gap: 1rem 1.5rem; padding: 0.75rem 1rem; }

  .lvb-lanes-board { max-width: 100%; gap: 4px; padding: 8px; }

  .lvb-memory-board { max-width: 100%; gap: 6px; padding: 8px; }

  .lvb-paytable-item { font-size: 0.7rem; }

  .lvb-stats-bar { gap: 1.5rem 2rem; padding: 1.5rem 1rem; }
  .lvb-stat-number { font-size: 1.6rem; }

  .lvb-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .lvb-footer-links { grid-template-columns: repeat(2, 1fr); }
  .lvb-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .lvb-lanes-board { gap: 3px; padding: 6px; }
  .lvb-lanes-cell { border-radius: 8px; }
  .lvb-memory-board { gap: 4px; padding: 6px; }
  .lvb-memory-card { border-radius: 10px; }
  .lvb-memory-card-face { border-radius: 10px; }
  .lvb-footer-links { grid-template-columns: 1fr; }
  .lvb-nav { width: 260px; right: -280px; }
}
