    :root {
      --bg: #050a0f;
      --panel: rgba(15, 25, 35, 0.7);
      --accent: #b87333; 
      --accent-light: #ffca99;
      --muted: #8aa0a0;
      --text: #e0e6ed;
      --mono: 'SFMono-Regular', 'Roboto Mono', monospace;
    }

    body {
      margin: 0;
      font-family: var(--mono);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(184, 115, 51, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(184, 115, 51, 0.05) 0%, transparent 40%);
    }

    .wrap {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
    }

    .card {
      width: 100%;
      max-width: 900px;
      background: var(--panel);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(184, 115, 51, 0.1);
      opacity: 0;
    }

    header {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-bottom: 30px;
    }

    .avatar-wrapper {
      position: relative;
      width: 120px;
      height: 120px;
    }

    .avatar {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(135deg, #0b1620, #b87333);
      border: 2px solid var(--accent);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 20px rgba(184, 115, 51, 0.3);
    }

    .avatar img {
      width: 85%;
      height: 100%;
      object-fit: contain;
      filter: grayscale(20%);
    }

    .info h1 {
      margin: 0;
      font-size: 32px;
      color: var(--accent-light);
      letter-spacing: -1px;
    }

    .terminal {
      background: rgba(0, 0, 0, 0.3);
      padding: 20px;
      border-radius: 12px;
      border-left: 3px solid var(--accent);
      margin-bottom: 30px;
    }

    .line { font-size: 14px; line-height: 1.8; display: block; }
    .prompt { color: var(--accent); margin-right: 10px; font-weight: bold; }
    .cursor {
      display: inline-block;
      width: 8px;
      height: 18px;
      background: var(--accent);
      animation: blink 1s steps(2) infinite;
    }

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

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .project-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 20px;
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
    }

    .project-card:hover {
      background: rgba(184, 115, 51, 0.1);
      border-color: var(--accent);
      transform: translateY(-5px);
    }

    .project-card h3 {
      margin: 0 0 10px 0;
      color: var(--accent);
      font-size: 16px;
    }

    .project-card p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.4;
    }

    .nav-btns {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }

    .btn {
      padding: 10px 20px;
      border-radius: 30px;
      background: rgba(184, 115, 51, 0.1);
      border: 1px solid var(--accent);
      color: var(--accent-light);
      text-decoration: none;
      font-size: 13px;
      transition: 0.3s;
    }

    .btn:hover {
      background: var(--accent);
      color: white;
      box-shadow: 0 0 15px rgba(184, 115, 51, 0.5);
    }

    footer {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.05);
      text-align: center;
      font-size: 12px;
      color: var(--muted);
    }

    @media (max-width: 600px) {
      header { flex-direction: column; text-align: center; }
      .card { padding: 25px; }
    }