@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0b0f;
  color: #c8ccd4;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Utility: scanline overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 240, 200, 0.008) 2px,
    rgba(0, 240, 200, 0.008) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw + 0.5rem, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw + 0.3rem, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw + 0.2rem, 1.75rem); }
h4 { font-size: clamp(1.1rem, 1.5vw + 0.1rem, 1.35rem); }

p {
  max-width: 72ch;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #00f0c8;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 240, 200, 0.5);
}

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

/* ── Top Announcement Bar ── */
.topbar {
  background: #0d0e14;
  border-bottom: 1px solid rgba(0, 240, 200, 0.15);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-family: 'JetBrains Mono', monospace;
  color: #8a8f98;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 101;
}

.topbar a {
  color: #00f0c8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.topbar .pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ff3b5c;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulseDot 1.5s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── Header / Nav ── */
.site-header {
  background: rgba(13, 14, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 240, 200, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  color: #00f0c8;
  text-shadow: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #8a8f98;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00f0c8;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

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

.nav-cta {
  margin-left: 0.5rem;
}

/* ── Mobile Menu Toggle ── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: background 0.2s ease;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.65rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00f0c8, #00c4a0);
  color: #0a0b0f;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 240, 200, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00ffe6, #00d4a8);
  box-shadow: 0 0 32px rgba(0, 240, 200, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
  color: #0a0b0f;
  text-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: #00f0c8;
  border: 1px solid rgba(0, 240, 200, 0.35);
  border-radius: 4px;
}

.btn-secondary:hover {
  border-color: #00f0c8;
  background: rgba(0, 240, 200, 0.08);
  color: #00f0c8;
  text-shadow: none;
}

.btn-alert {
  background: linear-gradient(135deg, #ff3b5c, #e02040);
  color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(255, 59, 92, 0.25);
}

.btn-alert:hover {
  background: linear-gradient(135deg, #ff4d6e, #f02850);
  box-shadow: 0 0 32px rgba(255, 59, 92, 0.4);
  transform: translateY(-1px);
  color: #ffffff;
  text-shadow: none;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 240, 200, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255, 59, 92, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 200, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 200, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-text {
  max-width: 65ch;
}

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  color: #00f0c8;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #00f0c8;
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-title .highlight {
  color: #00f0c8;
  text-shadow: 0 0 30px rgba(0, 240, 200, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #8a8f98;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #00f0c8;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: #5a5f68;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-terminal {
  background: #0d0e14;
  border: 1px solid rgba(0, 240, 200, 0.12);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0, 240, 200, 0.05);
}

.terminal-header {
  background: #111218;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff3b5c; }
.terminal-dot.yellow { background: #f0a030; }
.terminal-dot.green { background: #00f0c8; }

.terminal-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #5a5f68;
  margin-left: 8px;
}

.terminal-body {
  padding: 1.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.8;
}

.terminal-line {
  display: block;
  overflow-wrap: break-word;
}

.terminal-line .prompt {
  color: #00f0c8;
}

.terminal-line .command {
  color: #ffffff;
}

.terminal-line .output {
  color: #8a8f98;
}

.terminal-line .tag {
  color: #ff3b5c;
  font-weight: 600;
}

.terminal-line .tag-balanced {
  color: #f0a030;
  font-weight: 600;
}

.terminal-line .tag-added {
  color: #00f0c8;
  font-weight: 600;
}

/* ── Section Wrapper ── */
.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1400px;
  margin: 0 auto;
}

.section-full {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #00f0c8;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #00f0c8;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #8a8f98;
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 3rem;
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.card {
  background: #0d0e14;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f0c8, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: rgba(0, 240, 200, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(0, 240, 200, 0.05);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  color: #00f0c8;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.card-text {
  font-size: 0.9rem;
  color: #6a6f78;
  line-height: 1.65;
  max-width: 50ch;
}

.card-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #00f0c8;
  background: rgba(0, 240, 200, 0.08);
  border: 1px solid rgba(0, 240, 200, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Game Cards (Horizontal) ── */
.game-card {
  display: flex;
  gap: 1.2rem;
  background: #0d0e14;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1.2rem;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.game-card:hover {
  border-color: rgba(0, 240, 200, 0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.game-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  background: #111218;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #00f0c8;
  border: 1px solid rgba(0, 240, 200, 0.1);
}

.game-info {
  flex: 1;
  min-width: 0;
}

.game-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.game-version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: #8a8f98;
  margin-bottom: 0.5rem;
}

.game-changes {
  font-size: 0.8rem;
  color: #5a5f68;
}

.game-meta {
  text-align: right;
  flex-shrink: 0;
}

.game-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #ff3b5c;
  display: block;
  margin-bottom: 0.4rem;
}

.game-size {
  font-size: 0.72rem;
  color: #5a5f68;
}

/* ── Leaderboard Table ── */
.lb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.lb-table thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5a5f68;
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lb-table tbody td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  color: #c8ccd4;
  font-size: 0.88rem;
}

.lb-table tbody tr {
  transition: background 0.2s ease;
}

.lb-table tbody tr:hover {
  background: rgba(0, 240, 200, 0.03);
}

.lb-rank {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #00f0c8;
}

.lb-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111218;
  border: 1px solid rgba(0, 240, 200, 0.15);
  flex-shrink: 0;
}

.lb-score {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: #ffffff;
}

/* ── Guide Card ── */
.guide-card {
  background: #0d0e14;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.guide-card:hover {
  border-color: rgba(0, 240, 200, 0.15);
  transform: translateY(-3px);
}

.guide-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111218;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.guide-thumb-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #5a5f68;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.guide-body {
  padding: 1.2rem;
}

