/* ===== Variables ===== */
:root {
  --bg: #0a0b0d;
  --bg-elevated: #111215;
  --surface: #16181c;
  --border: rgba(255, 255, 255, 0.06);
  --text: #e8eaed;
  --text-muted: #9ca3af;
  --accent: #22d3ee;
  --accent-dim: rgba(34, 211, 238, 0.15);
  --accent-glow: rgba(34, 211, 238, 0.25);
  --font-sans: "Syne", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --site-header-height: 64px;
}

/* ===== Reset & base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #67e8f9;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  background: rgba(10, 11, 13, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

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

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-logo:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* Mobile nav open state */
.nav-links.is-open {
  display: flex;
  position: fixed;
  top: var(--site-header-height);
  left: 0;
  right: 0;
  bottom: auto;
  max-height: calc(100vh - var(--site-header-height));
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.nav-links.is-open li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-links.is-open li:last-child {
  border-bottom: none;
}

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

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.animated-header {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.animated-header__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  width: 120%;
  height: 80%;
  top: 10%;
  left: -10%;
  background: radial-gradient(ellipse at 50% 30%, var(--accent-glow) 0%, transparent 55%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.45s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: #67e8f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--accent);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 1px;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--bg-elevated);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.experience-download {
  display: inline-block;
  margin-top: 1rem;
}

.about-prose {
  max-width: 720px;
  margin: 0 auto;
}

.about-row {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.about-row--image-left {
  flex-direction: row;
}

.about-row--image-right {
  flex-direction: row-reverse;
}

.about-photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

@media (min-width: 600px) {
  .about-photo {
    width: 240px;
    height: 240px;
  }
}

@media (min-width: 768px) {
  .about-photo {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 500px) {
  .about-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-row--image-right {
    flex-direction: column;
  }
}

.about-prose p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

.about-close {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ===== Experience (roadmap / timeline) ===== */
.experience-list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 2.5rem;
  position: relative;
}

/* vertical line connecting the dots */
.experience-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent) 33%, var(--border) 33%, var(--border) 66%, var(--border) 66%);
  background: var(--border);
  border-radius: 1px;
}

.experience-item {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: none;
}

/* dot on the roadmap */
.experience-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--border);
}

.experience-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.experience-item strong {
  color: var(--text);
}

.experience-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.experience-item p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ===== Testimonials ===== */
.testimonials-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .testimonials-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1rem 0;
  font-style: italic;
}

.testimonial-quote::before {
  content: "\201C";
}
.testimonial-quote::after {
  content: "\201D";
}

.testimonial-attribution {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-attribution cite {
  font-style: normal;
}

/* ===== Micro SaaS cards ===== */
.saas-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.saas-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.saas-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 1px var(--accent-dim);
  transform: translateY(-4px);
}

.saas-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 1rem;
}

.saas-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

/* ===== Agentic AI cards ===== */
.ai-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.ai-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ai-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.ai-card-inner {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2px;
  transition: all var(--transition);
}

.ai-card:hover .ai-card-inner {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 30px var(--accent-glow);
}

.ai-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

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

/* ===== Skills ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.skills-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.skills-group h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.skills-group ul {
  list-style: none;
}

.skills-group li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
}

.skills-group li:last-child {
  border-bottom: none;
}

/* ===== Projects ===== */
.projects-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.project-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.project-type {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.project-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: -0.25rem 0 1rem 0;
  font-weight: 500;
  line-height: 1.4;
}

.project-meta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.project-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.project-hint code {
  font-family: var(--font-mono);
  font-size: 0.75em;
}

.project-link {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.project-link:hover {
  gap: 0.5rem;
}

.projects-more {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.projects-more a {
  color: var(--accent);
  font-weight: 500;
}

.projects-more a:hover {
  color: #67e8f9;
}

/* ===== Contact ===== */
.section-contact {
  padding: 5rem 1.5rem;
}

.contact-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-inner .section-title {
  margin-bottom: 0.75rem;
}

.contact-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.contact-link {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.contact-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-built {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Scroll-triggered fade-in */
.section.animate-on-scroll {
  opacity: 0.92;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile interaction preferences ===== */
@media (hover: none) and (pointer: coarse) {
  /* Prevent "tap-to-hover" effects from causing motion/tap-jank. */
  a:hover {
    color: var(--accent);
  }
  .nav-logo:hover {
    color: var(--text);
  }
  .nav-links a:hover {
    color: var(--text);
  }
  .btn-primary:hover {
    background: var(--accent);
    transform: none;
    box-shadow: none;
  }
  .btn-ghost:hover {
    border-color: var(--border);
    color: var(--text);
  }
  .testimonial-card:hover {
    border-color: var(--border);
    box-shadow: none;
  }
  .saas-card:hover {
    border-color: var(--border);
    box-shadow: none;
    transform: none;
  }
  .ai-card:hover .ai-card-inner {
    border-color: var(--border);
    box-shadow: none;
  }
  .project-card:hover {
    border-color: var(--border);
    box-shadow: none;
  }
  .project-link:hover {
    gap: 0.25rem;
  }
  .projects-more a:hover {
    color: var(--accent);
  }
  .contact-link:hover {
    color: var(--text);
    border-bottom-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-scroll-line {
    animation: none;
  }

  .section.animate-on-scroll,
  .section.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Disable initial reveal animations on the hero. */
  .hero-label,
  .hero-title,
  .hero-desc,
  .hero-cta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Dev Panel (Easter egg) ===== */
.dev-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--site-header-height) + 1rem) 1rem 1rem;
}

.dev-panel[hidden] {
  display: none;
  pointer-events: none;
}

.dev-panel-inner {
  width: 100%;
  max-width: 560px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
}

.dev-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.dev-panel-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dev-panel-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
}

.dev-panel-close:hover {
  border-color: var(--text-muted);
  color: var(--accent);
}

.dev-panel-body {
  padding: 1.25rem;
  text-align: left;
}

.dev-panel-body p {
  margin: 0 0 0.75rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.dev-panel-body p:last-of-type {
  margin-bottom: 0;
}

.dev-panel-body strong {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.dev-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.dev-panel-hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.85;
  text-align: center;
}

/* ===== Konami Mini Game (Pixel Dodge) ===== */
.konami-game {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--site-header-height) + 1rem) 1rem 1rem;
}

.konami-game[hidden] {
  display: none;
  pointer-events: none;
}

.konami-game-inner {
  width: 100%;
  max-width: 720px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
}

.konami-game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.konami-game-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.konami-game-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
}

.konami-game-close:hover {
  border-color: var(--text-muted);
  color: var(--accent);
}

.konami-game-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.konami-game-canvas {
  display: block;
  width: 100%;
  height: auto;
  background: radial-gradient(ellipse at top, rgba(156, 217, 249, 0.08), transparent 60%), rgba(0, 0, 0, 0.2);
}

.konami-game-status {
  margin: 0;
  padding: 0.75rem 1.25rem 1rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.konami-game-controls {
  margin: 0;
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.85;
}
