/* ═══════════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #ff0080;
  --cyan: #00ffff;
  --purple: #8000ff;
  --orange: #ff8000;
  --green: #00ff80;
  --dark: #080808;
  --dark2: #111;
  --dark3: #1a1a1a;
  --text: #e8e8e8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════
   GLOBAL FX — SCANLINES & PARTICLES
═══════════════════════════════════════════════ */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(transparent 0px, transparent 3px,
      rgba(0, 0, 0, 0.04) 3px, rgba(0, 0, 0, 0.04) 4px);
  animation: scanMove 10s linear infinite;
}

@keyframes scanMove {
  to {
    background-position: 0 4px;
  }
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
}

@keyframes pFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: var(--o0);
  }

  50% {
    transform: translate(var(--dx), var(--dy)) scale(var(--sm));
    opacity: var(--o1);
  }
}

/* ═══════════════════════════════════════════════
   STAGE SYSTEM
═══════════════════════════════════════════════ */
.stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s ease;
  z-index: 100;
}

.stage.show {
  opacity: 1;
  pointer-events: all;
}

.stage.hiding {
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   STAGE 1 — TERMINAL
═══════════════════════════════════════════════ */
#stage-terminal {
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terminal-window {
  width: min(700px, 94vw);
  background: #1c1c1c;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .8), 0 0 0 1px rgba(255, 255, 255, .08);
  overflow: hidden;
}

.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2d2d2d;
  padding: 10px 14px;
  user-select: none;
}

.t-dots {
  display: flex;
  gap: 7px;
}

.t-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.t-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: .78rem;
  color: #888;
}

.terminal-body {
  padding: 28px 30px 36px;
  min-height: 320px;
  font-family: 'Share Tech Mono', monospace;
  font-size: .95rem;
  line-height: 1.9;
  color: #00e676;
}

.t-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.t-prompt {
  color: #00bcd4;
}

.t-cmd {
  color: #fff;
}

.t-out {
  color: #aaa;
  padding-left: 4px;
}

.t-cursor {
  display: inline-block;
  width: 9px;
  height: 17px;
  background: #00e676;
  animation: blink .8s step-end infinite;
  vertical-align: middle;
  margin-left: 3px;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.t-skip-btn {
  display: block;
  margin: 30px auto 0;
  font-family: 'Orbitron', sans-serif;
  font-size: .7rem;
  letter-spacing: 2px;
  color: #555;
  background: none;
  border: 1px solid #333;
  padding: 6px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s;
}

.t-skip-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* ═══════════════════════════════════════════════
   STAGE 2 — GAME LIBRARY
═══════════════════════════════════════════════ */
#stage-library {
  background: #050508;
}

.lib-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0, 50, 80, .5) 0%, transparent 70%);
}

.lib-layout {
  position: relative;
  display: flex;
  height: 100vh;
  z-index: 2;
}

/* Sidebar */
.lib-sidebar {
  width: 68px;
  background: rgba(255, 255, 255, .03);
  border-right: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0;
  gap: 8px;
}

.lib-sidebar-logo {
  font-size: 1.4rem;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
  margin-bottom: 20px;
}

.lib-sidebar-icons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.lsi {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
  color: #555;
}

.lsi.active,
.lsi:hover {
  background: rgba(0, 255, 255, .1);
  color: #fff;
  box-shadow: 0 0 14px rgba(0, 255, 255, .2);
}

.lsi-bottom {
  margin-top: auto;
}

/* Main */
.lib-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lib-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.lib-tabs {
  display: flex;
  gap: 28px;
}

.lib-tab {
  font-family: 'Orbitron', sans-serif;
  font-size: .72rem;
  letter-spacing: 2px;
  color: #555;
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

.lib-tab.active {
  color: #fff;
  border-bottom-color: var(--cyan);
}

.lib-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lib-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}

.lib-username {
  font-family: 'Orbitron', sans-serif;
  font-size: .72rem;
  letter-spacing: 1.5px;
  color: #ccc;
}

