:root {
  --bg-1: #0a1a2a;
  --bg-2: #0f2a3f;
  --bg-3: #1b4d66;
  --accent-1: #00f0ff;
  --accent-2: #66ffcc;
  --accent-3: #1bd4ff;
  --text-1: #e8fbff;
  --text-2: #b6d6e6;
  --card: rgba(7, 20, 35, 0.72);
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --radius-sm: 12px;
}

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

body {
  font-family: "Sora", "Space Grotesk", sans-serif;
  color: var(--text-1);
  background: radial-gradient(circle at 10% 20%, #10324a 0%, #0b1b2b 45%, #06121d 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background: radial-gradient(circle at 70% 20%, rgba(0, 240, 255, 0.2), transparent 40%),
    radial-gradient(circle at 20% 70%, rgba(102, 255, 204, 0.18), transparent 45%);
  animation: pulseGlow 12s ease-in-out infinite;
  z-index: -2;
}

body::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.25;
  z-index: -3;
}

.ai-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0, 240, 255, 0.35) 0, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(102, 255, 204, 0.25) 0, transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(27, 212, 255, 0.25) 0, transparent 30%);
  animation: holoPulse 16s ease-in-out infinite;
}

.ai-grid {
  position: fixed;
  inset: -40% 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.15;
  background-image:
    linear-gradient(90deg, rgba(0, 240, 255, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(0, 240, 255, 0.2) 1px, transparent 1px);
  background-size: 120px 120px;
  animation: gridDrift 35s linear infinite;
  mask-image: radial-gradient(circle at center, black 0%, transparent 65%);
}

.ai-nodes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(102, 255, 204, 0.35) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 240, 255, 0.25) 1px, transparent 1px);
  background-size: 140px 140px, 220px 220px;
  background-position: 0 0, 60px 80px;
  opacity: 0.3;
  animation: nodesFloat 26s ease-in-out infinite;
}

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

a {
  color: inherit;
  text-decoration: none;
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(6, 18, 29, 0.75);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.micro-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-family: "Space Mono", "Sora", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(230, 255, 255, 0.7);
}

.micro-labels span {
  border: 1px solid rgba(102, 255, 204, 0.35);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(3, 10, 16, 0.5);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-text h1 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text span {
  font-size: 0.8rem;
  color: var(--text-2);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.8rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: rgba(6, 18, 29, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-dropdown-menu a {
  border-radius: 10px;
  padding: 8px 12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-links a.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 10px;
}

.nav-links a.nav-social svg,
.nav-links a.nav-social img {
  width: 18px;
  height: 18px;
  display: block;
  color: #66ffcc;
  fill: #66ffcc;
}

.nav-links a.nav-social {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(6, 18, 29, 0.4);
}

.nav-links a.nav-social:hover {
  border-color: rgba(102, 255, 204, 0.6);
  background: rgba(102, 255, 204, 0.08);
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--accent-2);
  background: rgba(102, 255, 204, 0.08);
}

.nav-links a[href="bug-blaster.html"] {
  border-color: rgba(0, 240, 255, 0.45);
  background: rgba(0, 240, 255, 0.08);
}

.nav-links a[href="bug-blaster.html"]:hover,
.nav-links a[data-page="bug-blaster"].active {
  border-color: var(--accent-1);
  background: rgba(0, 240, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.2), 0 0 18px rgba(0, 240, 255, 0.25);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 24px 90px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 40px 0 20px;
}

.chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(102, 255, 204, 0.5);
  background: rgba(6, 18, 29, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-1);
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  min-height: 220px;
  max-height: 360px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media img.portrait {
  object-position: center 35%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 11, 18, 0.05), rgba(3, 11, 18, 0.55));
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(120deg, rgba(0, 240, 255, 0.15), rgba(102, 255, 204, 0.15), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.75;
  animation: shimmer 8s linear infinite;
  pointer-events: none;
}

.hero h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.hero p {
  color: var(--text-2);
  margin-top: 16px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.3s ease;
  background: linear-gradient(120deg, var(--accent-1), var(--accent-2));
  color: #03131e;
  box-shadow: 0 12px 25px rgba(0, 255, 204, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  border-color: var(--accent-2);
  color: var(--text-1);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 255, 204, 0.35);
  filter: brightness(1.05);
}

.card .button {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 12px;
}

.card .button + .button {
  margin-top: 10px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.2), transparent 45%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  border: 1px solid rgba(102, 255, 204, 0.35);
  border-radius: 22px;
  opacity: 0.6;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
  pointer-events: none;
}

.hero-meta {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.hero-meta span {
  display: block;
  color: var(--text-2);
  font-size: 0.95rem;
}

.section {
  margin-top: 70px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: -18px 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(0, 240, 255, 0.08),
    rgba(0, 240, 255, 0.08) 2px,
    transparent 2px,
    transparent 16px
  );
  opacity: 0.15;
  animation: linesFlow 18s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 255, 204, 0.5), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

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

.card {
  background: var(--glass);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(0, 240, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: -40% 0;
  background: linear-gradient(180deg, transparent, rgba(102, 255, 204, 0.16), transparent);
  opacity: 0;
  transform: translateY(-40%);
  transition: opacity 0.3s ease;
  animation: scanline 6s linear infinite;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

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

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.card-media-wrap {
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.card-media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(11, 27, 43, 0.35));
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
}

.card .card-media {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05) hue-rotate(-8deg);
}

