 * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
      color: #ffffff;
      min-height: 100vh;
      padding: 20px;
    }

    .container { max-width: 1400px; margin: 0 auto; }

    h1 {
      text-align: center;
      font-size: clamp(2rem, 5vw, 3.5rem);
      background: linear-gradient(135deg, #d5ff40, #a8e63f, #d5ff40);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
      text-shadow: 0 0 30px rgba(213, 255, 64, 0.5);
    }

    .subtitle {
      text-align: center;
      font-size: 1.2rem;
      color: #b0b3b8;
      margin-bottom: 40px;
    }

    .members-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .member-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(213, 255, 64, 0.3);
      border-radius: 20px;
      padding: 25px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .member-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #d5ff40, #a8e63f, #d5ff40);
    }

    .member-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(213, 255, 64, 0.2);
      border-color: #d5ff40;
    }

    .profile-pic {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #d5ff40;
      margin-bottom: 15px;
      box-shadow: 0 0 20px rgba(213, 255, 64, 0.4);
    }

    .twitter-handle {
      font-size: 1.3rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      word-break: break-all;
    }

    .role-badge {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 25px;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    .role-team { background: rgba(213, 255, 64, 0.2); color: #d5ff40; border: 1px solid #d5ff40; }
    .role-contributor { background: rgba(120, 219, 226, 0.2); color: #78dbe2; border: 1px solid #78dbe2; }
    .role-supporter { background: rgba(144, 238, 144, 0.2); color: #90ee90; border: 1px solid #90ee90; }
    .role-fudders { background: rgba(255, 107, 107, 0.2); color: #ff6b6b; border: 1px solid #ff6b6b; }

    .role-label {
      font-size: 0.8rem;
      color: #b0b3b8;
      margin-bottom: 10px;
    }

    @media (max-width: 768px) {
      .members-grid { grid-template-columns: 1fr; gap: 20px; }
      .profile-pic { width: 70px; height: 70px; }
    }