/* Hero */
.lib-hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.lib-hero-art {
  position: absolute;
  inset: 0;
}

.lib-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(1.2);
}

.lib-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 8, .95) 0%, rgba(5, 5, 8, .7) 40%, transparent 80%),
    linear-gradient(0deg, rgba(5, 5, 8, .9) 0%, transparent 50%);
}

.lib-hero-info {
  position: relative;
  z-index: 2;
  padding: 0 60px 40px;
  max-width: 560px;
}

.lib-publisher {
  font-family: 'Orbitron', sans-serif;
  font-size: .68rem;
  letter-spacing: 3px;
  color: var(--cyan);
  margin-bottom: 10px;
  text-shadow: 0 0 10px var(--cyan);
}

.lib-game-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(0, 255, 255, .3);
  margin-bottom: 6px;
}

.lib-game-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 6px;
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink);
  margin-bottom: 20px;
}

.lib-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.lib-badge {
  font-family: 'Orbitron', sans-serif;
  font-size: .6rem;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border: 1px solid rgba(0, 255, 255, .4);
  border-radius: 4px;
  color: #aaa;
}

.lib-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 30px;
}

.lib-stat {
  display: flex;
  flex-direction: column;
}

.lib-stat strong {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan);
  line-height: 1;
}

.lib-stat span {
  font-size: .75rem;
  color: #666;
  letter-spacing: 1px;
  margin-top: 2px;
}

.lib-launch-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 3px;
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% 100%, calc(100% - 12px) 100%, 12px 100%, 0% 100%, 0% 12px);
  box-shadow: 0 0 30px rgba(0, 255, 255, .5);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.lib-launch-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.lib-launch-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 50px rgba(0, 255, 255, .8);
}

.lib-launch-btn:hover::before {
  transform: translateX(100%);
}

.lib-launch-btn:active {
  transform: scale(.98);
}

/* Strip */
.lib-strip {
  padding: 16px 60px 20px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  background: rgba(0, 0, 0, .4);
  flex-shrink: 0;
}

.lib-strip-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: .65rem;
  letter-spacing: 3px;
  color: #444;
  margin-bottom: 12px;
}

.lib-strip-row {
  display: flex;
  gap: 12px;
}

.lib-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}

.lib-card:hover {
  background: rgba(255, 255, 255, .09);
  border-color: var(--accent, var(--cyan));
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent, var(--cyan)) 40%, transparent);
}

.lc-icon {
  font-size: 1.4rem;
}

.lib-card span {
  font-size: .72rem;
  letter-spacing: 1.5px;
  color: #aaa;
}

/* ═══════════════════════════════════════════════
   STAGE 3 — ROCKSTAR INTRO
═══════════════════════════════════════════════ */
#stage-rockstar {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Siren lights */
.rs-siren {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

.rs-siren-left {
  left: 0;
  background: radial-gradient(ellipse at left center, rgba(255, 30, 30, .18) 0%, transparent 70%);
}

.rs-siren-right {
  right: 0;
  background: radial-gradient(ellipse at right center, rgba(30, 50, 255, .18) 0%, transparent 70%);
}

@keyframes sirenL {

  0%,
  100% {
    opacity: 0
  }

  50% {
    opacity: 1
  }
}

@keyframes sirenR {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.rs-siren-left.active {
  animation: sirenL .4s ease-in-out infinite;
}

.rs-siren-right.active {
  animation: sirenR .4s ease-in-out infinite;
}

.rs-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

/* R★ logo */
.rs-logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  transform: scale(.8);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.rs-logo.visible {
  opacity: 1;
  transform: scale(1);
}

.rs-r {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 10rem);
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 255, 255, .4);
}

.rs-star {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-top: .4em;
  text-shadow: 0 0 20px rgba(255, 255, 255, .5);
}

.rs-presents {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(.65rem, 1.5vw, .9rem);
  letter-spacing: 6px;
  color: #666;
  opacity: 0;
  transition: opacity .8s ease;
}

