/* =========================================================
   RAKIA GAMES — Portal CSS
   HUD / Sci-Fi Design Language
   ========================================================= */

:root {
  --bg-base: #0a1020;
  --bg-elevated: #0f1628;
  --bg-card: #121b31;
  --bg-overlay: rgba(10, 16, 32, 0.85);

  --accent: #4a9eff;
  --accent-bright: #6fb5ff;
  --accent-dim: #2d6fc4;
  --accent-glow: rgba(74, 158, 255, 0.35);

  --text-primary: #eef3fd;
  --text-secondary: #b5c2de;
  --text-muted: #7f8ba8;

  --border: rgba(74, 158, 255, 0.2);
  --border-strong: rgba(74, 158, 255, 0.45);

  --warn: #ffb86b;
  --success: #4ade80;

  --font-title: 'Orbitron', 'Rajdhani', system-ui, -apple-system, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans',
               'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Menlo', 'Consolas', monospace;

  --maxw: 1200px;
  --radius: 2px;

  --hud-line: 1px solid var(--border);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: normal;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p, li {
  letter-spacing: normal;
}

/* Scanline / grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(74, 158, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 158, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse at top,
    rgba(74, 158, 255, 0.08) 0%,
    transparent 50%
  );
}

/* =========================================================
   BOOT / LINK START OVERLAY
   ========================================================= */
.boot-locked {
  overflow: hidden;
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #05080f;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  color: var(--accent-bright);
  user-select: none;
  cursor: pointer;
}

.boot--play {
  display: flex;
  animation: boot-in 0.3s ease-out;
}

@keyframes boot-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scanline texture */
.boot::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(74, 158, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 3px;
  animation: boot-scan 8s linear infinite;
  opacity: 0.6;
}

@keyframes boot-scan {
  from { background-position: 0 0; }
  to { background-position: 0 100vh; }
}

.boot__frame {
  position: relative;
  width: min(640px, 92vw);
  padding: 36px 40px 28px;
  background: rgba(10, 16, 32, 0.85);
  border: 1px solid rgba(74, 158, 255, 0.25);
  backdrop-filter: blur(6px);
}

/* Corner brackets */
.boot__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: solid var(--accent);
  border-width: 0;
}
.boot__corner--tl { top: -2px; left: -2px; border-top-width: 2px; border-left-width: 2px; }
.boot__corner--tr { top: -2px; right: -2px; border-top-width: 2px; border-right-width: 2px; }
.boot__corner--bl { bottom: -2px; left: -2px; border-bottom-width: 2px; border-left-width: 2px; }
.boot__corner--br { bottom: -2px; right: -2px; border-bottom-width: 2px; border-right-width: 2px; }

/* Header & footer strips */
.boot__header,
.boot__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.boot__header {
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(74, 158, 255, 0.2);
}

.boot__footer {
  margin-top: 22px;
  padding-top: 10px;
  border-top: 1px dashed rgba(74, 158, 255, 0.2);
}

.boot__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.boot__skip {
  color: var(--text-muted);
  opacity: 0.6;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Body */
.boot__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.boot__logo {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 18px var(--accent-glow));
  animation: boot-logo 3.8s ease-out both;
}

@keyframes boot-logo {
  0%   { opacity: 0; transform: scale(0.85); filter: drop-shadow(0 0 0 transparent); }
  15%  { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 18px var(--accent-glow)); }
  80%  { transform: scale(1); filter: drop-shadow(0 0 22px var(--accent-glow)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 40px var(--accent-glow)); }
}

/* Log lines */
.boot__log {
  width: 100%;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-primary);
}

.boot__line {
  opacity: 0;
  transform: translateX(-6px);
  animation: boot-line 0.5s ease-out forwards;
  animation-delay: var(--d, 0s);
  letter-spacing: 0.04em;
}

@keyframes boot-line {
  to { opacity: 1; transform: translateX(0); }
}

.boot__ok { color: var(--success); font-weight: 600; }
.boot__hi { color: var(--accent-bright); font-weight: 600; }

