/* ==========================================================================
   MeetJson - Retro-Futuristic Cyberpunk Developer Theme (Vanilla CSS)
   ========================================================================== */

:root {
  --bg-dark: #090b10;
  --bg-card: rgba(18, 24, 38, 0.65);
  --bg-card-hover: rgba(32, 43, 64, 0.8);
  --border-glow: rgba(142, 189, 179, 0.3);
  
  --primary-neon: #8ebdb3;       /* Pastel Mint/Teal from logo monitor */
  --primary-glow: rgba(142, 189, 179, 0.4);
  --accent-cyan: #9ad5e2;        /* Soft Space Age Cyan */
  --accent-purple: #b5a8c9;      /* Pastel Lavender-Purple from logo wings */
  --accent-orange: #f4a28c;      /* Pastel Peach-Coral from logo text/dots */
  --accent-blue: #a2bfe8;        /* Soft blue */
  
  --text-main: #fcfbfa;          /* Soft warm white from logo text */
  --text-muted: #9faab8;
  --text-dim: #6e7a8c;
  
  --font-sans: 'Outfit', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

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

.glow-orb {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.25;
  z-index: -1;
}

.orb-1 {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--accent-cyan), var(--accent-purple));
}

.orb-2 {
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--primary-neon), var(--accent-blue));
}

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

/* Typography & Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-neon), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 14, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.35rem;
}

.brand-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px var(--primary-neon));
}

.brand-name .highlight {
  color: var(--primary-neon);
}

.version-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-neon);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

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

/* Buttons */
.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-neon);
  box-shadow: 0 0 10px var(--primary-neon);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Install Box */
.install-card {
  max-width: 580px;
  margin: 0 auto 40px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.15);
  overflow: hidden;
}

.install-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #334155;
}

.install-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.install-body {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
  font-family: var(--font-mono);
}

.prompt-symbol {
  color: var(--primary-neon);
  font-weight: bold;
}

.install-body code {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  color: var(--text-main);
  overflow-x: auto;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-copy:hover {
  background: var(--primary-neon);
  color: #000;
  border-color: var(--primary-neon);
}

/* Agent Chips */
.agent-compatibility {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.badges-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.agent-chip {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Playground Section */
.playground-section {
  padding: 80px 0;
}

.playground-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 16px;
}

.code-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-indicator {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
}

.status-indicator.broken { color: #f87171; }
.status-indicator.fixed { color: var(--primary-neon); }

.preset-buttons {
  display: flex;
  gap: 6px;
}

.preset-btn {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
}

.preset-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-main);
}

.tokens-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-neon);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

#json-input {
  flex: 1;
  width: 100%;
  padding: 18px;
  background: transparent;
  border: none;
  color: #f1f5f9;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.6;
  resize: none;
  outline: none;
}

#json-output {
  flex: 1;
  padding: 18px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a7f3d0;
  overflow: auto;
}

.repair-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pulse-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--primary-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.zap-icon {
  font-size: 1.5rem;
}

.repair-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--primary-neon);
  letter-spacing: 0.05em;
}

/* Terminal Simulator */
.demo-section {
  padding: 60px 0;
}

.terminal-window {
  max-width: 900px;
  margin: 0 auto;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.terminal-topbar {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.window-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.status-active {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary-neon);
}

.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.8;
  min-height: 220px;
}

.log-line { margin-bottom: 8px; }
.log-line.prompt { color: #e2e8f0; }
.user-prompt { color: var(--accent-cyan); font-weight: bold; }
.log-line.info { color: #94a3b8; }
.log-line.warn { color: #fbbf24; }
.log-line.success { color: var(--primary-neon); font-weight: bold; }
.cursor { animation: blink 1s infinite; color: var(--primary-neon); }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Calculator Section */
.calculator-section {
  padding: 80px 0;
}

.calc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(16px);
}

.calc-info h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.calc-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.slider-group {
  margin-bottom: 24px;
}

.slider-group label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.slider-group input[type="range"] {
  width: 100%;
  accent-color: var(--primary-neon);
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.result-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 24px;
}

.result-box.main-metric {
  border-color: var(--border-glow);
  background: rgba(16, 185, 129, 0.05);
}

.result-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.result-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
}

.error-color { color: #f87171; }
.success-color { color: var(--primary-neon); }

.subtext {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* 3-Step Flow */
.flow-section {
  padding: 60px 0 80px;
}

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

.flow-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(16, 185, 129, 0.25);
  margin-bottom: 12px;
}

.flow-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.flow-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--primary-neon);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.2);
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-neon);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 12px;
}

.plan-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.price {
  margin-bottom: 12px;
}

.price .currency {
  font-size: 2rem;
  vertical-align: top;
}

.price .amount {
  font-size: 4rem;
  font-weight: 700;
}

.price .period {
  color: var(--text-muted);
  font-size: 1rem;
}

.price-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.features-list li {
  font-size: 0.95rem;
  color: var(--text-main);
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.7);
}

.guarantee-text {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand span {
  font-family: var(--font-mono);
  font-weight: bold;
  color: var(--primary-neon);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

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

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 900px) {
  .playground-grid {
    grid-template-columns: 1fr;
  }
  .calc-card {
    grid-template-columns: 1fr;
  }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Multi-Format Features & Tabs Extensions */
.features-section {
  padding: 80px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.feature-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-neon);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Format Tabs for Playground */
.format-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--primary-neon);
  color: var(--text-main);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(0, 242, 254, 0.2));
  border-color: var(--primary-neon);
  color: var(--primary-neon);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.inline-install {
  margin-top: 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--primary-neon);
}

.orb-3 {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent-purple), transparent);
}

/* ==========================================================================
   CLI Commands Section
   ========================================================================== */
.commands-section {
  padding: 80px 0;
  position: relative;
}

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

.command-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.command-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.command-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.command-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.command-title code {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.cmd-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-neon);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.cmd-badge.badge-cyan {
  background: rgba(0, 242, 254, 0.15);
  color: var(--accent-cyan);
  border-color: rgba(0, 242, 254, 0.3);
}

.cmd-badge.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--accent-purple);
  border-color: rgba(139, 92, 246, 0.3);
}

.cmd-copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cmd-copy-btn:hover {
  background: var(--primary-neon);
  color: #000;
  border-color: var(--primary-neon);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.command-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.command-example {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.example-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
}

.command-example code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-main);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}


