/* Custom Cursor */
.cursor-dot, .cursor-outline {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-outline {
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
}
body:hover .cursor-dot, body:hover .cursor-outline {
  opacity: 1;
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-outline { display: none; }
}
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:        #FFD700;
  --gold-dim:    #C9A800;
  --gold-pale:   #FFF3A3;
  --gold-glow:   rgba(255,215,0,0.15);
  --gold-border: rgba(255,215,0,0.18);

  --bg:          #000000;
  --bg-card:     #0A0A0A;
  --bg-hover:    #111111;
  --bg-subtle:   #0D0D0D;

  --text:        #E0E0E0;
  --text-muted:  #777777;
  --text-dim:    #444444;
  --white:       #FFFFFF;

  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;

  --ease:        cubic-bezier(0.4,0,0.2,1);
  --dur:         0.28s;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,215,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,215,0,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}
img { max-width: 100%; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold-pale); }
ul { list-style: none; }

/* ── Typography helpers ─────────────────────────────────────── */
.display { font-family: 'Space Grotesk', sans-serif; }
.mono    { font-family: 'JetBrains Mono', monospace; }

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  /* Dark Liquid Glass */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  z-index: 900;
  transition: all var(--dur) var(--ease);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  animation: borderGlow 4s ease-in-out infinite;
}
#navbar.scrolled {
  background: rgba(0,0,0,0.8);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(255,215,0,0.1);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.55rem;
  text-decoration: none;
}
.nav-logo img {
  width: 32px; height: 32px;
  border-radius: 7px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  background: linear-gradient(130deg, var(--gold-dim), var(--gold), var(--gold-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  color: #999;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Mobile hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page shell ─────────────────────────────────────────────── */
.page {
  display: none;
  min-height: 100vh;
  padding-top: 100px;
  animation: pgIn .38s var(--ease) both;
}
.page.active { display: block; }

@keyframes pgIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(255,215,0,0.15); box-shadow: 0 0 10px rgba(255,215,0,0.05); }
  50% { border-color: rgba(255,215,0,0.3); box-shadow: 0 0 20px rgba(255,215,0,0.1); }
}

/* ── Scroll-reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Section label / title system ──────────────────────────── */
.sec-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 5px; padding: 0.18rem 0.55rem;
  margin-bottom: 0.65rem;
}
.sec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 0.4rem;
}
.sec-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold), var(--gold-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-rule {
  width: 44px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px; margin: 0.9rem 0 2.2rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem 1.5rem; border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: .88rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
}
.btn-gold {
  background: linear-gradient(130deg, var(--gold-dim), var(--gold));
  color: #000;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,215,0,.28);
  color: #000;
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-ghost:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold);
}

/* ──────────────────────────────────────────────────────────────
   HOME PAGE
   ────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 3rem 5%;
  position: relative; overflow: hidden;
}

/* subtle dot-grid backdrop */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,215,0,.09) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

/* gold bloom */
.hero::after {
  content: '';
  position: absolute;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,.07) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

.hero-name {
  position: relative; z-index: 1;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(4rem, 14vw, 8.5rem);
  font-weight: 700; letter-spacing: -3px; line-height: 1;
  background: linear-gradient(135deg,
    var(--gold-dim)  0%,
    var(--gold)      30%,
    var(--gold-pale) 52%,
    var(--gold)      72%,
    var(--gold-dim)  100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(255,215,0,.22));
}

