/* Gamiro Design System - Complete Clean Version */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap");
@import url("animations.css");

:root {
  /* Colors - Updated to Black Theme */
  --bg-dark: #050505;
  --bg-card: rgba(20, 20, 20, 0.6);
  --text-main: #ffffff;
  --text-muted: #cccccc;
  --text-muted-opacity: 0.75;

  /* Brand Colors - Preserved from Original */
  --highlight-color: #e48871;
  --primary: #7000ff;
  --primary-glow: rgba(112, 0, 255, 0.5);
  --secondary: #00f0ff;
  --secondary-glow: rgba(0, 240, 255, 0.5);

  /* HUD Specific Colors */
  --hud-bg: rgba(52, 56, 61, 0.85);
  --hud-border: #a4e9c9;
  --hud-accent-lime: #d8fb68;
  --hud-accent-salmon: #dd8973;

  --gradient-main: linear-gradient(135deg, #d8fb68 0%, #00f0ff 100%);

  /* Spacing & Layout */
  --container-width: 1440px;
  --header-height: 100px;
  --header-height-scrolled: 85px;

  /* Effects */
  --glass: blur(12px);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Scroll Reveal Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

#splash-screen img {
  max-width: 200px;
  width: 100%;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* --- UTILITIES --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--gradient-main);
  color: #050505;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(234, 241, 7, 0.3);
  margin-left: 60px;
  margin-top: 15px;
}

@media (max-width: 1200px) {
  .btn {
    margin-left: 20px;
    padding: 10px 24px;
  }
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 35px rgba(234, 241, 7, 0.6);
}

.highlight-text {
  color: var(--highlight-color);
}

/* Glassmorphism Cards */
.glass-card,
.bento-card,
.pricing-card,
.step-card,
.achievement-card,
.faq-card {
  background: rgba(0, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(64, 224, 208, 0.2);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.glass-card:hover,
.bento-card:hover,
.pricing-card:hover,
.step-card:hover,
.achievement-card:hover,
.faq-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.1);
  background: rgba(0, 255, 255, 0.12) !important;
}

.gradient-text {
  background: linear-gradient(135deg, #d8fb68 0%, #00f0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- HEADER --- */
header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Slower, smoother transition */
}

header.scrolled {
  height: 70px;
  width: 90%;
  max-width: 1200px;
  /* Narrower than 1500px initial */
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  /* Glassy/Transparent */
  backdrop-filter: blur(16px);
  /* Strong blur */
  /* Strong blur */
  /* border: 1px solid rgba(255, 255, 255, 0.3); Removed in favor of SVG border */
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  /* overflow: hidden; Removed to allow SVG stroke to sit nicely if needed, though SVG is internal */
  border: none;
  /* SQL border replaces CSS border */
}

/* SVG Border Styles */
.header-border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Behind content but readable */
  opacity: 0;
  transition: opacity 0.3s ease;
}

header.scrolled .header-border-svg {
  opacity: 1;
}

