
    :root {
      --gold: #9333ea;
      --gold-light: #c084fc;
      --gold-pale: #d8b4fe;
      --bg-dark: #0d0a14;
      --bg-card: #160f24;
      --bg-card2: #120d1e;
      --olive: #1e1030;
      --olive-light: #2d1b4e;
      --cream: #f0e8ff;
      --pixel-white: #faf5ff;
      --accent-teal: #a855f7;
      --accent-red: #e05555;
      --text-dim: #9b7ec8;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg-dark);
      color: var(--cream);
      font-family: 'Oxanium', sans-serif;
      overflow-x: hidden;
      cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Crect x='0' y='0' width='8' height='8' fill='%23c084fc'/%3E%3Crect x='8' y='8' width='8' height='8' fill='%23c084fc'/%3E%3C/svg%3E") 4 4, auto;
    }

    /* SCANLINE OVERLAY */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.08) 2px,
        rgba(0,0,0,0.08) 4px
      );
      pointer-events: none;
      z-index: 9999;
    }

    /* PIXEL NOISE TEXTURE */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9998;
      opacity: 0.6;
    }

    /* PIXEL FONT */
    .px { font-family: 'Press Start 2P', monospace; }
    .vt { font-family: 'VT323', monospace; }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.8rem 2.5rem;
      background: rgba(26, 28, 14, 0.92);
      border-bottom: 3px solid var(--gold);
      backdrop-filter: blur(8px);
    }
    .nav-logo {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.6rem;
      color: var(--gold-light);
      letter-spacing: 2px;
      text-decoration: none;
      text-shadow: 2px 2px 0 #5b21b6;
    }
    .nav-links { display: flex; gap: 1.5rem; list-style: none; }
    .nav-links a {
      font-family: 'VT323', monospace;
      font-size: 1.3rem;
      color: var(--gold-pale);
      text-decoration: none;
      letter-spacing: 2px;
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0; bottom: -3px;
      width: 0; height: 3px;
      background: var(--gold-light);
      transition: width 0.2s;
      image-rendering: pixelated;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-links a:hover::after { width: 100%; }

    .hire-btn {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.45rem;
      background: var(--gold);
      color: var(--bg-dark);
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
      transition: background 0.2s, transform 0.1s;
      text-decoration: none;
      display: inline-block;
    }
    .hire-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* HERO */
    #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 7rem 3rem 3rem;
      position: relative;
      overflow: hidden;
    }

    /* PIXEL GRID BG */
    #home::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--olive) 1px, transparent 1px),
        linear-gradient(90deg, var(--olive) 1px, transparent 1px);
      background-size: 40px 40px;
      opacity: 0.35;
    }

    /* RADIAL GLOW */
    #home::after {
      content: '';
      position: absolute;
      top: 30%; left: 55%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(147, 51, 234, 0.18) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-text { flex: 1; }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'VT323', monospace;
      font-size: 1.2rem;
      color: var(--gold);
      letter-spacing: 3px;
      margin-bottom: 1rem;
      border: 2px solid var(--gold);
      padding: 0.2rem 0.8rem;
      background: rgba(147,51,234,0.08);
    }
    .hero-tag::before { content: '▶'; font-size: 0.8rem; }

    .hero-name {
      font-family: 'Press Start 2P', monospace;
      font-size: clamp(1.4rem, 3.5vw, 2.5rem);
      line-height: 1.5;
      color: var(--pixel-white);
      text-shadow: 4px 4px 0 var(--gold), 8px 8px 0 rgba(147,51,234,0.2);
      margin-bottom: 0.5rem;
    }
    .hero-name span { color: var(--gold-light); }

    .hero-title {
      font-family: 'VT323', monospace;
      font-size: 2rem;
      color: var(--text-dim);
      letter-spacing: 3px;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .hero-title .blink {
      animation: blink 1s step-end infinite;
      color: var(--gold-light);
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

    /* LOADING BAR */
    .loading-wrap {
      margin-bottom: 2rem;
    }
    .loading-label {
      font-family: 'VT323', monospace;
      font-size: 1rem;
      color: var(--gold);
      letter-spacing: 3px;
      margin-bottom: 0.4rem;
    }
    .loading-bar-outer {
      width: 260px;
      height: 14px;
      border: 2px solid var(--gold);
      padding: 2px;
      background: var(--bg-dark);
    }
    .loading-bar-inner {
      height: 100%;
      background: repeating-linear-gradient(
        90deg,
        var(--gold-light) 0px,
        var(--gold-light) 10px,
        transparent 10px,
        transparent 14px
      );
      width: 0%;
      animation: loadfill 2.5s ease forwards 0.5s;
    }
    @keyframes loadfill { to { width: 100%; } }

    .hero-desc {
      color: var(--text-dim);
      font-size: 1rem;
      max-width: 480px;
      line-height: 1.8;
      margin-bottom: 2rem;
      border-left: 3px solid var(--gold);
      padding-left: 1rem;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn-pixel {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.45rem;
      padding: 0.8rem 1.5rem;
      text-decoration: none;
      letter-spacing: 1px;
      display: inline-block;
      transition: transform 0.1s, box-shadow 0.1s;
    }
    .btn-pixel:active { transform: translate(3px, 3px); }

    .btn-gold {
      background: var(--gold);
      color: var(--bg-dark);
      box-shadow: 4px 4px 0 #5b21b6;
    }
    .btn-gold:hover { box-shadow: 6px 6px 0 #5b21b6; transform: translate(-2px, -2px); }

    .btn-outline {
      background: transparent;
      color: var(--gold-light);
      border: 3px solid var(--gold);
      box-shadow: 4px 4px 0 var(--gold);
    }
    .btn-outline:hover { background: rgba(147,51,234,0.1); box-shadow: 6px 6px 0 var(--gold); transform: translate(-2px, -2px); }

    /* HERO AVATAR SIDE */
    .hero-avatar-side {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .avatar-frame {
      position: relative;
      width: 280px;
      height: 340px;
    }

    .avatar-frame-border {
      position: absolute;
      inset: 0;
      border: 4px solid var(--gold);
      clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
      background: var(--bg-card);
      overflow: hidden;
    }

    .avatar-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
      background: linear-gradient(135deg, var(--bg-card) 0%, var(--olive) 100%);
      position: relative;
    }

    /* Pixel character made with CSS */
    .pixel-char {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .avatar-decoration {
      position: absolute;
    }
    .deco-tl { top: -12px; left: -12px; width: 24px; height: 24px; background: var(--gold); }
    .deco-tr { top: -12px; right: -12px; width: 24px; height: 24px; background: var(--gold); }
    .deco-bl { bottom: -12px; left: -12px; width: 24px; height: 24px; background: var(--gold); }
    .deco-br { bottom: -12px; right: -12px; width: 24px; height: 24px; background: var(--gold); }

    .avatar-badge {
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'VT323', monospace;
      font-size: 1.1rem;
      color: var(--bg-dark);
      background: var(--gold);
      padding: 0.2rem 1.2rem;
      letter-spacing: 3px;
      white-space: nowrap;
    }

    .stat-chips {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 1rem;
    }
    .stat-chip {
      font-family: 'VT323', monospace;
      font-size: 1rem;
      color: var(--gold);
      border: 2px solid var(--gold);
      padding: 0.15rem 0.6rem;
      background: rgba(147,51,234,0.08);
      letter-spacing: 2px;
    }

    /* FLOATING PIXELS */
    .float-pixel {
      position: absolute;
      animation: floatpx 4s ease-in-out infinite;
    }
    @keyframes floatpx {
      0%,100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(10deg); }
    }

    /* ——— SECTIONS ——— */
    section { padding: 5rem 3rem; }
    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-title {
      font-family: 'Press Start 2P', monospace;
      font-size: clamp(0.9rem, 2vw, 1.4rem);
      color: var(--pixel-white);
      text-shadow: 3px 3px 0 var(--gold);
      margin-bottom: 0.8rem;
      display: inline-block;
    }
    .section-subtitle {
      font-family: 'VT323', monospace;
      font-size: 1.3rem;
      color: var(--text-dim);
      letter-spacing: 3px;
      max-width: 550px;
      margin: 0 auto;
    }
    .section-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }
    .section-line::before,
    .section-line::after {
      content: '';
      height: 3px;
      width: 60px;
      background: var(--gold);
    }
    .section-line-icon {
      font-family: 'VT323', monospace;
      color: var(--gold);
      font-size: 1.5rem;
    }

    /* ABOUT */
    #about { background: var(--bg-card2); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .about-card {
      background: var(--bg-card);
      border: 2px solid var(--gold);
      clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
      padding: 2rem;
      position: relative;
    }
    .about-card::before {
      content: attr(data-label);
      position: absolute;
      top: -1px; left: 1.5rem;
      font-family: 'VT323', monospace;
      font-size: 0.9rem;
      color: var(--bg-dark);
      background: var(--gold);
      padding: 0 0.6rem;
      letter-spacing: 2px;
    }
    .about-card h3 {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.65rem;
      color: var(--gold-light);
      margin-bottom: 1.2rem;
      margin-top: 0.5rem;
    }
    .about-card p {
      color: var(--text-dim);
      font-size: 0.95rem;
      line-height: 1.9;
      margin-bottom: 0.8rem;
    }

    .expertise-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .exp-card {
      background: var(--bg-dark);
      border: 2px solid var(--olive-light);
      padding: 1rem;
      position: relative;
      transition: border-color 0.2s;
    }
    .exp-card:hover { border-color: var(--gold); }
    .exp-card::before {
      content: '▪';
      color: var(--gold);
      font-size: 1.2rem;
    }
    .exp-card h4 {
      font-family: 'VT323', monospace;
      font-size: 1.2rem;
      color: var(--gold-pale);
      letter-spacing: 2px;
      margin: 0.3rem 0;
    }
    .exp-card p {
      font-size: 0.8rem;
      color: var(--text-dim);
      line-height: 1.6;
    }

    /* PROJECTS */
    #projects { background: var(--bg-dark); }

    .filter-row {
      display: flex;
      justify-content: center;
      gap: 0.7rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .filter-btn {
      font-family: 'VT323', monospace;
      font-size: 1.1rem;
      letter-spacing: 2px;
      padding: 0.3rem 1rem;
      border: 2px solid var(--olive-light);
      background: transparent;
      color: var(--text-dim);
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-btn.active,
    .filter-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(147,51,234,0.1);
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.8rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .proj-card {
      background: var(--bg-card);
      border: 2px solid var(--olive-light);
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
      position: relative;
    }
    .proj-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
    }

    .proj-img-wrap {
      position: relative;
      height: 180px;
      overflow: hidden;
      background: var(--olive);
    }
    .proj-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.7) brightness(0.85);
      transition: filter 0.3s;
    }
    .proj-card:hover .proj-img-wrap img { filter: saturate(1) brightness(1); }

    .proj-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,28,14,0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.7rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .proj-card:hover .proj-overlay { opacity: 1; }

    .proj-link-btn {
      font-family: 'VT323', monospace;
      font-size: 1rem;
      letter-spacing: 2px;
      padding: 0.4rem 1rem;
      background: var(--gold);
      color: var(--bg-dark);
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    }
    .proj-link-btn.outline {
      background: transparent;
      color: var(--gold);
      border: 2px solid var(--gold);
      clip-path: none;
    }

    .proj-body { padding: 1.2rem; }
    .proj-body h3 {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.6rem;
      color: var(--pixel-white);
      margin-bottom: 0.6rem;
      line-height: 1.6;
    }
    .proj-body p {
      font-size: 0.85rem;
      color: var(--text-dim);
      margin-bottom: 0.8rem;
      line-height: 1.6;
    }
    .tech-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .tech-tag {
      font-family: 'VT323', monospace;
      font-size: 0.9rem;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 0 0.4rem;
      letter-spacing: 1px;
      background: rgba(147,51,234,0.07);
    }

    /* SKILLS */
    #skills { background: var(--bg-card2); }

    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 1rem;
      max-width: 1100px;
      margin: 0 auto 4rem;
    }

    .skill-card {
      background: var(--bg-dark);
      border: 2px solid var(--olive-light);
      padding: 1.2rem 0.8rem;
      text-align: center;
      transition: border-color 0.2s, transform 0.2s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .skill-card:hover { border-color: var(--gold); transform: translateY(-4px); }

    .skill-card img { width: 48px; height: 48px; object-fit: contain; margin-bottom: 0.6rem; }
    .skill-card h4 {
      font-family: 'VT323', monospace;
      font-size: 1rem;
      color: var(--gold-pale);
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
    }
    .skill-bar-outer {
      width: 100%;
      height: 8px;
      background: var(--olive);
      border: 1px solid var(--olive-light);
    }
    .skill-bar-inner {
      height: 100%;
      background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 6px,
        transparent 6px,
        transparent 9px
      );
      width: 0%;
      transition: width 1.5s ease;
    }
    .skill-pct {
      font-family: 'VT323', monospace;
      font-size: 0.85rem;
      color: var(--gold);
      margin-top: 0.3rem;
    }

    /* SOFT SKILLS */
    .soft-skills-row {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.2rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .soft-card {
      background: var(--bg-dark);
      border: 2px solid var(--olive-light);
      padding: 1.3rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .soft-card:hover { border-color: var(--gold); }
    .soft-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gold);
    }
    .soft-card h4 {
      font-family: 'VT323', monospace;
      font-size: 1.3rem;
      color: var(--gold-light);
      letter-spacing: 2px;
      margin-bottom: 0.5rem;
      padding-left: 0.8rem;
    }
    .soft-card p {
      font-size: 0.85rem;
      color: var(--text-dim);
      line-height: 1.7;
      padding-left: 0.8rem;
    }

    /* CONTACT */
    #contact { background: var(--bg-dark); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .contact-info-card {
      background: var(--bg-card);
      border: 2px solid var(--gold);
      clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
      padding: 2rem;
    }
    .contact-info-card h3 {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.6rem;
      color: var(--gold);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }
    .contact-icon {
      width: 36px; height: 36px;
      background: var(--gold);
      color: var(--bg-dark);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-item p { font-size: 0.85rem; color: var(--text-dim); }
    .contact-item strong { display: block; color: var(--cream); font-size: 0.95rem; }

    .social-row { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
    .social-btn {
      width: 40px; height: 40px;
      background: var(--olive);
      border: 2px solid var(--gold);
      color: var(--gold);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      font-size: 1.1rem;
      transition: background 0.2s, color 0.2s;
    }
    .social-btn:hover { background: var(--gold); color: var(--bg-dark); }

    .contact-form-card {
      background: var(--bg-card);
      border: 2px solid var(--olive-light);
      clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
      padding: 2rem;
    }
    .contact-form-card h3 {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.6rem;
      color: var(--gold);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group label {
      font-family: 'VT323', monospace;
      font-size: 1rem;
      color: var(--gold-pale);
      letter-spacing: 2px;
      display: block;
      margin-bottom: 0.3rem;
    }
    .form-group input, .form-group textarea {
      width: 100%;
      background: var(--bg-dark);
      border: 2px solid var(--olive-light);
      color: var(--cream);
      padding: 0.6rem 0.8rem;
      font-family: 'Oxanium', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
    .form-group textarea { height: 90px; resize: none; }

    .form-btns { display: flex; gap: 1rem; }
    .form-submit {
      flex: 1;
      font-family: 'Press Start 2P', monospace;
      font-size: 0.4rem;
      background: var(--gold);
      color: var(--bg-dark);
      border: none;
      padding: 0.8rem;
      cursor: pointer;
      letter-spacing: 1px;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
      transition: background 0.2s;
    }
    .form-submit:hover { background: var(--gold-light); }
    .form-clear {
      font-family: 'VT323', monospace;
      font-size: 1rem;
      letter-spacing: 2px;
      background: transparent;
      color: var(--text-dim);
      border: 2px solid var(--olive-light);
      padding: 0.5rem 1.2rem;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .form-clear:hover { border-color: var(--gold); color: var(--gold); }

    /* FOOTER */
    footer {
      background: var(--bg-card2);
      border-top: 3px solid var(--gold);
      padding: 3rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Press Start 2P', monospace;
      font-size: 1rem;
      color: var(--gold-light);
      text-shadow: 3px 3px 0 #5b21b6;
      margin-bottom: 1rem;
      display: block;
    }
    .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; list-style: none; }
    .footer-links a {
      font-family: 'VT323', monospace;
      font-size: 1.1rem;
      color: var(--text-dim);
      text-decoration: none;
      letter-spacing: 2px;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      font-family: 'VT323', monospace;
      font-size: 1rem;
      color: var(--olive-light);
      letter-spacing: 2px;
    }

    /* SCROLL TO TOP */
    #scrollTop {
      position: fixed;
      right: 1.5rem;
      bottom: 1.5rem;
      width: 44px; height: 44px;
      background: var(--gold);
      color: var(--bg-dark);
      border: none;
      cursor: pointer;
      font-family: 'Press Start 2P', monospace;
      font-size: 0.7rem;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      clip-path: polygon(0 10px, 10px 0, 100% 0, 100% 100%, 0 100%);
    }
    #scrollTop.visible { opacity: 1; pointer-events: all; }
    #scrollTop:hover { background: var(--gold-light); }

    /* MOBILE NAV */
    .mob-toggle {
      display: none;
      background: none;
      border: 2px solid var(--gold);
      color: var(--gold);
      width: 36px; height: 36px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    /* PIXEL DECORATION */
    .px-corner { position: absolute; width: 12px; height: 12px; background: var(--gold); }
    .px-corner.tl { top: -3px; left: -3px; }
    .px-corner.tr { top: -3px; right: -3px; }
    .px-corner.bl { bottom: -3px; left: -3px; }
    .px-corner.br { bottom: -3px; right: -3px; }

    /* ANIMATIONS */
    @keyframes glitch {
      0% { clip-path: none; transform: none; }
      92% { clip-path: none; transform: none; }
      93% { clip-path: inset(10% 0 80% 0); transform: translate(-4px, 0); }
      94% { clip-path: inset(60% 0 20% 0); transform: translate(4px, 0); }
      95% { clip-path: none; transform: none; }
      100% { clip-path: none; transform: none; }
    }
    .hero-name { animation: glitch 6s infinite; }

    /* MOBILE DROPDOWN MENU */
    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: rgba(13, 10, 20, 0.98);
      border-top: 2px solid var(--gold);
      border-bottom: 3px solid var(--gold);
      backdrop-filter: blur(12px);
      flex-direction: column;
      align-items: center;
      gap: 0;
      list-style: none;
      z-index: 200;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu li { width: 100%; text-align: center; }
    .mobile-menu a {
      font-family: 'VT323', monospace;
      font-size: 1.5rem;
      color: var(--gold-pale);
      text-decoration: none;
      letter-spacing: 4px;
      display: block;
      padding: 0.9rem 1rem;
      border-bottom: 1px solid var(--olive-light);
      transition: background 0.2s, color 0.2s;
    }
    .mobile-menu a:hover { background: rgba(147,51,234,0.15); color: var(--gold-light); }
    .mobile-menu .mob-hire {
      font-family: 'Press Start 2P', monospace;
      font-size: 0.5rem;
      background: var(--gold);
      color: var(--bg-dark);
      padding: 0.7rem 1.5rem;
      display: inline-block;
      margin: 1rem auto;
      text-decoration: none;
      clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav { padding: 0.7rem 1.2rem; position: relative; }
      .nav-links { display: none; }
      .hire-btn { display: none; }
      .mob-toggle { display: flex; }
      #home { padding: 6rem 1.5rem 3rem; }
      .hero-inner { flex-direction: column; gap: 2rem; text-align: center; }
      .hero-desc { border-left: none; padding-left: 0; }
      .hero-btns { justify-content: center; }
      section { padding: 4rem 1.5rem; }
      .about-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .expertise-grid { grid-template-columns: 1fr; }
      .footer-links { flex-wrap: wrap; gap: 1rem; }
    }