.hero-type-row {
  position: relative; z-index: 1;
  margin-top: 1.2rem; height: 1.8rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-typed {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.9rem, 2.2vw, 1.15rem);
  color: #aaa; letter-spacing: .02em;
}
.cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: var(--gold); margin-left: 3px; vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-btns {
  position: relative; z-index: 1;
  margin-top: 2.4rem;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* ── Home feature strip ─────────────────────────────────────── */
.feature-strip {
  padding: 4rem 5% 5rem;
  max-width: 1160px; margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem; margin-top: 0.2rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 1.4rem;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,215,0,.4);
  box-shadow: 0 14px 44px rgba(255,215,0,.09);
}
.feature-card:hover::after { opacity: 1; }
.fc-icon { font-size: 1.7rem; margin-bottom: .65rem; }
.fc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .97rem; font-weight: 600; color: var(--white);
  margin-bottom: .2rem;
}
.fc-sub  { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.fc-tag  {
  display: inline-block; margin-top: .55rem;
  font-family: 'JetBrains Mono', monospace; font-size: .66rem;
  color: var(--gold); border: 1px solid var(--gold-border);
  border-radius: 4px; padding: .1rem .38rem;
}

/* ──────────────────────────────────────────────────────────────
   ABOUT PAGE
   ────────────────────────────────────────────────────────────── */
.about-wrap {
  max-width: 940px; margin: 0 auto;
  padding: 4.5rem 5% 5rem;
}
.about-grid {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 3rem; align-items: start; margin-top: .4rem;
}
.about-avatar {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg);
  background: linear-gradient(135deg,#0e0900,#1f1500);
  border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; position: relative; overflow: hidden;
}
.about-avatar::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(255,215,0,.07),transparent);
}
.about-body p { margin-bottom: .9rem; font-size: .95rem; color: var(--text); }
.about-body strong { color: var(--gold); font-weight: 600; }
.lang-row  { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.1rem; }
.lang-pill {
  font-family: 'JetBrains Mono', monospace; font-size: .75rem;
  color: var(--gold-pale);
  background: rgba(255,215,0,.07);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 6px; padding: .22rem .62rem;
}

/* ──────────────────────────────────────────────────────────────
   PROJECTS PAGE
   ────────────────────────────────────────────────────────────── */
.projects-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 4.5rem 5% 5rem;
}

/* 12-column grid, varied card widths for a bento feel */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem; margin-top: .4rem;
}

.pc          { grid-column: span 4; }   /* default */
.pc.w6       { grid-column: span 6; }
.pc.w8       { grid-column: span 8; }
.pc.w3       { grid-column: span 3; }

.pc-inner {
  background: var(--bg-card);
  border: 1px solid rgba(255,215,0,.08);
  border-radius: var(--radius); padding: 1.4rem;
  height: 100%; min-height: 180px;
  display: flex; flex-direction: column; gap: .6rem;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.pc-inner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.pc-inner:hover {
  transform: translateY(-3px);
  border-color: rgba(255,215,0,.28);
  box-shadow: 0 14px 42px rgba(255,215,0,.07);
}
.pc-inner:hover::before { opacity: 1; }

/* Hero card (fav project) */
.pc.w8 .pc-inner {
  background: linear-gradient(140deg,#0b0800,#1a1200);
  border-color: rgba(255,215,0,.22); min-height: 220px;
}

.pc-fav {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: 'JetBrains Mono', monospace; font-size: .67rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
}
.pc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--white);
}
.pc.w8 .pc-name { font-size: 1.25rem; }
.pc-desc { font-size: .83rem; color: var(--text-muted); flex: 1; line-height: 1.55; }

.pc-foot {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: .4rem; margin-top: auto;
}
.pc-tags { display: flex; flex-wrap: wrap; gap: .3rem; }
.pc-tags span {
  font-family: 'JetBrains Mono', monospace; font-size: .66rem;
  color: var(--text-dim);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px; padding: .12rem .42rem;
}
.pc-links { display: flex; gap: .45rem; }
.pc-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .76rem; font-weight: 500;
  color: var(--gold-dim);
  border: 1px solid rgba(255,215,0,.2);
  border-radius: 6px; padding: .22rem .6rem;
  transition: all var(--dur) var(--ease);
}
.pc-link:hover {
  background: var(--gold-glow);
  border-color: var(--gold); color: var(--gold);
}

/* ──────────────────────────────────────────────────────────────
   SKILLS PAGE
   ────────────────────────────────────────────────────────────── */
.skills-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 4.5rem 5% 5rem;
}
.skill-groups { display: flex; flex-direction: column; gap: 2.4rem; margin-top: .4rem; }
.sg-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: .85rem;
}
.skill-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.skill-chip {
  display: flex; align-items: center; gap: .38rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,215,0,.12);
  color: var(--text);
  font-size: .84rem; font-weight: 500;
  padding: .42rem .95rem; border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.skill-chip:hover {
  border-color: rgba(255,215,0,.4);
  color: var(--gold-pale);
  background: rgba(255,215,0,.06);
  transform: translateY(-2px);
}
.skill-chip i { color: var(--gold); font-size: 1rem; }

/* ──────────────────────────────────────────────────────────────
   CONTACT PAGE
   ────────────────────────────────────────────────────────────── */