.header-border-svg rect {
  fill: none;
  stroke: url(#border-gradient);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: calc(100 - var(--scroll-val, 0));
  transition: stroke-dashoffset 0.1s linear;
  /* Smooth update */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 60px;
}

.logo img {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

/* Logo always stays the same */
.logo-scrolled-img {
  display: none;
}

.hero-text {
  flex: 1;
  width: 100%;
  max-width: 100%;
  /* Allow full width */
  position: relative;
  z-index: 2;
}

.hero-title {
  white-space: nowrap;
  /* Force single line */
  width: 100%;
}

/* Ensure line-wrappers behave */
.line-wrapper {
  display: inline-block;
  /* width: 100%; Removed to prevent typewriter overshoot */
}

.nav-links {
  display: flex;
  gap: 120px;
  /* Increased from 70px */
  list-style: none;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 5px;
  transition: gap 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Animate gap */
}

.nav-links a {
  color: #f7f7f9;
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
}

header.scrolled .nav-links {
  display: flex;
  gap: 50px;
  /* Narrower gap for scrolled state */
  /* Keep visible */
}

header.scrolled .btn {
  margin-top: 0;
}

.nav-links a:hover {
  color: var(--text-main);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* --- FLOATING ORBS --- */
.floating-orbs-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  /* Behind everything but above background */
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  /* Intense blur for "orb" look */
  opacity: 0.4;
  animation: float-orb 20s infinite ease-in-out alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #f7f7f9;
  opacity: 0.2;
  top: -100px;
  left: -100px;
  animation-duration: 25s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: #91ecca;
  bottom: -150px;
  right: -100px;
  animation-duration: 30s;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #d8fb68;
  top: 40%;
  left: 60%;
  opacity: 0.3;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes float-orb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(150px, -100px) scale(1.2);
  }

  66% {
    transform: translate(-100px, 100px) scale(0.8);
  }

  100% {
    transform: translate(50px, -50px) scale(1);
  }
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  /* changed from auto to full viewport height */
  /* padding-bottom: 200px; removed excessive padding */
  display: flex;
  align-items: center;
  /* Center visually */
  justify-content: center;
  position: relative;
  /* Reduced top padding calculation to fit better */
  padding-top: var(--header-height);
  overflow: hidden;
  box-sizing: border-box;
}

/* Adjust for smaller laptop screens */
@media (max-width: 1400px),
(max-height: 800px) {
  .hero {
    padding-top: 80px;
    /* Reduced header offset */
  }

  .hero h1 {
    font-size: 3.5rem;
    /* Reduced from 5rem */
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .hero-visual {
    width: 400px;
    height: 400px;
  }

  .hero-bolt {
    width: 220px;
  }

  .hero-shield {
    width: 110px;
  }

  .hero-cube {
    width: 90px;
  }

  .hero-coin {
    width: 80px;
  }
}


/* Abstract Background Shapes */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.1;
  border-radius: 50%;
  top: -100px;
  left: -100px;
  z-index: -1;
  animation: float 10s infinite ease-in-out;
}

/* Light Beam from Top Right for 3D Elements */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at top right,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(216, 251, 104, 0.08) 25%,
      rgba(0, 240, 255, 0.05) 50%,
      transparent 70%);
  filter: blur(60px);
  z-index: 0;
  /* Behind content but above background */
  pointer-events: none;
  opacity: 0.8;
  mix-blend-mode: screen;
  /* Natural light falloff */
  transform: translate(20%, -20%);
}




@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, 50px);
  }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  width: 100%;
  padding: 0 24px;
  /* Match .container padding */
  z-index: 1;
  gap: 40px;
}

.hero-text {
  width: 600px;
  /* Fixed width to prevent typewriter layout shifts */
  min-width: 600px;
  /* Ensure it doesn't shrink */
  flex-shrink: 0;
  /* Prevent flexbox from shrinking it */
  text-align: left;
}


.hero-badge {
  display: inline-block;
  background: rgba(20, 30, 20, 0.6);
  border: 1px solid rgba(216, 251, 104, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #edfbd0;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(216, 251, 104, 0.1);
  animation: badge-glow 3s infinite ease-in-out;
}

@keyframes badge-glow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(216, 251, 104, 0.1);
    border-color: rgba(216, 251, 104, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(216, 251, 104, 0.2);
    border-color: rgba(216, 251, 104, 0.6);
  }
}

.hero h1 {
  font-size: 4rem;
  /* Reduced from 5rem */
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  color: #f7f7f9;
}