.rs-presents.visible {
  opacity: 1;
}

.rs-namecard {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  margin-top: 20px;
}

.rs-namecard.visible {
  opacity: 1;
  transform: translateY(0);
}

.rs-name {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 255, 255, .5), 0 0 60px rgba(0, 255, 255, .2);
}

.rs-namesub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 8px;
  color: var(--cyan);
  margin-top: 12px;
  text-shadow: 0 0 12px var(--cyan);
}

.rs-loader {
  margin-top: 30px;
  width: min(400px, 80vw);
  opacity: 0;
  transition: opacity .5s;
}

.rs-loader.visible {
  opacity: 1;
}

.rs-bar {
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 3px;
  overflow: hidden;
}

.rs-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 10px var(--cyan);
  transition: width 1.6s ease;
}

.rs-loader-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: .72rem;
  letter-spacing: 3px;
  color: #444;
  margin-top: 10px;
  text-align: right;
}

/* ═══════════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════════ */
#main-content {
  position: relative;
  z-index: 2;
}

/* ── NAV ── */
.hud-nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 60px;
  background: rgba(8, 8, 8, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  z-index: 500;
}

.hud-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 4px;
  color: #fff;
}

.hud-links {
  display: flex;
  gap: 36px;
}

.hud-link {
  font-size: .85rem;
  letter-spacing: 1.5px;
  color: #666;
  text-decoration: none;
  transition: color .25s;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.hud-link:hover {
  color: #fff;
}

.hud-burger {
  display: none;
  background: none;
  border: none;
  color: #888;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── HERO — minimal black ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: #080808;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

.hero-bg {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 80px 80px 80px;
  max-width: 780px;
  animation: fadeUp .7s ease both;
}

/* Name — clean, large */
.glitch-wrap {
  margin-bottom: 28px;
}

.glitch-line {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.1;
  color: #ffffff;
  position: relative;
}

/* Subtle glitch — barely visible on all-black */
.glitch-line::before,
.glitch-line::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .25;
}

.glitch-line::before {
  color: var(--cyan);
  clip-path: inset(30% 0 50% 0);
  transform: translateX(-2px);
  animation: ga 6s infinite linear alternate-reverse;
}

.glitch-line::after {
  color: var(--pink);
  clip-path: inset(60% 0 10% 0);
  transform: translateX(2px);
  animation: gb 5s infinite linear alternate-reverse;
}

/* Role tag */
.hero-roles {
  font-size: 1rem;
  letter-spacing: 3px;
  margin: 18px 0 10px;
  color: #555;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}

.neon-word {
  color: var(--cyan);
  animation: npulse 3s ease-in-out infinite;
}

@keyframes npulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

/* Tagline / bio */
.hero-tagline {
  font-size: 1.15rem;
  color: #999;
  line-height: 1.8;
  letter-spacing: .3px;
  margin: 16px 0 40px;
  max-width: 560px;
}

/* CTAs */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cyber {
  display: inline-block;
  padding: 11px 28px;
  font-family: 'Rajdhani', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  border-radius: 4px;
  background: #fff;
  color: #080808;
  border: none;
}

.btn-cyber:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #333;
  color: #aaa;
}

.btn-outline:hover {
  border-color: #666;
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

/* Bottom bar */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: rgba(255, 255, 255, .15);
  animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes ga {
  0% {
    clip-path: inset(10% 0 80% 0)
  }

  20% {
    clip-path: inset(40% 0 30% 0)
  }

  40% {
    clip-path: inset(20% 0 60% 0)
  }

  60% {
    clip-path: inset(70% 0 10% 0)
  }

  80% {
    clip-path: inset(50% 0 25% 0)
  }

  100% {
    clip-path: inset(30% 0 55% 0)
  }
}

@keyframes gb {
  0% {
    clip-path: inset(60% 0 10% 0)
  }

  20% {
    clip-path: inset(10% 0 60% 0)
  }

  40% {
    clip-path: inset(80% 0 5% 0)
  }

  60% {
    clip-path: inset(25% 0 45% 0)
  }

  80% {
    clip-path: inset(5% 0 75% 0)
  }

  100% {
    clip-path: inset(45% 0 20% 0)
  }
}


/* ══════════════════════════════════════════════
   PORTFOLIO — SAINISAAB-INSPIRED MINIMAL
══════════════════════════════════════════════ */

/* Base */
#main-content {
  background: #111;
  color: #d1d1d1;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}

/* ── THEME TRANSITION ── */
#main-content,
#main-content *,
.site-nav,
.site-nav * {
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease !important;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  height: 52px;
  background: rgba(17, 17, 17, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  z-index: 500;
}

.nav-links {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: .82rem;
  color: #666;
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .3px;
}

.nav-link:hover,
.nav-link.active-link {
  color: #e8e8e8;
}

.nav-theme-btn {
  background: none;
  border: none;
  color: #555;
  font-size: 1rem;
  cursor: pointer;
  transition: color .2s;
  padding: 4px;
}

.nav-theme-btn:hover {
  color: #ccc;
}

/* ── LAYOUT ── */
.site-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}

/* ── INTRO ── */
.s-intro {
  margin-bottom: 72px;
}

.intro-greeting {
  font-family: 'Instrument Serif', 'Georgia', serif;
  font-style: italic;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 400;
  color: #f0f0f0;
  margin-bottom: 28px;
  line-height: 1.1;
}

.intro-block {
  margin-bottom: 20px;
}

.intro-name {
  font-size: 1rem;
  font-weight: 500;
  color: #e8e8e8;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.intro-badge {
  font-size: .7rem;
  color: #4a9eff;
}

/* Verified badge image */
.verified-badge {
  height: 21px;
  vertical-align: middle;
  margin-left: -10px;
  display: inline-block;
}

/* Greeting cycling */
#greeting-text {
  display: inline-block;
}

#greeting-text.fade-out {
  animation: fadeOutUp 0.35s ease forwards;
}

