:root {
  --bg: #000000;
  --bg-soft: #101010;
  --panel: #111111;
  --panel-alt: #FEFCE5;
  --card: #FEFCE5;
  --card-soft: #111111;
  --primary: #0BFF01;
  --primary-dark: #0aa900;
  --secondary: #FEFCE5;
  --text: #000000;
  --text-light: #FEFCE5;
  --muted: #7a7a6a;
  --border: rgba(11, 255, 1, 0.4);
  --shadow: 0 0 0 4px rgba(11, 255, 1, 0.2), 0 18px 44px rgba(0, 0, 0, 0.45);
  --radius: 0;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "VT323", monospace;
  background: #000000;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(254, 252, 229, 0.05),
    rgba(254, 252, 229, 0.05) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 40;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(91, 124, 255, 0.1);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.section-text {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.95rem 1.5rem;
  border-radius: 0;
  border: 3px solid var(--primary);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--text);
  box-shadow: 6px 6px 0 rgba(11, 255, 1, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: var(--primary);
}

.btn-light {
  background: var(--panel-alt);
  color: var(--text);
  border-color: var(--primary);
  box-shadow: 6px 6px 0 rgba(11, 255, 1, 0.25);
}

@media (max-width: 720px) {
  .section-title {
    letter-spacing: -0.04em;
  }
}