.highlight-text {
  background: linear-gradient(120deg, #d8fb68, #91ecca, #d8fb68);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-border 3s ease infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero p {
  font-size: 1.2rem;
  /* Reduced from 1.4rem */
  color: #f7f7f9;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 32px;
}

.hero-buttons .btn {
  margin: 0;
}

.btn-primary {
  background: var(--gradient-main);
  color: #050505;
}

.btn-waitlist {
  background: var(--gradient-main);
  color: #050505;
  box-shadow: 0 0 20px rgba(234, 241, 7, 0.3);
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse-button 3s infinite ease-in-out;
}

@keyframes pulse-button {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(234, 241, 7, 0.3);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(234, 241, 7, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(234, 241, 7, 0.3);
  }
}

.btn-waitlist:hover {
  transform: translateY(-3px) scale(1.05);
  /* Override pulse on hover */
  animation: none;
  /* Stop pulse on hover for smoother interaction */
  box-shadow: 0 0 35px rgba(234, 241, 7, 0.6);
}

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

.btn-secondary:hover {
  background: var(--text-main);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- HERO VISUALS (Dashboard Integration) --- */
.hero-dashboard-container {
  width: 55vw;
  max-width: 900px;
  aspect-ratio: 900 / 600;
  perspective: 1500px;
  /* Increased perspective for larger object */
  position: relative;
  z-index: 10;
}

.dashboard-3d-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-15deg) rotateZ(2deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.dashboard-3d-wrapper:hover {
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dashboard-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  pointer-events: none;
  /* Initially disabled */
}

.dashboard-3d-wrapper.active .dashboard-frame {
  pointer-events: auto;
  /* Enabled when active */
}

.dashboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s ease;
  opacity: 0;
  /* Hidden by default so dashboard is visible */
}

.dashboard-overlay span {
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* Show overlay only on hover */
.dashboard-3d-wrapper:hover .dashboard-overlay {
  opacity: 1;
}

/* When active (clicked), hide overlay completely and disable pointer events on it */
.dashboard-3d-wrapper.active .dashboard-overlay {
  opacity: 0;
  pointer-events: none;
  display: none;
  /* Ensure it doesn't block iframe */
}

/* Dashboard close button */
.dashboard-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dashboard-close-btn:hover {
  background: rgba(216, 251, 104, 0.9);
  color: #0a0a0a;
  transform: rotate(90deg);
}

/* Show close button only when dashboard is active */
.dashboard-3d-wrapper.active .dashboard-close-btn {
  opacity: 1;
  visibility: visible;
}

/* Adjust responsiveness - Large Desktop */
@media (max-width: 1720px) and (min-width: 1024px) {
  .hero-dashboard-container {
    width: 45vw;
    max-width: 700px;
  }

  .hero-content {
    gap: 30px;
  }

  .hero-text {
    transform: scale(0.95);
    transform-origin: left center;
  }
}

/* Adjust responsiveness - Medium Desktop */
@media (max-width: 1400px) and (min-width: 1024px) {
  .hero-dashboard-container {
    width: 40vw;
    max-width: 550px;
  }

  .hero-text {
    transform: scale(0.85);
    transform-origin: left center;
  }
}

/* Adjust responsiveness - Smaller Desktop */
@media (max-width: 1200px) and (min-width: 1024px) {
  .hero-dashboard-container {
    width: 38vw;
    max-width: 450px;
  }

  .hero-text {
    transform: scale(0.75);
    transform-origin: left center;
  }
}

/* Hide dashboard on tablet/mobile */
@media (max-width: 1024px) {
  .hero-dashboard-container {
    display: none;
  }

  /* Center hero content when dashboard is hidden */
  .hero-content {
    justify-content: center;
  }

  .hero-text {
    text-align: center;
    width: auto;
    min-width: auto;
    max-width: 100%;
    transform: scale(1);
    transform-origin: center center;
  }

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

/* Adjust responsiveness */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

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

  .hero-visual {
    width: 100%;
    height: 400px;
    margin-top: 40px;
  }

  /* Adjust positions for mobile if needed */
  .hero-bolt {
    width: 220px;
  }
}



/* --- GAME HUD SECTION (KABOOM MINI-GAME) --- */
.game-hud-section {
  padding: 0 0 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  scroll-margin-top: 120px;
}

.game-section-copy {
  text-align: center;
  max-width: 800px;
}

.game-section-copy h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: #f7f7f9;
}

.game-sub {
  font-size: 1.1rem;
  color: #f7f7f9;
}

.game-canvas-wrapper {
  width: 95%;
  max-width: 1200px;
  /* Optimal reading width for game */
  aspect-ratio: 16 / 9;
  background: #f7f7f9;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 4px solid var(--hud-border);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure canvas fits */
#game-root {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#game-root canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.game-footer-cta {
  text-align: center;
  max-width: 800px;
  margin-top: 20px;
  animation: fadeUp 0.8s ease-out;
}

.game-footer-cta h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.game-footer-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- OLD HUD CSS REMOVED VIA REPLACEMENT --- */

.hud-container {
  width: 95%;
  max-width: 1800px;
  aspect-ratio: 16 / 9;
  /* keep cinematic ratio */
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hud-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* important: fix black bars */
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
}

/* Overlay */
.hud-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  box-sizing: border-box;
  pointer-events: none;
}

/* Panels */
.hud-panel {
  background: var(--hud-bg);
  border: 1px solid rgba(164, 233, 201, 0.3);
  padding: 15px 25px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  pointer-events: auto;
  color: #f7f7f9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hud-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  border-color: var(--hud-border);
}

/* Quest */
.hud-label {
  font-size: 0.9rem;
  /* Increased */
  color: var(--hud-accent-salmon);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hud-value {
  font-size: 1.35rem;
  /* Increased */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* XP Bar */
.xp-panel {
  min-width: 260px;
}

.xp-info {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  /* Increased */
  margin-bottom: 8px;
  font-weight: 600;
}

.xp-points {
  color: var(--hud-border);
}

/* --- READ MORE TOGGLE & REVIEW SECTION --- */
.read-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}

.read-more-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f7f7f9;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.icon-circle-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #050505;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.review-content-wrapper {
  width: 90%;
  /* Match header.scrolled width */
  max-width: 1200px;
  /* Match header.scrolled max-width */
  margin: 30px auto 0;
  /* Center it */
  overflow: hidden;
  max-height: 2000px;
  /* Arbitrary large height for transition */
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 20px;
  /* Optional: match header roundness slightly */
}

