   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
    }

    :root {
      --bg: #030305;
      --card: rgba(255, 255, 255, 0.04);
      --border: rgba(255, 255, 255, 0.08);
      --accent-primary: #73e5ff;
      --accent-secondary: #5865F2;
      --text-main: #ffffff;
      --text-dim: #a1a1a6;
      --glass: blur(20px) saturate(180%);
      --inner-glow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
    }

    body.theme-cyan {
      --accent-primary: #00fff2;
      --accent-secondary: #008080;
    }
    body.theme-midnight {
      --accent-primary: #7d89ff;
      --accent-secondary: #2c2f48;
    }
    body.theme-white {
      --bg: #f5f5f7;
      --card: rgba(0, 0, 0, 0.03);
      --text-main: #1d1d1f;
      --text-dim: #48484a;
      --border: rgba(0, 0, 0, 0.08);
      --inner-glow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    }

    body {
      background: var(--bg);
      color: var(--text-main);
      font-family: 'Google Sans Flex', sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      padding: 80px 20px;
      transition: background 0.4s;
    }

    .blob-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      filter: blur(80px);
      opacity: 0.35;
    }
    .blob {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      animation: move 18s infinite alternate;
    }
    .blob:nth-child(1) {
      background: var(--accent-primary);
    }
    .blob:nth-child(2) {
      background: var(--accent-secondary);
      left: 50%;
      animation-delay: -6s;
    }
    @keyframes move {
      from {
        transform: translate(-20%, -20%) scale(1);
      }
      to {
        transform: translate(120%, 120%) scale(1.3);
      }
    }

    body::after {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://grainy-gradients.vercel.app/noise.svg');
      opacity: 0.03;
      pointer-events: none;
      z-index: -1;
    }

    .typewriter-hero {
      font-size: clamp(18px, 4.5vw, 28px);
      font-weight: 600;
      margin-bottom: 45px;
      text-align: center;
      background: linear-gradient(to bottom, #fff 30%, var(--text-dim));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .profile-wrapper {
      width: 100%;
      max-width: 580px;
    }

    .glass-card {
      background: var(--card);
      backdrop-filter: var(--glass);
      -webkit-backdrop-filter: var(--glass);
      border-radius: 36px;
      border: 1px solid var(--border);
      box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), var(--inner-glow);
      overflow: hidden;
      transition: transform 0.25s ease;
    }
    .glass-card:hover {
      transform: translateY(-4px);
    }

    .banner {
      height: 140px;
      background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
      position: relative;
    }

    .theme-toggle {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 44px;
      height: 44px;
      border-radius: 16px;
      background: rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: white;
      font-size: 18px;
      transition: 0.2s;
      z-index: 5;
    }

    .profile-header {
      padding: 0 28px;
      margin-top: -60px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .pfp-wrap {
      position: relative;
      border-radius: 50%;
      padding: 6px;
      background: var(--bg);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    }
    .pfp-wrap img#avatar {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
    }
    
    /* Updated status dot to handle images */
    .status-dot {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      position: absolute;
      bottom: 6px;
      right: 6px;
      border: 5px solid var(--bg);
      background: var(--bg);
      display: block;
    }

    .content {
      padding: 28px 28px 20px;
    }

    .display-name {
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .handle-row {
      color: var(--text-dim);
      font-size: 16px;
      margin-top: 4px;
      display: flex;
      flex-wrap: wrap;
      gap: 4px 12px;
      align-items: center;
    }

    .label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent-primary);
      margin: 28px 0 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .bio-box {
      font-size: 15px;
      line-height: 1.7;
      background: rgba(255, 255, 255, 0.02);
      border-radius: 20px;
      padding: 18px 20px;
      border: 1px solid var(--border);
    }

    .exam-alert {
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      color: var(--accent-primary);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-title {
      font-size: 22px;
      font-weight: 700;
      margin: 50px 0 18px;
      background: linear-gradient(90deg, var(--accent-primary), var(--text-main));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .project-card {
      background: var(--card);
      backdrop-filter: var(--glass);
      border: 1px solid var(--border);
      border-radius: 26px;
      padding: 22px 24px;
      margin-bottom: 18px;
      box-shadow: var(--inner-glow);
      transition: 0.25s;
      position: relative;
      overflow: hidden;
    }
    .project-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
      transition: 0.5s;
    }
    .project-card:hover::before {
      left: 100%;
    }
    .project-card:hover {
      border-color: var(--accent-primary);
    }

    .ip-chip {
      display: inline-flex;
      align-items: center;
      background: rgba(0, 0, 0, 0.25);
      border: 1px solid var(--border);
      padding: 6px 16px;
      border-radius: 14px;
      font-family: monospace;
      font-size: 13px;
      color: var(--accent-primary);
      gap: 8px;
      margin-top: 12px;
    }

    .action-link {
      text-decoration: none;
      color: white;
      background: var(--accent-secondary);
      padding: 10px 22px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: 0.2s;
      border: none;
      cursor: pointer;
    }
    .action-link:hover {
      transform: scale(1.03);
      filter: brightness(1.15);
    }
    .action-link.outline {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--border);
    }

    .exp-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      flex-wrap: wrap;
      gap: 8px;
    }
    .exp-row:last-child {
      border: none;
    }
    .exp-row .action-link {
      padding: 6px 16px;
      font-size: 12px;
    }

    .connections-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 6px 0 4px;
    }

    .connection-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 8px 16px 8px 12px;
      transition: 0.2s;
      text-decoration: none;
      color: var(--text-main);
    }
    .connection-item:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: var(--accent-primary);
    }

    .connection-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border);
    }
    .connection-icon .fab,
    .connection-icon .fas {
      color: var(--text-dim);
      transition: 0.2s;
    }
    .connection-item:hover .connection-icon .fab,
    .connection-item:hover .connection-icon .fas {
      color: var(--accent-primary);
    }

    .connection-info {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .connection-name {
      font-weight: 500;
      font-size: 14px;
    }
    .connection-username {
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 400;
    }

    .connection-chevron {
      color: var(--text-dim);
      font-size: 13px;
      opacity: 0.4;
      transition: 0.2s;
    }
    .connection-item:hover .connection-chevron {
      opacity: 0.8;
      color: var(--text-main);
    }

    .timezone-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid var(--border);
      padding: 4px 16px 4px 12px;
      border-radius: 30px;
      font-size: 13px;
      color: var(--text-dim);
      margin-top: 6px;
    }

    .stats-dock {
      position: fixed;
      bottom: 25px;
      background: rgba(10, 10, 10, 0.5);
      backdrop-filter: blur(16px);
      padding: 10px 24px;
      border-radius: 30px;
      border: 1px solid var(--border);
      display: flex;
      gap: 28px;
      font-size: 13px;
      z-index: 999;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }
    .stat-item b {
      color: var(--accent-primary);
    }

    .fade-in {
      animation: fadeIn 0.7s ease backwards;
    }
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 600px) {
      body {
        padding-top: 40px;
      }
      .stats-dock {
        bottom: 12px;
        gap: 16px;
        font-size: 11px;
      }
    }