.contact-wrap {
  max-width: 680px; margin: 0 auto;
  padding: 4.5rem 5% 5rem;
}
.contact-intro { font-size: .94rem; color: var(--text-muted); margin-bottom: 2rem; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-card {
  display: flex; align-items: center; gap: .9rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 1.25rem 1.35rem;
  text-decoration: none; color: inherit;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,215,0,.42);
  box-shadow: 0 12px 36px rgba(255,215,0,.08);
  color: inherit;
}
.cc-icon-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,215,0,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.cc-icon-wrap i { color: var(--gold); }
.cc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .97rem; font-weight: 600; color: var(--white);
}
.cc-handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: .76rem; color: var(--text-muted);
}

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */
footer {
  background: #050505;
  border-top: 1px solid rgba(255,215,0,.07);
  padding: 1.75rem 5%;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.foot-copy { font-size: .78rem; color: var(--text-muted); }
.foot-copy span { color: var(--gold-dim); }
.foot-icons { display: flex; gap: 1.1rem; align-items: center; }
.foot-icons a {
  color: #555; font-size: 1.1rem;
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.foot-icons a:hover { color: var(--gold); transform: translateY(-2px); }

/* ──────────────────────────────────────────────────────────────
   NEW ADDITIONS: SKILLS & GEAR
   ────────────────────────────────────────────────────────────── */
/* Minecraft XP Bars - High Fidelity Style */
.skill-bar-container { margin-bottom: 1.5rem; }
.skill-label-row { display: flex; justify-content: space-between; margin-bottom: 0.4rem; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; }
.skill-percentage { color: var(--gold); font-weight: bold; }
.skill-bar-bg {
  background: #000;
  height: 16px;
  border: 2px solid #555;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 0 #000;
}
.skill-bar-fill {
  height: 100%;
  background: 
    linear-gradient(to bottom, var(--gold-pale) 0%, var(--gold) 50%, var(--gold-dim) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 6px,
      rgba(0,0,0,0.4) 6px,
      rgba(0,0,0,0.4) 7px
    );
  background-size: 100% 100%, 7px 100%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}
.skill-level {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
  z-index: 2;
  pointer-events: none;
}
.skill-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 6px,
    rgba(255,255,255,0.15) 6px,
    rgba(255,255,255,0.15) 7px
  );
  pointer-events: none;
}

/* Gear Cards */
.gear-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.gear-card { background: var(--bg-card); border: 1px solid var(--gold-border); border-radius: var(--radius-sm); padding: 1.2rem; }
.gear-title { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--gold); margin-bottom: 0.4rem; }
.gear-desc { font-size: 0.85rem; color: var(--text-muted); }

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex; position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(0,0,0,.96);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--gold-border);
    padding: 1.6rem 5%; gap: 1.4rem;
  }
  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-avatar { max-width: 160px; }

  .pc, .pc.w6, .pc.w8, .pc.w3 { grid-column: span 12; }

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

@media (max-width: 560px) {
  .hero-btns { flex-direction: column; align-items: center; }
}

/* Reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}/* Ripple Button Effect */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-out, height 0.4s ease-out;
  pointer-events: none;
}
.btn:hover::after {
  width: 200%; height: 200%;
}

/* Text Hover Scramble Effect */
.pc-title, .hero-name {
  transition: letter-spacing 0.3s ease;
}
.pc-inner:hover .pc-title {
  letter-spacing: 1px;
}

/* Staggered entry for list items */
.nav-links li {
  animation: slideInNav 0.5s ease-out forwards;
  opacity: 0;
}
.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInNav {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle image hover scale */
.about-avatar img {
  transition: transform 0.5s ease;
}
.about-avatar:hover img {
  transform: scale(1.05);
}
/* Shine Effect for Cards */
@keyframes shine {
  0% { transform: skewX(-20deg) translateX(-150%); }
  100% { transform: skewX(-20deg) translateX(150%); }
}

.feature-card, .pc-inner {
  position: relative;
  overflow: hidden;
}

.feature-card::before, .pc-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg) translateX(-150%);
  z-index: 1;
  pointer-events: none;
}

.feature-card:hover::before, .pc-inner:hover::before {
  animation: shine 0.7s ease-in-out;
}

/* Enhanced Hero Bloom */
@keyframes rotateBloom {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}
.hero::after {
  animation: rotateBloom 20s linear infinite;
}