.review-content-wrapper.hidden {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

.review-content-inner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  color: #f7f7f9;
  line-height: 1.7;
}

.review-content-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #f9f9f7;
}

.review-content-inner p {
  margin-bottom: 20px;
  color: #f7f7f9;
  opacity: 0.9;
}

.review-content-inner p:last-child {
  margin-bottom: 0;
}

.xp-track {
  height: 10px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  overflow: hidden;
}

.xp-fill {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, #5ce1e6, #d8f981);
  box-shadow: 0 0 12px rgba(216, 249, 129, 0.8);
  transition: width 0.4s ease-out;
}

/* Center Stage */
.hud-center-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

/* AI Core */
.ai-core-container {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
}

.ai-core {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 10%, #ffffffaa 0, #34383d 55%, #16181c 100%);
  border-radius: 50%;
  border: 2px solid var(--hud-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(164, 233, 201, 0.6);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.ai-icon {
  width: 52px;
  opacity: 0.95;
}

.ai-ring {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 1px dashed rgba(216, 249, 129, 0.6);
  border-radius: 50%;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* AI Dialog */
.ai-dialog-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--hud-border);
  font-family: monospace;
  font-size: 1.2rem;
  /* Increased */
  min-width: 340px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
  pointer-events: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.cursor {
  animation: blink 1s infinite;
  margin-left: 2px;
  color: var(--hud-accent-lime);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.ai-log-toggle {
  background: linear-gradient(135deg, #5ce1e6, #a855f7);
  border: none;
  color: #050505;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ai-log-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(92, 225, 230, 0.7);
}

/* AI Log Panel */
.ai-log-panel {
  margin-bottom: 20px;
  background: rgba(8, 9, 11, 0.82);
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f7f7f7;
  font-size: 0.8rem;
  text-align: left;
  max-width: 420px;
  display: none;
  pointer-events: auto;
}

.ai-log-panel h4 {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.ai-log-panel ul {
  list-style: none;
  padding-left: 0;
}

.ai-log-panel li {
  margin-bottom: 4px;
}

/* Nodes */
.orbit-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  pointer-events: auto;
  margin-top: 12px;
}

.hud-node {
  width: 70px;
  /* Slightly bigger node */
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff88, #1a1c21 55%, #050608 100%);
  border: 2px solid #555;
  color: #fff;
  font-size: 2rem;
  /* Increased icon */
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* renkler: sırayla Analysis, Gamification, Prediction, Player Types, KPI, Rewards */
.hud-node:nth-child(1) {
  border-color: #38bdf8;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.7);
}

.hud-node:nth-child(2) {
  border-color: #a855f7;
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.7);
}

.hud-node:nth-child(3) {
  border-color: #f97316;
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.7);
}

.hud-node:nth-child(4) {
  border-color: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.7);
}

.hud-node:nth-child(5) {
  border-color: #eab308;
  box-shadow: 0 0 18px rgba(234, 179, 8, 0.7);
}

.hud-node:nth-child(6) {
  border-color: #fb7185;
  box-shadow: 0 0 18px rgba(251, 113, 133, 0.7);
}

.hud-node:hover {
  background: radial-gradient(circle at 30% 20%, #ffffffee, #111318 55%, #020308 100%);
  transform: translateY(-6px) scale(1.1);
}

.tooltip {
  position: absolute;
  bottom: -30px;
  font-size: 0.75rem;
  color: #f7f7f9;
  opacity: 0;
  transition: opacity 0.3s, bottom 0.3s;
  white-space: nowrap;
}

.hud-node:hover .tooltip {
  opacity: 1;
  bottom: -35px;
}

/* Bottom Controls: Step buttons */
.hud-bottom-controls {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  pointer-events: auto;
}

.hud-control {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 64, 175, 0.85));
  color: #f7f7f7;
  font-size: 1rem;
  /* Increased */
  padding: 10px 20px;
  /* Increased padding */
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.9);
}

.hud-control:nth-child(2) {
  background: linear-gradient(135deg, rgba(76, 29, 149, 0.9), rgba(220, 38, 38, 0.9));
}

.hud-control:nth-child(3) {
  background: linear-gradient(135deg, rgba(5, 46, 22, 0.9), rgba(22, 163, 74, 0.9));
}

.hud-control:hover {
  border-color: var(--hud-border);
  box-shadow: 0 0 18px rgba(164, 233, 201, 0.7);
  transform: translateY(-2px);
}

/* Info Panel */
.hud-info-panel {
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.72);
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 480px;
  pointer-events: auto;
}

.hud-info-panel h4 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  /* Increased */
  color: #ffffffeb;
}

.hud-info-panel p {
  font-size: 1.1rem;
  /* Increased */
  color: #e0f2ea;
}