.boot__dots::after {
  content: '';
  display: inline-block;
  width: 1.2em;
  text-align: left;
  animation: boot-dots 1s steps(4) infinite;
}

@keyframes boot-dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

/* Progress bar line */
.boot__line--bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.boot__bar {
  flex: 1;
  height: 8px;
  background: rgba(74, 158, 255, 0.12);
  border: 1px solid rgba(74, 158, 255, 0.3);
  overflow: hidden;
  position: relative;
}

.boot__bar-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 10px var(--accent-glow);
  animation: boot-fill 1.2s ease-out 2.3s forwards;
}

@keyframes boot-fill {
  to { width: 100%; }
}

.boot__pct {
  min-width: 3.4em;
  text-align: right;
  color: var(--accent-bright);
  font-weight: 700;
  opacity: 0;
  animation: boot-pct 0.4s ease-out 3.4s forwards;
}

@keyframes boot-pct {
  to { opacity: 1; }
}

/* LINK START */
.boot__start {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #ffffff;
  text-shadow: 0 0 30px var(--accent);
  opacity: 0;
  transform: translateY(6px);
  animation: boot-start 0.6s ease-out 3.2s forwards;
}

@keyframes boot-start {
  to { opacity: 1; transform: translateY(0); }
}

/* Flash at the end */
.boot__flash {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  animation: boot-flash 0.4s ease-out 3.5s forwards;
}

@keyframes boot-flash {
  0%   { opacity: 0; }
  40%  { opacity: 0.9; }
  100% { opacity: 0; }
}

/* End: fade out entire overlay */
.boot--end {
  animation: boot-out 0.6s ease-in forwards;
}

@keyframes boot-out {
  to { opacity: 0; transform: scale(1.02); }
}

@media (max-width: 560px) {
  .boot__frame {
    padding: 28px 22px 22px;
  }
  .boot__logo {
    width: 96px;
    height: 96px;
  }
  .boot__log {
    font-size: 12px;
  }
  .boot__header,
  .boot__footer {
    font-size: 9px;
  }
  .boot__skip {
    display: none;
  }
}

/* =========================================================
   TOP STATUS BAR (HUD)
   ========================================================= */
.hud-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 16, 32, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: var(--hud-line);
}

.hud-bar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.hud-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.hud-bar__left:hover {
  opacity: 0.85;
}

