/* ================================
   CSS Variables & Base
   ================================ */
:root {
  --bg-primary: #0f0f1a;
  --bg-card: #1a1a2e;
  --bg-card-inner: #16213e;
  --accent: #00d4ff;
  --accent-dim: #0a84a0;
  --accent-glow: rgba(0, 212, 255, 0.3);
  --text-primary: #e8e8f0;
  --text-secondary: #9898b0;
  --text-muted: #5a5a7a;
  --danger: #ff4757;
  --warning: #ffa502;
  --success: #2ed573;
  --pill-bg: rgba(0, 212, 255, 0.12);
  --pill-border: rgba(0, 212, 255, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  transition: background 0.8s ease;
}

body.centered .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}

.container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  flex: 1;
}

/* ── Site footer ── */

.site-footer {
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__link {
  color: var(--accent);
  text-decoration: none;
}

.site-footer__link:hover {
  opacity: 0.8;
}

/* ── Scroll to top ── */

.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 1000;
}

.scroll-top:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.scroll-top.hidden {
  display: none;
}

/* ================================
   Header
   ================================ */
.header {
  text-align: center;
  margin-bottom: 2rem;
}

.header__title {
  font-size: 2rem;
  font-weight: 700;
}

.header__title-link {
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header__icon {
  height: 1.2em;
  width: auto;
  vertical-align: middle;
}

.header__tagline {
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-top: 0.4rem;
  opacity: 0.85;
}

.header__subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.3rem;
}

/* ================================
   Form
   ================================ */
.form__group {
  display: flex;
  gap: 0.75rem;
}

.form__input-wrapper {
  flex: 1;
  position: relative;
}

.form__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--text-muted);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form__button {
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-dim), #6b21a8);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s, transform 0.1s;
  white-space: nowrap;
}

.form__button:hover {
  opacity: 0.9;
}

.form__button:active {
  transform: scale(0.98);
}

.form__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ================================
   Autocomplete Dropdown
   ================================ */