/* Floating Messages */
.hud-float-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hud-float-msg {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translateX(-50%);
  color: #e0ffe2;
  font-size: 0.75rem;
  font-family: monospace;
  opacity: 0;
  animation: floatUp 3s ease-out forwards;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -40px);
  }
}

/* Confetti */
.confetti-piece {
  position: absolute;
  width: 6px;
  height: 14px;
  background: #f97316;
  opacity: 0.9;
  border-radius: 2px;
  animation: confettiFall 1.8s ease-out forwards;
}

.confetti-piece:nth-child(3n) {
  background: #22c55e;
}

.confetti-piece:nth-child(4n) {
  background: #3b82f6;
}

.confetti-piece:nth-child(5n) {
  background: #eab308;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-40px) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(80px) rotate(320deg);
    opacity: 0;
  }
}




/* --- FEATURES SECTION --- */
.features {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 32px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  background: #f0f0f5;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--primary);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.card p {
  color: #f7f7f9;
}

/* --- PRICING SECTION --- */
.pricing-section {
  padding: 100px 0;
  /* background removed to be transparent */
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.special-offer-badge {
  display: inline-block;
  background: rgba(5, 5, 5, 0.8);
  color: #d8fb68;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
  border: 1px solid rgba(216, 251, 104, 0.3);
  animation: pulse-slow 3s infinite ease-in-out;
}

@keyframes pulse-slow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 251, 104, 0.2);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px 0 rgba(216, 251, 104, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 251, 104, 0.2);
  }
}

/* Toggle Switch */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked+.slider {
  background-color: var(--primary);
}

