* { box-sizing: border-box; }
body {
    background-color: #141d2f;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    display: flex; justify-content: center; align-items: center;
    min-height: 100vh; margin: 0;
}

.container { width: 500px; text-align: center; }

h1 { color: #0079ff; font-size: 32px; margin-bottom: 5px; }

.search-box {
    background-color: #1e2a47;
    padding: 10px; border-radius: 15px;
    display: flex; gap: 10px; margin: 20px 0;
}

input {
    flex: 1; background: transparent; border: none;
    color: white; padding-left: 15px; font-size: 16px; outline: none;
}

button {
    background-color: #0079ff; color: white; border: none;
    padding: 12px 25px; border-radius: 10px; cursor: pointer; font-weight: bold;
}

button:hover { background-color: #3b95ff; }

/* Profile Card Styling */
.card {
    background-color: #1e2a47; border-radius: 20px;
    padding: 30px; text-align: left; display: flex; gap: 20px;
}

.avatar {
    width: 100px; height: 100px; border-radius: 50%;
    border: 4px solid #141d2f;
}

.user-info h2 { margin: 0; color: #fff; }
.user-info p { color: #ccc; margin: 10px 0; }

.stats {
    display: flex; justify-content: space-between;
    background-color: #141d2f; padding: 15px; border-radius: 10px;
}

.stats div { text-align: center; }
.stats span { display: block; font-weight: bold; font-size: 18px; }