:root {
  --bg-dark: #090c12;
  --bg-card: #121824;
  --bg-card-hover: #192233;
  --bg-accent: #1e293b;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.35);
  
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #b45309;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #d97706 100%);
  --gold-glow: 0 0 25px rgba(245, 158, 11, 0.35);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-blue: #3b82f6;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: 'Cinzel', serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 12, 18, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo-crown {
  font-size: 24px;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
}

.logo-accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.platform-badge {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  border-radius: 6px;
}

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

.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item:hover {
  color: #fff;
}

.nav-item.highlight {
  color: var(--gold-light);
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 2px;
}

.nav-item.admin-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
}

.nav-item.admin-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 15px;
  border-radius: 10px;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.btn-gold:hover {
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-demo {
  background: #10b981;
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-demo:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: #fff;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-outline-sm {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

.btn-outline-sm:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-block {
  width: 100%;
}

/* Jackpot Ticker Bar */
.jackpot-ticker-bar {
  background: linear-gradient(90deg, #10141e 0%, #161c2b 50%, #10141e 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: 10px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.ticker-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-light);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.jackpot-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.jp-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 6px 14px;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.jp-box.tier-diamond { border-color: rgba(56, 189, 248, 0.4); }
.jp-box.tier-platinum { border-color: rgba(226, 232, 240, 0.4); }
.jp-box.tier-gold { border-color: rgba(245, 158, 11, 0.5); }
.jp-box.tier-silver { border-color: rgba(239, 68, 68, 0.4); }
.jp-box.tier-bronze { border-color: rgba(234, 88, 12, 0.4); }
.jp-box.tier-iron { border-color: rgba(148, 163, 184, 0.3); }

.jp-tier-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.tier-diamond .jp-tier-label { color: #38bdf8; }
.tier-platinum .jp-tier-label { color: #e2e8f0; }
.tier-gold .jp-tier-label { color: var(--gold-light); }
.tier-silver .jp-tier-label { color: #f87171; }
.tier-bronze .jp-tier-label { color: #fb923c; }

.jp-value {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(30, 41, 59, 0.5) 0%, rgba(9, 12, 18, 1) 75%);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

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

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  background: rgba(18, 24, 36, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 800px;
  margin: 0 auto;
}

.metric-item {
  text-align: center;
}

.metric-val {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
}

/* Games Showcase Section */
.games-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  background: #0d111a;
}

.section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-sub {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 800;
}

.catalog-header-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.catalog-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  gap: 6px;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tab-btn .tab-count {
  font-size: 11px;
  opacity: 0.75;
  background: rgba(255, 255, 255, 0.1);
  padding: 1px 6px;
  border-radius: 10px;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--bg-card-hover);
  color: #fff;
}

.tab-btn.active {
  background: rgba(245, 158, 11, 0.18);
  color: var(--gold-light);
  border-color: rgba(245, 158, 11, 0.4);
}

.tab-btn.active .tab-count {
  background: rgba(245, 158, 11, 0.35);
  color: #fff;
}

.catalog-search-box {
  position: relative;
  min-width: 250px;
  flex: 1;
  max-width: 320px;
}

.catalog-search-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px 16px 8px 36px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: all 0.2s;
}

.catalog-search-input:focus {
  border-color: var(--gold-primary);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.catalog-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
}

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

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.card-thumb {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle, #251e18 0%, #0f0c0a 100%);
}

.card-thumb-backdrop {
  position: absolute;
  inset: -10px;
  background-size: cover;
  background-position: center;
  filter: blur(16px) brightness(0.35);
  transform: scale(1.15);
  pointer-events: none;
}

.card-thumb.hot-bg {
  background: radial-gradient(circle, #3d140e 0%, #150604 100%);
}

.card-thumb.green-bg {
  background: radial-gradient(circle, #0e3d1a 0%, #041508 100%);
}

.card-thumb.crash-bg {
  background: radial-gradient(circle, #102a45 0%, #07121f 100%);
}

.game-cover-banner {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.7));
}

.game-card:hover .game-cover-banner {
  transform: scale(1.08);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.badge {
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-hot { background: #dc2626; color: #fff; }
.badge-classic { background: #16a34a; color: #fff; }
.badge-fast { background: #2563eb; color: #fff; }
.badge-egt { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.badge-rtp { background: rgba(245, 158, 11, 0.2); color: var(--gold-light); border: 1px solid rgba(245, 158, 11, 0.4); }
.badge-provably { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.4); }
.badge-onex { background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%); color: #fff; font-weight: 700; box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4); }

.thumb-inner {
  text-align: center;
  transition: transform 0.3s;
}

.game-card:hover .thumb-inner {
  transform: scale(1.08);
}

.game-logo-img {
  max-width: 240px;
  max-height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
}

.plane-hero-icon {
  font-size: 64px;
  filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.6));
}

.crash-multi-tag {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 800;
  color: #38bdf8;
  margin-top: 6px;
}

.reels-preview-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
  font-size: 22px;
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 12, 18, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.25s;
  padding: 20px;
}

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

.play-icon {
  font-size: 11px;
}

.card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.game-name {
  font-size: 20px;
  font-weight: 700;
}

.game-prov {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

.game-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.game-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--gold-light);
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

/* B2B Integration Section */
.b2b-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 10%, rgba(20, 26, 38, 0.6) 0%, rgba(9, 12, 18, 1) 90%);
  border-top: 1px solid var(--border-color);
}

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

.b2b-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.feat-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-card code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  color: var(--gold-light);
  font-size: 12px;
}

.arch-box {
  background: #111622;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.arch-content h3 {
  font-family: var(--font-title);
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.arch-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.code-snippet {
  background: #090c12;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.code-method {
  color: #10b981;
  font-weight: 700;
  margin-right: 8px;
}

.code-url {
  color: var(--gold-light);
}

.code-snippet pre {
  margin-top: 12px;
  color: #e2e8f0;
}

.arch-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Modal Windows */
.modal-backdrop, .game-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.is-open, .game-modal-backdrop.is-open {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  cursor: pointer;
}

.modal-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.modal-header h2 {
  font-size: 22px;
  margin: 6px 0 8px;
}

.modal-header p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
}

.modal-form .form-group {
  margin-bottom: 16px;
}

.modal-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.modal-form input, .modal-form select {
  width: 100%;
  padding: 10px 14px;
  background: #090c12;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}

.modal-form input:focus, .modal-form select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.form-success-msg {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.form-success-msg h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent-green);
}

.form-success-msg p {
  color: var(--text-muted);
  font-size: 14px;
}

.form-success-msg code {
  background: #000;
  padding: 2px 6px;
  color: var(--gold-light);
  border-radius: 4px;
}

/* Game Modal Viewport Simulator */
.game-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 0;
}

.game-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.game-modal-card {
  background: #080a0f;
  border: none;
  border-radius: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: none;
}

.game-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background: #0c0f17;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 16px;
  z-index: 10;
}

.game-modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}

.game-modal-tag {
  font-size: 10px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
}

.viewport-presets {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 6px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.vp-btn .vp-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

.vp-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.vp-btn.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(245, 158, 11, 0.1));
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.vp-btn.fs-btn {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  margin-left: 4px;
  padding-left: 14px;
  color: #cbd5e1;
}

.vp-btn.fs-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

.btn-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-icon.modal-close {
  font-size: 22px;
}

.game-frame-container {
  flex: 1;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1), border 0.3s, border-radius 0.3s;
}

/* Viewport simulation styling */
.game-frame-container.vp-mobile-p #game-iframe {
  width: 420px;
  height: 860px;
  max-height: 92%;
  border: 3px solid #334155;
  border-radius: 36px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

.game-frame-container.vp-mobile-l #game-iframe {
  width: 900px;
  height: 460px;
  max-height: 92%;
  border: 3px solid #334155;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* Footer */
.site-footer {
  background: #06080d;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 40px;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-sub {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.footer-legal {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .hero-title { font-size: 32px; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero-metrics { flex-wrap: wrap; gap: 16px; }
  .metric-divider { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 26px; }
  .footer-container { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .jackpot-grid { flex-wrap: wrap; }
}
