body {
    background-color: rgb(250, 240, 240);
    color: #c9d1d9;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.card {
    background-color: #161b22;
    border-radius: 12px;
    padding: 20px;
    width: 350px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-bar input {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: none;
    background-color: #21262d;
    color: #c9d1d9;
}

.search-bar button {
    padding: 8px 12px;
    background-color: #238636;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #21262d;
}

.profile-info h2 {
    margin: 0;
    font-size: 1.5em;
}

.profile-info .handle,
.profile-info .date,
.profile-info .tagline {
    font-size: 0.9em;
    color: #8b949e;
    margin: 2px 0;
}

.stats {
    display: flex;
    justify-content: space-between;
    background-color: #238636;
    border-radius: 8px;
    padding: 10px;
    margin: 15px 0;
    color: white;
    font-weight: bold;
}

.stats div span {
    display: block;
    font-size: 0.8em;
    font-weight: normal;
}

.details p {
    margin: 5px 0;
    font-size: 0.9em;
}

.details a {
    color: #58a6ff;
    text-decoration: none;
}