input:checked+.slider:before {
  transform: translateX(28px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.discount-badge {
  background: #d7fb78;
  color: #050505;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-left: 8px;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  /* Reduced from 24px to make boxes wider */
  align-items: stretch;
}

.pricing-card {
  /* background handled by shared class */
  border-radius: 16px;
  padding: 32px 20px;
  /* Reduced side padding from 24px */
  position: relative;
  /* border handled by shared class */
  /* box-shadow handled by shared class */
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

/* .pricing-card:hover handled by shared class */
.pricing-card:hover {
  transform: translateY(-10px);
}

/* Popular Card */
.pricing-card.popular {
  /* Restore standard border to match others */
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  /* Ensure content is above the pseudo-border */
  background: linear-gradient(120deg, #d8fb68, #91ecca, #d8fb68);
  background-size: 400% 400%;
  animation: shine-border 4s ease infinite;
  /* Ensure generic background matches */
  background-clip: padding-box;
  /* Prevent bg bleeding */
  color: #050505;
}

/* Shiny Moving Gradient Border */
/* Shiny Moving Gradient Border (Thin Stroke) */
.pricing-card.popular::before {
  content: "";
  position: absolute;
  inset: -2px;
  /* Thin stroke width */
  z-index: -1;
  border-radius: 18px;
  /* 16px radius + 2px stroke */
  background: linear-gradient(120deg, #d8fb68, #91ecca, #d8fb68);
  background-size: 400% 400%;
  animation: shine-border 4s ease infinite;
}

@keyframes shine-border {
  0% {
    background-position: 100% 50%;
  }

  50% {
    background-position: 50% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #d8fb68, #91ecca, #d8fb68);
  background-size: 400% 400%;
  animation: shine-border 4s linear infinite;
  color: #050505;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  /* Force one line */
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Card Content */
.plan-header {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.original-price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1rem;
}

.discount-tag {
  background: rgba(52, 168, 83, 0.1);
  color: #34a853;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(52, 168, 83, 0.2);
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: -10px;
}

.price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
}

.period {
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 8px;
  margin-left: 4px;
}

.price-custom {
  font-size: 2.5rem;
  font-weight: 700;
}


.annual-total {
  color: #34383d;
  transition: opacity 0.3s ease;
}

.users-limit {
  font-size: 0.9rem;
  color: #34383d;
}

/* Buttons */
.btn-pricing {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  background: #f0f0f5;
  color: #050505;
  font-weight: 600;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-pricing:hover {
  background: #e0e0e5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Removed distinct color for popular button as requested */
/* .btn-popular styles removed */

/* 
.btn-popular:hover {
  background: #5a00cc;
  box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
} 
*/

/* Features */
.feature-list {
  list-style: none;
  font-size: 0.9rem;
  text-align: left;
  font-weight: 600;
}

/* Pricing Card Scoped Feature List */
.pricing-card .feature-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  /* Changed from center to handle multi-line */
  gap: 8px;
  color: #34383d;
}

.pricing-card .feature-sub {
  display: block;
  font-size: 0.85em;
  color: #34383d;
  margin-top: 2px;
  opacity: 0.7;
}

.limitation-list {
  list-style: none;
  font-size: 0.9rem;
  text-align: left;
}

.limitation-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #f7f7f9;
}

.feature-list li.disabled {
  color: #ccc;
  text-decoration: line-through;
}

.check {
  color: #34a853;
  font-weight: 700;
}

.cross {
  color: #ea4335;
  font-weight: 700;
}

/* --- Dark Theme Text Overrides for Pricing --- */
.pricing-card:not(.popular) h3,
.pricing-card:not(.popular) .price,
.pricing-card:not(.popular) .currency,
.pricing-card:not(.popular) .period,
.pricing-card:not(.popular) .plan-desc,
.pricing-card:not(.popular) .feature-list li,
.pricing-card:not(.popular) .feature-sub,
.pricing-card:not(.popular) .users-limit {
  color: #f7f7f9;
}

.pricing-card:not(.popular) .feature-sub,
.pricing-card:not(.popular) .plan-desc,
.pricing-card:not(.popular) .users-limit {
  opacity: 0.8;
}

.pricing-card:not(.popular) .feature-list li.disabled {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Pricing */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* --- REVIEW SECTION --- */
.review-section {
  padding: 80px 0;
  color: #f7f7f9;
  text-align: left;
}

.review-content {
  max-width: 1400px;
}

.review-content h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #f7f7f9;
}

.review-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #f7f7f9;
}

/* --- SITE FOOTER --- */
.site-footer {
  padding: 80px 0 40px;
  background: #050608;
  /* Deep black/gray to match design */
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
  font-size: 0.95rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand {
  flex: 0 0 auto;
}

.footer-logo img {
  height: 36px;
  width: auto;
  opacity: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  /* Wide spacing like the design */
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

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

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

.footer-col a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666;
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-socials a {
  color: #666;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-socials a:hover {
  color: #fff;
}

/* Footer Responsive */
@media (max-width: 1100px) {
  .footer-nav {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    width: 100%;
    justify-content: space-between;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .logo {
    margin-right: 30px;
  }

  .nav-links {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .nav-links {
    display: none;
  }

  /* HUD Mobile Adjustment */
  .hud-container {
    width: 100%;
    border-radius: 0;
  }

  .hud-overlay {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .hud-panel {
    font-size: 0.85rem;
  }

  .hud-center-stage {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-top: 14px;
  }

  .ai-dialog-box {
    min-width: 260px;
    font-size: 0.9rem;
  }

  .ai-log-panel {
    max-width: 280px;
  }

  .hud-info-panel {
    max-width: 320px;
  }
}

/* --- GAME SECTION CSS --- */
.game-hud-section {
  padding: 60px 0;
  background: transparent;
  text-align: center;
}

.game-section-copy {
  margin-bottom: 40px;
}

.game-sub {
  color: #f7f7f9;
  max-width: 600px;
  margin: 16px auto 0;
}

.game-canvas-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

#game-root {
  width: 100%;
  height: 100%;
}

#game-root canvas {
  display: block;
  outline: none;
}

/* CTA Section Re-design */
.cta-section {
  padding: 100px 0;
  position: relative;
  width: 100%;
}

.cta-banner {
  background: linear-gradient(90deg, #96f5a3 0%, #4ade80 50%, #6ee7b7 100%);
  border-radius: 40px;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Dotted Pattern Overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 600px;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #050505;
  margin-bottom: 10px;
  line-height: 1.1;
}

.cta-content p {
  font-size: 1.2rem;
  color: #050505;
  opacity: 0.8;
}

.cta-action {
  position: relative;
  z-index: 1;
}

.btn-black {
  background: #000000;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: white;
}



#game-footer-cta {
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .game-canvas-wrapper {
    border-radius: 0;
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

/* Desktop: No animation, just flex */
.carousel-track {
  display: flex;
  gap: 60px;
  animation: none;
}

/* Hide duplicate items on desktop */
.carousel-track .stat-item:nth-child(n+4) {
  display: none;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Aligned left */
  text-align: left;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-label {
  font-size: 1rem;
  color: #f7f7f9;
  opacity: 0.75;
  font-weight: 500;
}

/* Gradients */
.stat-grad-1 {
  background-image: linear-gradient(135deg, #f7f7f9 0%, #ffffff 100%);
}

.stat-grad-2 {
  background-image: linear-gradient(135deg, #f7f7f9 0%, #ffffff 100%);
}

.stat-grad-3 {
  background-image: linear-gradient(135deg, #f7f7f9 0%, #ffffff 100%);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* --- WHAT IS GAMIRO SECTION --- */
.what-is-gamiro {
  padding: 100px 0;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  /* Give more space to text (was likely 1fr 1fr) */
  align-items: center;
  gap: 0px;
  /* Reduce gap since we are managing space via columns */
  position: relative;
  z-index: 2;
  width: 100%;
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 60px auto 0;
  max-width: 1100px;
}

@media (max-width: 900px) {
  .what-is-grid {
    grid-template-columns: 1fr;
  }
}

.what-card {
  padding: 40px;
  border-radius: 30px;
  /* background handled by glass-card class */
  /* backdrop-filter handled by glass-card class */
  /* box-shadow handled by glass-card class */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.what-card:hover {
  transform: translateY(-5px);
  /* background/shadow handled by glass-card:hover */
}

.features-card:hover {
  border-color: rgba(74, 222, 128, 0.5);
}

.limitations-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
}

.what-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #f7f7f9;
}

.feature-list,
.limitation-list {
  list-style: none;
}

/* What is Gamiro Card Scoped Feature List */
.what-card .feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: #f7f7f9;
  /* Darker for readability */
}

.feature-list li .icon-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #d8fb68;
  /* Emerald Green */
  background: rgba(16, 185, 129, 0.1);
  /* Subtle green bg */
  border-radius: 50%;
  flex-shrink: 0;
}

.limitation-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.limitation-list li .icon-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ef4444;
  /* Red */
  background: rgba(239, 68, 68, 0.1);
  /* Subtle red bg */
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.limitation-list li strong {
  display: block;
  font-size: 1.1rem;
  color: #f7f7f9;
  margin-bottom: 4px;
}

.limitation-list li p {
  font-size: 0.95rem;
  color: #f7f7f9;
  line-height: 1.5;
  margin: 0;
  opacity: 0.8;
}

/* --- HUD STYLING (What is Gamiro) --- */
.hud-section {
  background: transparent;
  /* border-top: 1px solid var(--hud-border); Removed as per user request */
  /* border-bottom: 1px solid var(--hud-border); Removed as per user request */
  position: relative;
  overflow: hidden;
}

/* Optional: Add decorative HUD corners or lines if desired */
.hud-section::before {
  content: none;
}


/* --- BENTO GRID (Why Gamiro) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px auto 0;
  max-width: 1100px;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  background: rgba(255, 255, 255, 0.03);
  /* Darker glass per design */
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
  text-align: left;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.bento-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.bento-card p {
  font-size: 1rem;
  color: #f7f7f9;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 24px;
}

.bento-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bento-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.bento-list li .check {
  color: #fff;
  font-weight: bold;
}

/* --- HOW GAMIRO WORKS (Vertical Timeline - Desktop Default) --- */
.how-it-works {
  padding: 100px 0;
  position: relative;
  background-color: transparent;
  /* Or match section bg */
}

/* Wrapper to constrain width on desktop */
.process-steps-wrapper {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  /* Ensure it has width */
  width: 100%;
}

/* Vertical Flex Container */
.process-steps {
  display: flex !important;
  /* Force flex */
  flex-direction: column !important;
  /* Force vertical on desktop */
  gap: 50px;
  position: relative;
  padding-left: 0;
}

/* Vertical Line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  /* Start right below the first number top */
  bottom: 0px;
  left: 35px;
  /* Center of the 70px circle */
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
  z-index: 0;
}

/* Step Card: Row layout (Number + Content) on Desktop */
.step-card {
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  /* Always visible */
  width: 100%;
  opacity: 1;

  /* Premium Card Styling */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 35px;
  backdrop-filter: blur(10px);

  /* Subtle glow effect */
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* Smooth transition for hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(74, 222, 128, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.step-number {
  width: 70px;
  height: 70px;
  min-width: 70px;
  /* Prevent shrinking */
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-right: 40px;
  /* Space between number and text */
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
}

.step-content {
  flex: 1;
  padding-top: 10px;
  /* Align text with number visually */
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.step-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Hide mobile dots on desktop */
.steps-dots,
.mobile-only {
  display: none !important;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .process-steps-wrapper {
    max-width: 100%;
    padding: 0 15px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.2rem;
    margin-right: 20px;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }


  opacity: 0.75;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-steps::before {
    left: 25px;
    /* Adjust for smaller circles if needed, or keep 35px */
  }

  .step-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 20px;
  }

  .process-steps::before {
    display: none;
    /* Hide line on mobile for cleaner look if stacking */
  }
}

/* --- ACHIEVEMENTS SECTION --- */
.achievements-section {
  padding: 100px 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px auto 0;
  max-width: 1100px;
}

@media (max-width: 900px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

.achievement-card {
  background: rgba(255, 255, 255, 0.06);
  /* Very dark card bg */
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

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

.achievement-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.achievement-card h3 {
  font-size: 1.5rem;
  color: #f7f7f9;
  margin-bottom: 16px;
  font-weight: 600;
}

.achievement-card p {
  color: #f7f7f9;
  opacity: 0.75;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.tag {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #f7f7f9;
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: 100px 0;
  background: transparent;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-card {
  /* background handled by shared class */
  border-radius: 16px;
  padding: 30px;
  transition: all 0.2s ease;
}

/* .faq-card:hover handled by shared class */

.style-hidden {
  display: none !important;
}

.faq-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.faq-card p {
  color: #f7f7f9;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.75;
}

/* --- CTA SECTION --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  /* Transparent background to blend */
}

.cta-content h2 {
  font-size: 3.5rem;
  color: #f7f7f9;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-cta-primary {
  background: #f7f7f9;
  color: #34383d;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  margin: 0;
  box-shadow: none;
}

.btn-cta-primary:hover {
  background: #e6e6e6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #f7f7f9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  margin: 0;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Update Toggle Switch to Main Gradient */
input:checked+.slider {
  background: linear-gradient(120deg, #d8fb68, #91ecca, #d8fb68);
  background-size: 200% 200%;
  animation: shine-border 3s ease infinite;
}

input:focus+.slider {
  box-shadow: 0 0 1px #d8fb68;
}

/* [Old Scrollytelling CSS Removed - Section now uses standard vertical flow] */

/* =====================================================
   BOOK A DEMO PANEL - Glassmorphism Slide-In
   ===================================================== */

/* Dark overlay behind the panel */
.demo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}

.demo-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Slide-in panel from right */
.demo-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 100%;
  height: 100vh;
  background: linear-gradient(135deg,
      rgba(30, 30, 35, 0.95) 0%,
      rgba(20, 20, 25, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(216, 251, 104, 0.2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  overflow-y: auto;
}

.demo-panel.active {
  transform: translateX(0);
}

/* Close button */
.demo-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #f9f9f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.demo-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Panel content */
.demo-panel-content {
  padding: 80px 40px 40px;
}

/* Title with gradient */
.demo-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(120deg, #d8fb68, #91ecca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.demo-subtitle {
  color: rgba(249, 249, 247, 0.7);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* Form styles */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-form-row {
  display: flex;
  gap: 16px;
}

.demo-form-row .demo-form-group {
  flex: 1;
}

.demo-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-form-group label {
  color: #f9f9f7;
  font-size: 0.875rem;
  font-weight: 500;
}

.demo-form-group input,
.demo-form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #f9f9f7;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.demo-form-group input::placeholder {
  color: rgba(249, 249, 247, 0.4);
}

.demo-form-group input:focus,
.demo-form-group select:focus {
  border-color: #d8fb68;
  background: rgba(216, 251, 104, 0.05);
  box-shadow: 0 0 0 3px rgba(216, 251, 104, 0.1);
}

.demo-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f9f9f7' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.demo-form-group select option {
  background: #1a1a1f;
  color: #f9f9f7;
}

/* Calendly section */
.demo-calendly-section {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-calendly-section h3 {
  color: #f9f9f7;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form note */
.demo-form-note {
  color: rgba(249, 249, 247, 0.5);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Submit button */
.demo-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 16px;
  background: linear-gradient(120deg, #d8fb68, #91ecca);
  border: none;
  border-radius: 12px;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 251, 104, 0.25);
}

.demo-submit-btn:active {
  transform: translateY(0);
}

.demo-submit-btn svg {
  transition: transform 0.3s ease;
}

.demo-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Mobile responsive */
@media (max-width: 520px) {
  .demo-panel {
    width: 100%;
  }

  .demo-panel-content {
    padding: 70px 24px 24px;
  }

  .demo-form-row {
    flex-direction: column;
    gap: 20px;
  }

  .demo-title {
    font-size: 1.75rem;
  }
}

/* =====================================================
   MOBILE DASHBOARD MODAL - Fullscreen Landscape
   ===================================================== */

.mobile-dashboard-modal {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-dashboard-modal.active {
  opacity: 1;
  visibility: visible;
}

.mobile-dashboard-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

.mobile-dashboard-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.mobile-dashboard-close:hover,
.mobile-dashboard-close:active {
  background: rgba(216, 251, 104, 0.9);
  color: #0a0a0a;
  transform: rotate(90deg);
}

/* Rotate hint for portrait mode */
@media (orientation: portrait) {
  .mobile-dashboard-modal::before {
    content: "Rotate your device for best experience";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(216, 251, 104, 0.9);
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 11;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.6;
    }
  }
}