#greeting-text.fade-in {
  animation: fadeInUp 0.35s ease forwards;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shimmer role */
.shimmer-role {
  font-size: .9rem;
  background: linear-gradient(90deg,
      #555 0%, #555 30%,
      #e0e0e0 50%,
      #555 70%, #555 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* ── TECH LOGOS GRID ── */
.tech-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-logo {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  border: none;
  cursor: default;
  transition: transform .2s;
}

.tech-logo:hover {
  transform: translateY(-3px);
}

.tech-logo i {
  font-size: 1.6rem;
  line-height: 1;
}

/* Tooltip */
.tech-logo::after {
  content: attr(data-name);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, .1);
  color: #ccc;
  font-size: .68rem;
  letter-spacing: .5px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  transform: translateX(-50%) translateY(4px);
}

.tech-logo:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.intro-role {
  font-size: .9rem;
  color: #888;
}

.role-muted {
  color: #555;
}

.intro-bio {
  font-size: .93rem;
  color: #888;
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 560px;
}

.bio-highlight {
  color: #c8c8c8;
  font-weight: 500;
}

/* ── SECTIONS ── */
.s-section {
  margin-bottom: 64px;
}

.s-heading {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 24px;
}

.s-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.s-heading-row .s-heading {
  margin-bottom: 0;
}

/* Wheel trigger */
.wheel-trigger-btn {
  font-size: .68rem;
  color: #444;
  background: none;
  border: 1px solid #2a2a2a;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: .5px;
  transition: all .2s;
  font-family: 'Inter', sans-serif;
}

.wheel-trigger-btn:hover {
  color: #aaa;
  border-color: #444;
}

/* ── EXPERIENCE (expandable) ── */
.exp-item {
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.exp-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.exp-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s;
}

.exp-summary::-webkit-details-marker {
  display: none;
}

.exp-summary:hover .exp-org {
  color: #e8e8e8;
}

.exp-chevron {
  font-size: 1.1rem;
  color: #444;
  transition: transform .25s, color .2s;
  display: inline-block;
  width: 16px;
  flex-shrink: 0;
}

details[open] .exp-chevron {
  transform: rotate(90deg);
  color: #888;
}

.exp-org {
  font-size: .9rem;
  color: #bbb;
  font-weight: 500;
  flex: 1;
}

.exp-date {
  font-size: .75rem;
  color: #555;
  flex-shrink: 0;
}

.exp-body {
  padding: 0 0 20px 26px;
}

.exp-role-title {
  font-size: .78rem;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: .3px;
}

.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-list li {
  font-size: .88rem;
  color: #777;
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}

.exp-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #3a3a3a;
}

