/* ==========================================================================
   FrogAI Native Gaming Platform - Official Commercial Portal Stylesheet
   Design Philosophy: Deep Cyber Space / Esports Tech / Neon Gradients
   ========================================================================== */

:root {
  --bg-main: #06090F;
  --bg-card: rgba(13, 20, 32, 0.75);
  --bg-card-hover: rgba(18, 28, 45, 0.9);
  --bg-glass: rgba(15, 23, 42, 0.65);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 242, 254, 0.4);
  --border-emerald: rgba(56, 239, 125, 0.35);

  --primary-cyan: #00F2FE;
  --primary-blue: #4FACFE;
  --primary-emerald: #38EF7D;
  --primary-purple: #9d4edd;
  --accent-gold: #f59e0b;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --grad-primary: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
  --grad-emerald: linear-gradient(135deg, #11998E 0%, #38EF7D 100%);
  --grad-purple: linear-gradient(135deg, #8A2387 0%, #E94057 50%, #F27121 100%);
  --grad-dark: linear-gradient(180deg, rgba(6,9,15,0.2) 0%, rgba(6,9,15,0.95) 100%);

  --shadow-glow-cyan: 0 0 30px rgba(0, 242, 254, 0.25);
  --shadow-glow-emerald: 0 0 30px rgba(56, 239, 125, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 242, 254, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(56, 239, 125, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(157, 78, 221, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Background Cyber Grid */
.cyber-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Header Navigation Bar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(6, 9, 15, 0.7);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(6, 9, 15, 0.92);
  border-bottom-color: rgba(0, 242, 254, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 20px rgba(56, 239, 125, 0.4);
}

.brand-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #FFF 60%, var(--primary-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(0, 242, 254, 0.15);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

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

/* Common Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--grad-primary);
  color: #040914;
  box-shadow: 0 4px 18px rgba(0, 242, 254, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
}

.btn-emerald {
  background: var(--grad-emerald);
  color: #03140C;
  box-shadow: 0 4px 18px rgba(56, 239, 125, 0.35);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 239, 125, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(56, 239, 125, 0.1);
  border: 1px solid rgba(56, 239, 125, 0.3);
  color: var(--primary-emerald);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-headline {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-headline-highlight {
  background: linear-gradient(135deg, #00F2FE 0%, #38EF7D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-subheadline {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

/* Stats Counter Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.stat-item {
  border-right: 1px solid var(--border-subtle);
  padding-right: 12px;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #FFF;
  font-family: 'SF Pro Display', -apple-system, monospace;
}

.stat-num.cyan { color: var(--primary-cyan); }
.stat-num.emerald { color: var(--primary-emerald); }
.stat-num.purple { color: #d8b4fe; }
.stat-num.gold { color: #fde047; }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Showcase Card (Right Column) */
.hero-showcase {
  position: relative;
}

.hero-artwork-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 242, 254, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow-cyan);
  background: #0D1420;
}

.hero-artwork-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.hero-artwork-frame:hover img {
  transform: scale(1.03);
}

.hero-floating-tag {
  position: absolute;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(13, 20, 32, 0.85);
  border: 1px solid var(--border-focus);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: floatAnim 4s ease-in-out infinite;
}

.floating-tag-1 {
  top: 24px;
  right: -16px;
}

.floating-tag-2 {
  bottom: 24px;
  left: -16px;
  animation-delay: 2s;
  border-color: var(--border-emerald);
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Section Common Layout
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   Games Matrix Section (#games)
   ========================================================================== */
.games-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: rgba(0, 242, 254, 0.15);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.15);
}

.game-poster-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0E1624;
}

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

.game-card:hover .game-poster-wrap img {
  transform: scale(1.05);
}

.game-badge-type {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(6, 9, 15, 0.85);
  backdrop-filter: blur(8px);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.game-badge-type.emerald { border-color: var(--primary-emerald); color: var(--primary-emerald); }
.game-badge-type.cyan { border-color: var(--primary-cyan); color: var(--primary-cyan); }
.game-badge-type.purple { border-color: var(--primary-purple); color: #d8b4fe; }

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

.game-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

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

.game-rating {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 600;
}

.game-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.game-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.game-feat-tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

.game-players-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   Creator Economy Section (#creators)
   ========================================================================== */
.creator-section {
  background: linear-gradient(180deg, transparent 0%, rgba(17, 153, 142, 0.05) 50%, transparent 100%);
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.creator-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.creator-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(56, 239, 125, 0.12);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 239, 125, 0.25);
}

.creator-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.creator-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.creator-banner-box {
  background: linear-gradient(135deg, rgba(13, 20, 32, 0.9) 0%, rgba(17, 153, 142, 0.2) 100%);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.creator-banner-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.creator-banner-info p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
}

/* ==========================================================================
   Technology Architecture Section (#technology)
   ========================================================================== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tech-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
}

.tech-card:hover {
  border-color: var(--border-focus);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.tech-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary-cyan);
  border: 1px solid rgba(0, 242, 254, 0.25);
  margin-bottom: 16px;
}

.tech-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.tech-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.tech-metrics-list {
  list-style: none;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.tech-metrics-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.tech-metrics-list li::before {
  content: '✓';
  color: var(--primary-emerald);
  font-weight: bold;
}

/* ==========================================================================
   Fast-Track 4-Step Guide (#get-started)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-num {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
  font-family: monospace;
}

.step-card:hover .step-num {
  color: var(--primary-cyan);
}

.step-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ==========================================================================
   Commercial Solutions (#enterprise)
   ========================================================================== */
.enterprise-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.enterprise-left h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.enterprise-left p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.enterprise-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}

.point-item span {
  color: var(--primary-emerald);
}

.enterprise-form {
  background: rgba(6, 9, 15, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.enterprise-form h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: #FFF;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-input:focus {
  border-color: var(--primary-cyan);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #04060A;
  padding: 70px 0 30px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

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

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.25s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Modal Dialogs (Client Download & Toast)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 7, 12, 0.85);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #0C121D;
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.modal-close-btn:hover {
  color: #FFF;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.download-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dl-btn-box {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #FFF;
  transition: all 0.25s ease;
}

.dl-btn-box:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 242, 254, 0.08);
  transform: translateY(-3px);
}

.dl-icon {
  font-size: 28px;
}

.dl-platform {
  font-size: 14px;
  font-weight: 700;
}

.dl-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* Toast Message */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0E1624;
  border: 1px solid var(--primary-emerald);
  color: #FFF;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--shadow-glow-emerald);
  z-index: 9999;
  display: none;
  animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-showcase {
    max-width: 600px;
    margin: 0 auto;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .enterprise-box {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Can be expanded to hamburger if needed */
  }
  .hero-headline {
    font-size: 34px;
  }
  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .creator-grid {
    grid-template-columns: 1fr;
  }
  .creator-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