.guide-game-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #ff3b5c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.guide-title {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.guide-excerpt {
  font-size: 0.82rem;
  color: #5a5f68;
  line-height: 1.6;
}

/* ── Integration Card ── */
.integration-card {
  background: #0d0e14;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.integration-card:hover {
  border-color: rgba(0, 240, 200, 0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.integration-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 12px;
  background: rgba(0, 240, 200, 0.06);
  border: 1px solid rgba(0, 240, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-name {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.integration-desc {
  font-size: 0.85rem;
  color: #5a5f68;
  line-height: 1.6;
}

/* ── Code Block ── */
.code-block {
  background: #0d0e14;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.8;
  overflow-x: auto;
  color: #8a8f98;
}

.code-block .keyword { color: #00f0c8; }
.code-block .string { color: #f0a030; }
.code-block .comment { color: #3a3f48; }
.code-block .func { color: #ff3b5c; }

/* ── Divider ── */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 200, 0.12), transparent);
  margin: 0;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0, 240, 200, 0.06), rgba(255, 59, 92, 0.04));
  border: 1px solid rgba(0, 240, 200, 0.1);
  border-radius: 12px;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0, 240, 200, 0.06), transparent);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #8a8f98;
  max-width: 50ch;
  margin: 0 auto 2rem;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

/* ── Footer ── */
.site-footer {
  background: #08090d;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 2rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 3rem;
}

.footer-brand p {
  color: #5a5f68;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 35ch;
  margin-top: 1rem;
}

.footer-heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #5a5f68;
  margin-bottom: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #6a6f78;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #00f0c8;
  text-shadow: none;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: #3a3f48;
  font-family: 'JetBrains Mono', monospace;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: #3a3f48;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #00f0c8;
  text-shadow: none;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-visual {
    display: none;
  }

  .hero-text {
    max-width: 65ch;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    flex-direction: column;
  }

  .game-meta {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lb-table {
    font-size: 0.78rem;
  }

  .lb-table thead th,
  .lb-table tbody td {
    padding: 0.6rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .topbar {
    font-size: 0.65rem;
  }
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes glowPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 240, 200, 0.3)); }
  50% { filter: drop-shadow(0 0 12px rgba(0, 240, 200, 0.6)); }
}

.glow {
  animation: glowPulse 2s ease-in-out infinite;
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