/* ── PROJECTS (row list) ── */
.proj-list {
  display: flex;
  flex-direction: column;
}

.proj-row {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.proj-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.proj-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.proj-row-name {
  font-size: .92rem;
  color: #ccc;
  font-weight: 500;
}

.proj-row-link {
  color: #ccc;
  text-decoration: none;
  transition: color .2s;
}

.proj-row-link:hover {
  color: #fff;
}

.proj-row-tag {
  font-size: .65rem;
  color: #555;
  border: 1px solid #2a2a2a;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .5px;
  white-space: nowrap;
}

.proj-row-desc {
  font-size: .86rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 6px;
}

.proj-row-tech {
  font-family: 'Share Tech Mono', monospace;
  font-size: .72rem;
  letter-spacing: .3px;
  background: linear-gradient(90deg,
      #555 0%, #555 30%,
      #e0e0e0 50%,
      #555 70%, #555 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shimmer 3.5s linear infinite;
}

/* ── SKILLS ── */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.skill-group-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 4px;
}

.skill-group-items {
  font-size: .86rem;
  color: #777;
  line-height: 1.7;
}

/* ── LANGUAGES ── */
.lang-list {
  display: flex;
  flex-direction: column;
}

.lang-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.lang-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.lang-name {
  font-size: .9rem;
  color: #bbb;
  font-weight: 500;
  min-width: 80px;
}

.lang-level {
  font-size: .75rem;
  color: #444;
  margin-left: auto;
}

/* Stars */
.wanted-stars {
  display: flex;
  gap: 4px;
}

.star {
  font-size: .75rem;
  opacity: 0;
  transform: scale(0);
  color: #777;
}

.star.filled {
  color: #c8c8c8;
}

.star.empty {
  color: #2a2a2a;
}

.wanted-stars.animate .star {
  animation: starPop .35s ease forwards;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0)
  }

  70% {
    transform: scale(1.15)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

/* ── EDUCATION ── */
.edu-list {
  display: flex;
  flex-direction: column;
}

.edu-row {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.edu-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.edu-institution {
  font-size: .92rem;
  color: #ccc;
  font-weight: 500;
}

.edu-date {
  font-size: .75rem;
  color: #555;
  flex-shrink: 0;
}

.edu-degree {
  font-size: .86rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 2px;
}

.edu-location {
  font-size: .75rem;
  color: #444;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: .3px;
}

/* ── CONTACT ── */
.contact-intro {
  font-size: .88rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.75;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  color: #888;
  text-decoration: none;
  transition: color .2s;
}

.contact-link svg {
  flex-shrink: 0;
  opacity: .6;
  transition: opacity .2s;
}

a.contact-link:hover {
  color: #e8e8e8;
}

a.contact-link:hover svg {
  opacity: 1;
}

.contact-loc {
  cursor: default;
}

/* ── FOOTER ── */
.site-footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 24px 48px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: .75rem;
  color: #333;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .site-main {
    padding: 70px 18px 48px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proj-row-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .exp-date {
    display: none;
  }

  .lang-row {
    gap: 12px;
  }
}

.ps-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section header */
.ps-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.ps-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: .8rem;
  color: #444;
  letter-spacing: 1px;
}

.ps-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #666;
  text-transform: uppercase;
}

/* Wheel trigger — kept subtle */
.wheel-trigger-btn {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Share Tech Mono', monospace;
  font-size: .7rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 3px;
  background: transparent;
  border: 1px solid #222;
  color: #444;
  cursor: pointer;
  transition: all .2s;
}

.wheel-trigger-btn:hover {
  border-color: #555;
  color: #aaa;
}

.wheel-trigger-btn span {
  font-size: 1rem;
}

/* Divider */
.ps-divider {
  height: 1px;
  background: #1a1a1a;
  margin-bottom: 48px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 60px;
  align-items: start;
}

.content-box {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.body-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #999;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  letter-spacing: .2px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.a-stat {
  display: flex;
  flex-direction: column;
  border: none;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  border-left: 2px solid #1e1e1e;
  padding-left: 14px;
  transition: border-color .2s;
}

.a-stat:hover {
  border-left-color: #444;
  transform: none;
}

.as-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: none;
}

.as-label {
  font-size: .65rem;
  letter-spacing: 2px;
  color: #444;
  margin-top: 2px;
}

/* ── PROJECTS ── */
.proj-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proj-card {
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  padding: 32px 0;
  border-bottom: 1px solid #161616;
  transition: none;
  --c: #fff;
  backdrop-filter: none;
}

.proj-card:first-child {
  border-top: 1px solid #161616;
}

.proj-card:hover {
  transform: none;
  box-shadow: none;
  border-color: #222;
}

.proj-glow {
  display: none;
}

.proj-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.proj-icon {
  font-size: 1.1rem;
  margin-bottom: 0;
  filter: none;
}

.proj-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: none;
  margin-bottom: 0;
  flex: 1;
}

.proj-link {
  color: #fff;
  text-decoration: none;
}

.proj-link:hover {
  color: #aaa;
}

.proj-desc {
  font-size: .95rem;
  line-height: 1.75;
  color: #666;
  margin: 10px 0 14px;
}

.proj-tech {
  font-family: 'Share Tech Mono', monospace;
  font-size: .72rem;
  color: #444;
  letter-spacing: .5px;
  border-top: none;
  padding-top: 0;
  margin-bottom: 12px;
}

.proj-live-btn {
  display: inline-block;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: #666;
  background: none;
  border: none;
  clip-path: none;
  box-shadow: none;
  transition: color .2s;
}

.proj-live-btn:hover {
  color: #fff;
  transform: none;
  box-shadow: none;
}

/* row layout for each card */
.proj-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 16px;
}

.proj-icon {
  grid-column: 1;
  grid-row: 1 / 5;
  align-self: start;
  padding-top: 3px;
  color: #555;
}

.proj-name {
  grid-column: 2;
  grid-row: 1;
}

.proj-desc {
  grid-column: 2;
  grid-row: 2;
}

.proj-tech {
  grid-column: 2;
  grid-row: 3;
}

.proj-live-btn {
  grid-column: 2;
  grid-row: 4;
}

/* ── SKILLS TOOLBOX ── */
.toolbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.toolbox-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.toolbox-list li {
  position: relative;
  padding: 0 0 0 18px;
  background: none;
  border: none;
  border-radius: 0;
  font-size: .97rem;
  line-height: 1.75;
  color: #777;
  transition: color .2s;
  box-shadow: none;
}

.toolbox-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #333;
  font-size: 1.1rem;
  top: 0;
  text-shadow: none;
}

.toolbox-list li:hover {
  color: #ccc;
  transform: none;
  border: none;
  box-shadow: none;
}

/* ── LANGUAGES ── */
.lang-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 32px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 22px 0;
  border-bottom: 1px solid #161616;
  transition: none;
}

.lang-item:first-child {
  border-top: 1px solid #161616;
}

.lang-item:hover {
  border-color: #222;
  transform: none;
  box-shadow: none;
}

.lang-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #888;
  text-shadow: none;
  min-width: 100px;
}

/* Stars — desaturated, minimal */
.wanted-stars {
  display: flex;
  gap: 6px;
}

.star {
  font-size: 1.1rem;
  opacity: 0;
  transform: scale(0);
}

.star.filled {
  color: #fff;
  text-shadow: none;
}

.star.empty {
  color: #222;
  text-shadow: none;
}

.wanted-stars.animate .star {
  animation: starPop .4s ease forwards;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0)
  }

  60% {
    transform: scale(1.1)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

/* ── CONTACT ── */
.contact-box {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid #161616;
}

.contact-row:first-child {
  border-top: 1px solid #161616;
}

.contact-lbl {
  font-family: 'Share Tech Mono', monospace;
  font-size: .7rem;
  letter-spacing: 2px;
  color: #444;
  text-shadow: none;
  min-width: 90px;
}

.contact-val {
  font-size: .97rem;
  color: #aaa;
  text-shadow: none;
  text-decoration: none;
  transition: color .2s;
}

a.contact-val:hover {
  color: #fff;
  text-shadow: none;
}

/* ── FOOTER ── */
.portfolio-footer {
  text-align: left;
  padding: 40px 0;
  border-top: 1px solid #161616;
  background: none;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 40px;
  font-family: 'Share Tech Mono', monospace;
  font-size: .7rem;
  letter-spacing: 1.5px;
  color: #333;
  position: relative;
  z-index: 2;
}





/* ═══════════════════════════════════════════════
   WEAPON WHEEL OVERLAY
═══════════════════════════════════════════════ */
.wheel-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity .35s ease;
}

.wheel-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.wheel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(6px);
}

.wheel-wrap {
  position: relative;
  width: 600px;
  height: 600px;
  animation: wheelIn .3s cubic-bezier(.34, 1.56, .64, 1) both;
}

@keyframes wheelIn {
  from {
    transform: scale(.4);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.wheel-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 30px rgba(0, 0, 0, .8));
}

/* Wheel segments (filled via JS, but base style) */
.w-seg {
  fill: rgba(20, 20, 20, .85);
  stroke: rgba(255, 255, 255, .07);
  stroke-width: 1;
  cursor: pointer;
  transition: fill .2s;
}

.w-seg:hover,
.w-seg.active {
  fill: rgba(40, 40, 40, .95);
}

.w-seg-overlay {
  fill: transparent;
  cursor: pointer;
}

.w-icon {
  font-size: 22px;
  pointer-events: none;
  text-anchor: middle;
  dominant-baseline: middle;
}

.w-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  fill: #888;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  letter-spacing: 1px;
  transition: fill .2s;
}

.w-label.active {
  fill: #fff;
}

/* Center info */
.wheel-center-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
}

.wc-icon {
  font-size: 2.6rem;
  margin-bottom: 8px;
}

.wc-title {
  font-family: 'Orbitron', sans-serif;
  font-size: .9rem;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 0 0 12px var(--cyan);
  margin-bottom: 6px;
}

.wc-desc {
  font-size: .78rem;
  color: #888;
  max-width: 140px;
  line-height: 1.6;
}

/* Center circle (drawn in JS) */
.w-center-circle {
  fill: rgba(10, 10, 10, .9);
  stroke: rgba(0, 255, 255, .2);
  stroke-width: 1;
}

.wheel-hint {
  position: relative;
  margin-top: 24px;
  z-index: 1;
  font-family: 'Share Tech Mono', monospace;
  font-size: .68rem;
  letter-spacing: 2px;
  color: #444;
}

.wheel-type-label {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: .65rem;
  letter-spacing: 5px;
  color: #555;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .lib-hero-info {
    padding: 0 30px 30px;
  }

  .lib-game-title {
    font-size: 2.4rem;
  }

  .hero-body {
    padding: 0 30px;
  }
}

@media (max-width: 680px) {
  .hud-nav {
    padding: 0 20px;
  }

  .hud-links {
    display: none;
    flex-direction: column;
  }

  .hud-links.open {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, .97);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 255, 255, .2);
  }

  .hud-burger {
    display: block;
  }

  .ps-title {
    font-size: 1.8rem;
  }

  .ps-num {
    font-size: 1.8rem;
  }

  .wheel-wrap {
    width: 340px;
    height: 340px;
  }

  .wc-icon {
    font-size: 1.8rem;
  }

  .wc-title {
    font-size: .72rem;
  }

  .lib-sidebar {
    display: none;
  }

  .lib-strip-row {
    gap: 8px;
    overflow-x: auto;
  }

  .lib-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ══════════════════════════════════════════════
   LIGHT MODE — body.light
   Stages stay dark (cinematic). Only main-content flips.
══════════════════════════════════════════════ */
body.light #main-content {
  background: #f5f4f0;
  color: #1a1a1a;
}

body.light .site-nav {
  background: rgba(245, 244, 240, .96);
  border-bottom-color: rgba(0, 0, 0, .08);
}

body.light .nav-link {
  color: #999;
}

body.light .nav-link:hover,
body.light .nav-link.active-link {
  color: #111;
}

body.light .nav-theme-btn {
  color: #999;
}

body.light .nav-theme-btn:hover {
  color: #333;
}

/* Intro */
body.light .intro-greeting {
  color: #111;
}

body.light .intro-name {
  color: #1a1a1a;
}

body.light .intro-bio {
  color: #666;
}

body.light .bio-highlight {
  color: #222;
}

/* Shimmer role — dark sweep on light bg */
body.light .shimmer-role {
  background: linear-gradient(90deg,
      #aaa 0%, #aaa 30%,
      #111 50%,
      #aaa 70%, #aaa 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sections */
body.light .s-heading {
  color: #aaa;
}

body.light .s-section {
  border-color: rgba(0, 0, 0, .06);
}

/* Projects */
body.light .proj-row {
  border-top-color: rgba(0, 0, 0, .07);
}

body.light .proj-row:last-child {
  border-bottom-color: rgba(0, 0, 0, .07);
}

body.light .proj-row-name,
body.light .proj-row-link {
  color: #222;
}

body.light .proj-row-link:hover {
  color: #000;
}

body.light .proj-row-tag {
  color: #999;
  border-color: #ddd;
}

body.light .proj-row-desc {
  color: #666;
}

/* Shimmer tech stack — dark sweep on light bg */
body.light .proj-row-tech {
  background: linear-gradient(90deg,
      #bbb 0%, #bbb 30%,
      #222 50%,
      #bbb 70%, #bbb 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

/* Tech logo tooltips */
body.light .tech-logo::after {
  background: #fff;
  border-color: rgba(0, 0, 0, .12);
  color: #333;
}

/* Languages */
body.light .lang-row {
  border-top-color: rgba(0, 0, 0, .07);
}

body.light .lang-row:last-child {
  border-bottom-color: rgba(0, 0, 0, .07);
}

body.light .lang-name {
  color: #333;
}

body.light .lang-level {
  color: #aaa;
}

body.light .star.filled {
  color: #555;
}

body.light .star.empty {
  color: #ddd;
}

/* Education */
body.light .edu-row {
  border-top-color: rgba(0, 0, 0, .07);
  border-bottom-color: rgba(0, 0, 0, .07);
}

body.light .edu-institution {
  color: #222;
}

body.light .edu-date {
  color: #aaa;
}

body.light .edu-degree {
  color: #555;
}

body.light .edu-location {
  color: #bbb;
}

/* Contact */
body.light .contact-intro {
  color: #777;
}

body.light .contact-link {
  color: #777;
}

body.light a.contact-link:hover {
  color: #111;
}

/* Wheel overlay */
body.light .wheel-hint {
  color: #999;
}

body.light .wheel-trigger-btn {
  color: #aaa;
  border-color: #ddd;
}

body.light .wheel-trigger-btn:hover {
  color: #333;
  border-color: #aaa;
}

/* Footer */
body.light .site-footer {
  border-top-color: rgba(0, 0, 0, .07);
  color: #bbb;
}