.hud-bar__mark {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.hud-bar__brand {
  font-family: var(--font-title);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  font-weight: 700;
}

.hud-bar__subpath {
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 2px;
}

.hud-bar__right {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hud-bar__right a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hud-bar__right a:hover {
  color: var(--accent-bright);
}

/* =========================================================
   CONTAINER & HUD FRAME
   ========================================================= */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hud-frame {
  position: relative;
  padding: 32px;
  background: var(--bg-elevated);
  border: var(--hud-line);
}

.hud-frame::before,
.hud-frame::after,
.hud-frame > .corner-tl,
.hud-frame > .corner-tr,
.hud-frame > .corner-bl,
.hud-frame > .corner-br {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
}

.hud-frame::before {
  top: -1px;
  left: -1px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.hud-frame::after {
  top: -1px;
  right: -1px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 120px 0 100px;
  position: relative;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.hero__label::before {
  content: '▸';
  font-size: 14px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #a8c5f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px var(--accent-glow);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  letter-spacing: normal;
  color: var(--accent-bright);
  margin-bottom: 44px;
  font-weight: 400;
  font-style: italic;
}

.hero__brand-accent {
  color: var(--accent-bright);
  font-weight: 600;
}

.hero__desc {
  max-width: 680px;
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 56px;
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  color: var(--accent-bright);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
}

.btn:hover {
  color: var(--bg-base);
  box-shadow: 0 0 20px var(--accent-glow);
}

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

.btn--primary {
  background: var(--accent);
  color: var(--bg-base);
  font-weight: 700;
}

.btn--primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn--ghost {
  border-color: var(--border-strong);
  color: var(--text-secondary);
}

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

/* =========================================================
   SECTION
   ========================================================= */
.section {
  padding: 96px 0;
  position: relative;
}

.section--surface {
  background: linear-gradient(180deg, rgba(15, 22, 40, 0.6) 0%, rgba(15, 22, 40, 0.2) 100%);
  border-top: var(--hud-line);
  border-bottom: var(--hud-line);
  margin: 24px 0;
}

.section__header {
  margin-bottom: 56px;
  padding-bottom: 18px;
  border-bottom: var(--hud-line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.section__label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
}

.section__label::before {
  content: '> ';
  color: var(--accent-bright);
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.section__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

/* =========================================================
   GAMES GRID
   ========================================================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.game-card {
  position: relative;
  background: var(--bg-card);
  border: var(--hud-line);
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-glow);
}

.game-card__visual {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a2444 0%, #0a1020 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: var(--hud-line);
}

.game-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 158, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.game-card__visual-text {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
  text-shadow: 0 0 20px var(--accent-glow);
  position: relative;
  z-index: 1;
}

.game-card__visual--image {
  padding: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.15) 0%,
    #0a0a1a 70%
  );
}

.game-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.game-card:hover .game-card__image {
  transform: scale(1.04);
}

.game-card__body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.game-card__tag {
  padding: 4px 10px;
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 500;
}

.game-card__title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 2px 0;
}

.game-card__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
}

.game-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: var(--hud-line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.game-card__status {
  color: var(--warn);
}

.game-card__status--active {
  color: var(--success);
}

.game-card__arrow {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.game-card:hover .game-card__arrow {
  transform: translateX(4px);
}

/* Placeholder "coming soon" card */
.game-card--placeholder {
  border-style: dashed;
  opacity: 0.6;
  cursor: default;
}

.game-card--placeholder:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.game-card--placeholder .game-card__visual-text {
  color: var(--text-muted);
  text-shadow: none;
  font-size: 1.2rem;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.about__avatar {
  position: relative;
  aspect-ratio: 3/4;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(74, 158, 255, 0.18) 0%,
    rgba(26, 36, 68, 0.4) 40%,
    transparent 80%
  );
  border: var(--hud-line);
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
}

.about__avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 158, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.about__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px var(--accent-glow));
}

.about__avatar-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  z-index: 2;
  text-shadow: 0 0 10px var(--bg-base);
}

.about__body h3 {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.about__body .about__role {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}

.about__body p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 2;
  font-size: 1.05rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: var(--hud-line);
}

.about__stat {
  font-family: var(--font-mono);
}

.about__stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}

.about__stat-value {
  font-size: 1.15rem;
  color: var(--accent-bright);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* =========================================================
   STREAMING
   ========================================================= */
.streaming {
  background: var(--bg-elevated);
  border: var(--hud-line);
  padding: 48px;
  position: relative;
}

.streaming__note {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: normal;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
}

.streaming__games {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.tag-chip {
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  color: var(--accent-bright);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.streaming__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.stream-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: var(--hud-line);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.stream-link:hover {
  border-color: var(--accent);
  background: var(--bg-base);
  transform: translateX(4px);
}

.stream-link__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  border: var(--hud-line);
  color: var(--accent);
  flex-shrink: 0;
}

.stream-link__body {
  flex: 1;
  min-width: 0;
}

.stream-link__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stream-link__handle {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: var(--hud-line);
  padding: 48px 0 32px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__brand {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  margin-bottom: 10px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: normal;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer__links a {
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer__links a:hover {
  color: var(--accent-bright);
}

.footer__copy {
  margin-top: 40px;
  padding-top: 24px;
  border-top: var(--hud-line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 880px) {
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about__avatar {
    max-width: 280px;
  }
  .streaming {
    padding: 32px 24px;
  }
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 60px 0 40px;
  }
  .section {
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .hud-bar__right {
    gap: 16px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .hud-bar__right {
    display: none;
  }
  .container {
    padding: 0 16px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer__inner {
    flex-direction: column;
  }
}

/* =========================================================
   UTILS
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.mono {
  font-family: var(--font-mono);
}

/* Subtle entrance animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fadeUp 0.6s ease-out backwards;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }
