        body {
            font-family: 'Inter', sans-serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
      .profile-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: #666;
      }
      .admin-profile-image {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        color: #666;
        font-size: 0.8rem;
      }
      @keyframes loading {
        0% {
          background-position: 200% 0;
        }
        100% {
          background-position: -200% 0;
        }
      }
      .platform-icon {
        width: 20px;
        height: 20px;
      }
      .badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        border-radius: 9999px;
        font-weight: 500;
      }
      .badge-verified {
        background: #10b981;
        color: white;
      }
      .badge-official {
        background: #3b82f6;
        color: white;
      }
      .badge-banned {
        background: #ef4444;
        color: white;
      }
      .badge-warning {
        background: #f59e0b;
        color: white;
      }
      .modal {
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
      }
      .search-history-item {
        cursor: pointer;
        transition: background-color 0.2s;
      }
      .search-history-item:hover {
        background-color: #f3f4f6;
      }
      .profile-image {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #666;
            font-size: 0.9rem;
            flex-shrink: 0;
        }
        .admin-profile-image {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            color: #666;
            font-size: 0.7rem;
            flex-shrink: 0;
        }
        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        .badge {
            font-size: 0.65rem;
            padding: 0.15rem 0.4rem;
            border-radius: 9999px;
            font-weight: 600;
            white-space: nowrap;
        }
        .badge-verified { background: #10b981; color: white; }
        .badge-official { background: #3b82f6; color: white; }
        .badge-banned { background: #ef4444; color: white; }
        .badge-warning { background: #f59e0b; color: white; }
        .modal {
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }
        .search-history-item {
            cursor: pointer;
            transition: background-color 0.2s;
        }
        .search-history-item:hover {
            background-color: #f3f4f6;
        }
        .tab-button {
            transition: all 0.2s;
        }
        .tab-button.active {
            background: #3b82f6;
            color: white;
        }
        .account-match {
            background: #fef3c7;
            border: 1px solid #f59e0b;
        }
        @media (max-width: 640px) {
            .profile-image {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
            }
            .admin-profile-image {
                width: 28px;
                height: 28px;
                font-size: 0.65rem;
            }
        }