* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1b1b1b;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: min(900px, 95%);
    margin: 60px auto;
    text-align: center;
}

h1 {
    font-size: 48px;
    margin-bottom: 40px;
}

#search {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

input {
    width: 260px;
    padding: 14px;
    font-size: 18px;
    border: none;
    outline: none;
    background: #2d2d2d;
    color: white;
}

button {
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    background: #2d2d2d;
    color: white;
    font-size: 18px;
}

button:hover {
    background: #2d2d3d;
}

.hidden {
    display: none;
}

.loading-gif {
    width: 160px;
    margin-top: 40px;
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-top: 25px;
}

#displayName {
    margin-top: 20px;
    font-size: 36px;
}

#userId {
    color: #b7b7b7;
    margin-top: 8px;
    margin-bottom: 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 18px;
}

.card {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
}

.card span {
    display: block;
    color: #aaa;
    margin-bottom: 12px;
}

.card strong {
    font-size: 42px;
}