* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #111827, #020617);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* CARD */
.card {
    width: 280px;
    height: 420px;
    background: linear-gradient(160deg, #facc15, #ca8a04);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

/* TOP */
.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}

.rating {
    font-size: 44px;
    font-weight: 900;
}

.position {
    font-size: 18px;
    font-weight: 800;
}

/* LOGOS */
.logos {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
}

.logos img {
    width: 44px;
    height: 30px;
    object-fit: contain;
}

/* PLAYER FACE */
#face {
    width: 200px;
    height: 200px;
    display: block;
    margin: 10px auto;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,0.5);
}

/* NAME */
.name {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #111;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* BUTTON */
button {
    margin-top: 24px;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.6);
}

button:active {
    transform: translateY(0);
}
#at{
    display: flex;
    justify-content: space-around;
}