.card p {
  color: var(--text-2);
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marquee {
  overflow: hidden;
  position: relative;
  padding: 6px 0;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 18, 29, 0.95), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 18, 29, 0.95), transparent);
}

.marquee-track .testimonial-card {
  min-width: 320px;
  backdrop-filter: blur(6px);
}

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

.stat {
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(12, 30, 46, 0.65);
  text-align: center;
}

.stat h4 {
  font-size: 1.6rem;
  color: var(--accent-2);
}

.stat span {
  color: var(--text-2);
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(7, 20, 35, 0.6);
}

.timeline-item strong {
  color: var(--accent-2);
}

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

form {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(5, 15, 25, 0.8);
  color: var(--text-1);
  font-family: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  border-top: 1px solid var(--border);
  padding: 30px 24px;
  text-align: center;
  color: var(--text-2);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  text-align: left;
}

.footer-grid h4 {
  margin-bottom: 10px;
  color: var(--text-1);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--text-2);
}

.footer-links a:hover {
  color: var(--text-1);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  background: rgba(6, 18, 29, 0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner p {
  color: var(--text-2);
  margin-bottom: 12px;
}

.cookie-banner a {
  color: var(--accent-2);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.3), transparent 70%);
  filter: blur(2px);
  animation: float 9s ease-in-out infinite;
  opacity: 0.8;
  z-index: -1;
}

.orb.two {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(102, 255, 204, 0.25), transparent 70%);
  animation-delay: -3s;
}

.orb.three {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(27, 212, 255, 0.3), transparent 70%);
  animation-delay: -6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-18px) translateX(12px);
  }
}

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

@keyframes holoPulse {
  0%,
  100% {
    filter: hue-rotate(0deg);
    opacity: 0.4;
  }
  50% {
    filter: hue-rotate(15deg);
    opacity: 0.75;
  }
}

@keyframes gridDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-360px);
  }
}

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

@keyframes linesFlow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 400px 0;
  }
}

@keyframes scanline {
  0% {
    transform: translateY(-40%);
  }
  100% {
    transform: translateY(40%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media {
    max-height: 260px;
  }

  .hero {
    padding: 24px 0 10px;
  }

  .hero h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0;
  }

  .nav-dropdown-menu a {
    padding-left: 0;
  }

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

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text h1 {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .nav {
    padding: 14px 18px;
  }

  .nav-links a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }

  .hero-card {
    padding: 20px;
  }

  .section {
    margin-top: 50px;
  }
}

.bug-hero {
  gap: 40px;
}

.bug-tip {
  font-size: 0.9rem;
  color: var(--text-2);
  margin-top: 18px;
}

.game-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(100%, 980px);
  margin: 0 auto;
}

.game-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.game-hud {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: "Space Mono", "Sora", monospace;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: rgba(230, 255, 255, 0.75);
}

.game-canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 520;
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 18, 29, 0.8);
}

.game-arena {
  width: 100%;
  aspect-ratio: 900 / 520;
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 255, 204, 0.1), transparent 55%),
    rgba(6, 18, 29, 0.9);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
}

.arena-bug {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(255, 209, 102, 0.9));
  color: #091423;
  font-family: "Space Mono", "Sora", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.arena-bug:hover {
  transform: scale(1.05);
}

.game-status {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.18);
  border: 1px solid rgba(0, 240, 255, 0.3);
  font-size: 0.85rem;
  font-family: "Space Mono", "Sora", monospace;
}

.game-status a {
  color: var(--text-1);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 10px;
}

.game-status-large {
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(88%, 720px);
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(7, 20, 35, 0.95);
  border: 1px solid rgba(102, 255, 204, 0.45);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}


.game-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.control-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 18, 29, 0.8);
  color: var(--text-1);
  font-family: "Space Mono", "Sora", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.control-btn:active {
  transform: translateY(2px);
  border-color: rgba(102, 255, 204, 0.6);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.game-promo {
  position: relative;
  overflow: hidden;
}

.game-promo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 240, 255, 0.22);
  background:
    radial-gradient(circle at 15% 25%, rgba(0, 240, 255, 0.14), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(102, 255, 204, 0.12), transparent 46%),
    rgba(7, 20, 35, 0.7);
  box-shadow: var(--shadow);
}

.game-promo-copy p {
  color: var(--text-2);
  margin-bottom: 14px;
}

.game-promo-meta {
  display: grid;
  gap: 10px;
  align-content: start;
}

.game-promo-meta span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(6, 18, 29, 0.7);
  font-family: "Space Mono", "Sora", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .game-hud {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
  .game-controls {
    flex-direction: column;
  }
  .control-btn {
    min-width: 100%;
  }
  .game-promo-grid {
    grid-template-columns: 1fr;
  }
  .bug-hero {
    gap: 24px;
  }
  .game-panel {
    padding: 14px;
  }
  .game-arena {
    min-height: 380px;
    aspect-ratio: auto;
  }
  .arena-bug {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 0.8rem;
  }
  .game-status {
    bottom: 12px;
    padding: 8px 14px;
    font-size: 0.78rem;
    max-width: calc(100% - 20px);
    text-align: center;
  }
  .game-status-large {
    width: min(92%, 92%);
    padding: 16px 14px;
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

@media (max-width: 520px) {
  .game-hud {
    font-size: 0.68rem;
    gap: 8px;
  }
  .game-arena {
    min-height: 420px;
  }
  .hero-actions .button {
    width: 100%;
  }
}