.autocomplete {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  max-height: 320px;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.autocomplete__item {
  padding: 0.7rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}

.autocomplete__item:last-child {
  border-bottom: none;
}

.autocomplete__item:hover,
.autocomplete__item--active {
  background: rgba(0, 212, 255, 0.08);
}

.autocomplete__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.autocomplete__meta {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

.autocomplete__searching {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* ================================
   Spinner
   ================================ */
.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

.spinner circle {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 45;
  stroke-linecap: round;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================
   Loading
   ================================ */
.loading {
  text-align: center;
  padding: 3rem 0;
}

.loading__helix {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.loading__strand {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  background: var(--accent);
  animation: helix 1.2s ease-in-out infinite;
}

.loading__strand:nth-child(2) { animation-delay: 0.1s; background: #7c3aed; }
.loading__strand:nth-child(3) { animation-delay: 0.2s; background: var(--accent); }
.loading__strand:nth-child(4) { animation-delay: 0.3s; background: #7c3aed; }
.loading__strand:nth-child(5) { animation-delay: 0.4s; background: var(--accent); }
.loading__strand:nth-child(6) { animation-delay: 0.5s; background: #7c3aed; }

@keyframes helix {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

.loading__text {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ================================
   Error
   ================================ */
.error {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  color: var(--danger);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  animation: fadeInOut 5s ease forwards;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-8px); }
  8% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

/* ================================
   Utility
   ================================ */
.hidden {
  display: none !important;
}

/* ================================
   Card Wrapper
   ================================ */
.card-wrapper {
  margin-top: 2rem;
}

/* ================================
   DNA Card
   ================================ */
.dna-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.dna-card__header {
  background: linear-gradient(135deg, var(--bg-card-inner), #1e1b4b);
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dna-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dna-card__title-block {
  flex: 1;
  min-width: 0;
}

.dna-card__title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
}

.dna-card__hash {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.58rem;
  color: var(--text-muted);
  text-decoration: none;
  text-align: center;
  max-width: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.25rem;
  transition: color 0.2s;
}

.dna-card__hash:hover {
  color: var(--accent);
}

.dna-card__hash--copied {
  color: var(--success);
}

/* Tags row: tags + like */
.dna-card__tags-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* Like button */
.dna-card__like {
  flex-shrink: 0;
}

.dna-card__like-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
}

.dna-card__like-btn:hover {
  color: #e74c6f;
  border-color: #e74c6f;
}

.dna-card__like-btn--active {
  color: #e74c6f;
  border-color: #e74c6f;
}

.dna-card__like-btn--active .dna-card__like-icon {
  filter: drop-shadow(0 0 3px rgba(231, 76, 111, 0.5));
}

.dna-card__like-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.dna-card__like-count {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 1;
}

.dna-card__like-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.dna-card__qr-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 72px;
}

.dna-card__qr {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
}

.dna-card__qr svg {
  width: 100%;
  height: 100%;
}

.dna-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--accent);
}

.pill--vibe {
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.1);
  color: #c084fc;
}

.dna-card__body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ================================
   Card Sections
   ================================ */
.dna-section {
  background: var(--bg-card-inner);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.dna-section--full {
  grid-column: 1 / -1;
}

.dna-section__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* ================================
   Engagement Gauge
   ================================ */
.gauge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-svg {
  width: 130px;
  height: 80px;
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 12;
  stroke-linecap: round;
}

.gauge-fill {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s ease-out;
}

.gauge-value {
  font-size: 1.4rem;
  font-weight: 700;
  fill: var(--text-primary);
  text-anchor: middle;
}

.gauge-label {
  font-size: 0.72rem;
  fill: var(--text-secondary);
  text-anchor: middle;
}

/* ================================
   Session Length
   ================================ */
.session-row {
  display: flex;
  gap: 0.5rem;
}

.session-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.3rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}

.session-item--active {
  background: rgba(0, 212, 255, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.session-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.2rem;
}

.session-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.session-item--active .session-label {
  color: var(--accent);
}

/* ================================
   Difficulty Scale
   ================================ */
.difficulty-row {
  display: flex;
  gap: 0.35rem;
}

.diff-step {
  flex: 1;
  text-align: center;
  padding: 0.45rem 0.2rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}

.diff-step--active {
  border-color: transparent;
}

.diff-step__icon {
  font-size: 1rem;
  display: block;
}

.diff-step__label {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  font-weight: 600;
}

.diff-step--active .diff-step__label {
  color: var(--text-primary);
}

/* Difficulty level colors */
.diff-step--lv1.diff-step--active {
  background: rgba(46, 213, 115, 0.15);
  border-color: var(--success);
}
.diff-step--lv2.diff-step--active {
  background: rgba(255, 165, 2, 0.15);
  border-color: var(--warning);
}
.diff-step--lv3.diff-step--active {
  background: rgba(255, 107, 0, 0.15);
  border-color: #ff6b00;
}
.diff-step--lv4.diff-step--active {
  background: rgba(255, 71, 87, 0.15);
  border-color: var(--danger);
}

/* ================================
   Friction Bar
   ================================ */
.friction-bar-wrapper {
  margin-top: 0.25rem;
}

.friction-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
}

.friction-bar__fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease-out;
}

.friction-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.friction-explanation {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-style: italic;
}

/* ================================
   Radar Chart (Emotional Profile)
   ================================ */
.radar-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radar-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.radar-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.radar-axis {
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.radar-area {
  fill: rgba(0, 212, 255, 0.18);
  stroke: var(--accent);
  stroke-width: 2;
  transition: d 0.8s ease-out;
}

.radar-dot {
  fill: var(--accent);
  transition: cx 0.8s ease-out, cy 0.8s ease-out;
}

.radar-label {
  fill: var(--text-secondary);
  font-size: 9px;
  font-weight: 600;
  text-anchor: middle;
}

.radar-explanation {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.radar-explanation__row {
  margin-bottom: 0.25rem;
}

.radar-explanation__highlight {
  font-weight: 700;
  color: var(--accent);
}

.radar-explanation__secondary {
  font-weight: 600;
  color: var(--text-primary);
}

/* ================================
   Recommendation Traffic Light
   ================================ */
.traffic-light {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.traffic-bulbs {
  display: flex;
  gap: 0.45rem;
}

.traffic-bulb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.traffic-bulb--broad {
  background: rgba(46, 213, 115, 0.15);
}
.traffic-bulb--broad.traffic-bulb--active {
  background: var(--success);
  border-color: var(--success);
  box-shadow: 0 0 12px rgba(46, 213, 115, 0.5);
}

.traffic-bulb--niche {
  background: rgba(255, 165, 2, 0.15);
}
.traffic-bulb--niche.traffic-bulb--active {
  background: var(--warning);
  border-color: var(--warning);
  box-shadow: 0 0 12px rgba(255, 165, 2, 0.5);
}

.traffic-bulb--fans {
  background: rgba(255, 71, 87, 0.15);
}
.traffic-bulb--fans.traffic-bulb--active {
  background: var(--danger);
  border-color: var(--danger);
  box-shadow: 0 0 12px rgba(255, 71, 87, 0.5);
}

.traffic-label {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ================================
   Vibes section (bottom)
   ================================ */
.dna-card__footer {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vibes-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.vibes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ================================
   Cover Image
   ================================ */
.dna-card__cover {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.dna-card__cover-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  display: block;
}

/* ================================
   Screenshots Gallery
   ================================ */
.dna-card__screenshots {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.6rem;
}

.screenshots-gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 0;
  transition: border-color 0.2s, transform 0.2s;
}

.screenshots-gallery__item:hover {
  border-color: var(--accent);
  transform: scale(1.03);
}

.screenshots-gallery__item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

/* ================================
   Platforms
   ================================ */
.dna-card__platforms {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}

.platform-badge--link:hover {
  background: rgba(0, 212, 255, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Stats panel ── */

.stats-panel {
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.stats-panel__summary {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.stats-panel__stat {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.stats-panel__stat strong {
  color: var(--accent);
}

.stats-panel__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.stats-panel__recent {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stats-panel__game {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
  text-decoration: none;
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.5rem;
  transition: background 0.2s;
}

.stats-panel__game:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stats-panel__cover {
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
}

.stats-panel__cover--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stats-panel__game-title {
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ================================
   Offers / Deals
   ================================ */
.dna-card__offers {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.offers-group {
  margin-bottom: 1rem;
}

.offers-group:last-child {
  margin-bottom: 0;
}

.offers-group__source {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.offer-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.offer-card__img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.offer-card__info {
  padding: 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.offer-card__title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-card__platform {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-card__price-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.offer-card__discount {
  font-size: 0.72rem;
  font-weight: 700;
  color: #2ed573;
  background: rgba(46, 213, 115, 0.12);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.offer-card__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ================================
   Responsive
   ================================ */
@media (max-width: 600px) {
  .form__group {
    flex-direction: column;
  }

  .dna-card__body {
    grid-template-columns: 1fr;
  }

  .header__title {
    font-size: 1.5rem;
  }

  .container {
    padding: 1.25rem 0.75rem;
  }

  .radar-container {
    flex-direction: column;
    align-items: center;
  }
}
