
    :root {
      --bg: #0b0d0f;
      --fg: #e6eef8;
      --muted: #9aa7b2;
      --accent: #00ff6a;
      --glass: rgba(255, 255, 255, 0.04);
      --card: #0f1316;
      --radius: 14px;
      --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono",
        "Courier New", monospace;
    }

    [data-theme="light"] {
      --bg: #fafbfc;
      --fg: #061013;
      --muted: #385056;
      --accent: #0b7a3f;
      --glass: rgba(0, 0, 0, 0.04);
      --card: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      height: 100%;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial;
      background: var(--bg);
      color: var(--fg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.4;
      -webkit-tap-highlight-color: transparent;
    }

    a {
      color: inherit;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 48px 20px;
    }

    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .brand {
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    .controls {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn {
      background: var(--card);
      border: 1px solid rgba(255, 255, 255, 0.03);
      padding: 8px 12px;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
    }

    /* Hero */
    .hero {
      display: grid;
      gap: 18px;
      padding: 48px;
      border-radius: 18px;
      background: linear-gradient(180deg,
          rgba(255, 255, 255, 0.01),
          transparent);
      box-shadow: 0 6px 30px rgba(2, 6, 23, 0.6);
      overflow: hidden;
    }

    .hero h1 {
      font-size: clamp(28px, 6vw, 56px);
      margin: 0;
      font-weight: 800;
    }

    .hero p {
      margin: 0;
      color: var(--muted);
      font-weight: 600;
    }

    .cta {
      margin-top: 8px;
    }

    .link-ghost {
      background-color: #00ff6a;
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 10px 14px;
      border-radius: 12px;
      cursor: pointer;
    }

    /* typing cursor for the tagline */
    .typing {
      display: inline-block;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid var(--muted);
      padding-right: 6px;
    }

    @keyframes blink-caret {
      50% {
        border-color: transparent;
      }
    }

    .typing {
      animation: blink-caret 0.8s steps(1) infinite;
    }

    /* Work Section */
    .work {
      -webkit-font-smoothing: antialiased;
    }

    .filters {
      display: flex;
      gap: 8px;
      margin: 18px 0 12px;
    }

    .filter {
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--card);
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.02);
    }

    .filter.active {
      outline: 2px solid rgba(0, 0, 0, 0.12);
      transform: scale(1.02);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 14px;
    }

    @media (min-width: 640px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 980px) {
      .grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .card {
      background: var(--card);
      border-radius: 12px;
      padding: 14px;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.02);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
    }

    .card h3 {
      margin: 0 0 6px;
    }

    .meta {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 10px;
    }

    .tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .tag {
      font-size: 12px;
      padding: 6px 8px;
      border-radius: 8px;
      background: rgba(0, 0, 0, 0.05);
    }

    .card .actions {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .small-btn {
      padding: 8px 10px;
      border-radius: 8px;
      background-color: rgb(0, 255, 255);
      font-weight: bold;
      border: none;
      cursor: pointer;
    }

    .stat-reveal {
      position: absolute;
      right: 12px;
      bottom: 12px;
      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0.2),
          rgba(0, 0, 0, 0.4));
      padding: 8px;
      border-radius: 10px;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .card:hover .stat-reveal {
      opacity: 1;
      transform: translateY(0);
    }

    /* Terminal */
    .terminal-wrap {
      margin-top: 28px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.03);
    }

    .term-header {
      display: flex;
      align-items: center;
      padding: 10px 12px;
      gap: 10px;
      background: linear-gradient(90deg,
          rgba(255, 255, 255, 0.02),
          transparent);
    }

    .dots {
      display: flex;
      gap: 6px;
    }

    .dot {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      background: #ff5f57;
    }

    .dot.yellow {
      background: #ffbd2e;
    }

    .dot.green {
      background: #28c940;
    }

    .terminal {
      background: #0b0e0c;
      color: #dfffe0;
      font-family: var(--mono);
      min-height: 320px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .term-output {
      font-family: var(--mono);
      font-size: 13px;
      line-height: 1.5;
      white-space: pre-wrap;
    }

    .prompt {
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .prompt .prompt-label {
      color: #7fdc98;
      min-width: 170px;
    }

    .prompt input {
      flex: 1;
      background: transparent;
      border: 0;
      color: inherit;
      font-family: var(--mono);
      font-size: 13px;
      outline: none;
    }

    .cursor {
      display: inline-block;
      width: 8px;
      height: 18px;
      background: var(--accent);
      margin-left: 3px;
      animation: blink 1s steps(1) infinite;
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }

    /* Contact form terminal style */
    .contact {
      margin-top: 36px;
      padding: 18px;
      border-radius: 12px;
      background: var(--card);
    }

    .term-form {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .term-field {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .term-field input,
    .term-field textarea {
      background: transparent;
      border: 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
      padding: 8px;
      font-family: var(--mono);
      color: inherit;
      resize: vertical;
      width: 100%;
      min-width: 0;
    }

    .symlinks {
      font-family: var(--mono);
      font-size: 13px;
      margin-top: 12px;
    }

    /* Modal */
    .modal {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      background: rgba(0, 0, 0, 0.6);
      z-index: 60;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.18s;
    }

    .modal.open {
      opacity: 1;
      pointer-events: auto;
    }

    .modal .box {
      background: var(--card);
      padding: 20px;
      border-radius: 12px;
      max-width: 560px;
    }

    /* Footer */
    footer {
      margin-top: 40px;
      color: var(--muted);
      font-size: 13px;
      text-align: center;
      padding-bottom: 40px;
    }

    /* utilities */
    .visually-hidden {
      position: absolute !important;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(1px, 1px, 1px, 1px);
      white-space: nowrap;
    }

    /* Responsive mobile terminal full-width */
    @media (max-width: 600px) {
      .terminal {
        min-height: 420px;
        padding: 12px;
      }
    }

    /* Tech Stack Style */
    .tech-stack span {
      font-weight: bold;
      margin-right: 4px;
      display: inline-block;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .python {
      background-image: linear-gradient(135deg, #306998, #FFD43B);
    }

    /* Django gradient */
    .django {
      background-image: linear-gradient(135deg, #092E20, #44B78B);
    }

    /* JavaScript gradient */
    .javascript {
      background-image: linear-gradient(135deg, #F0DB4F, #EAD41C);
    }

    /* PostgreSQL gradient */
    .postgresql {
      background-image: linear-gradient(135deg, #336791, #0064A5);
    }

    /* Cloudflare gradient */
    .cloudflare {
      background-image: linear-gradient(135deg, #F38020, #F89C2C);
    }

    /* Vercel - needs background because it's black logo */
    .vercel {
      background-color: white;
      color: black;
      padding: 2px 6px;
      border-radius: 3px;
      -webkit-background-clip: unset;
      -webkit-text-fill-color: unset;
    }
    .helloWorldText{
      background-color: rgba(88, 88, 88, 0.411);
      padding: 3px;
      border-radius: 5px;
    }
