/* Paleta de Cores do Osu! */
:root {
    --osu-pink: #FF66AA;
    --osu-blue: #00BFFF;
    --osu-dark: #1A1A1A;
    --osu-gray: #333333;
    --osu-light-gray: #CCCCCC;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--osu-dark);
    color: var(--osu-light-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.profile-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.profile-card {
    background-color: rgba(51, 51, 51, 0.95);
    border: 2px solid var(--osu-gray);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    text-align: center;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--osu-dark);
    padding-bottom: 25px;
}

.profile-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--osu-pink);
    box-shadow: 0 0 15px rgba(255, 102, 170, 0.5);
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 1.8em;
    color: var(--osu-pink);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.profile-rank, .profile-pp {
    margin: 5px 0;
    font-size: 1em;
    color: var(--osu-light-gray);
}

.profile-pp {
    color: var(--osu-blue);
    font-weight: bold;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--osu-blue);
}

.stat-label {
    font-size: 0.8em;
    color: var(--osu-light-gray);
    text-transform: uppercase;
}

.profile-links {
    text-align: center;
}

.profile-link-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--osu-pink);
    color: var(--osu-dark);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.profile-link-btn:hover {
    background-color: #FF85BB;
    transform: translateY(-2px);
}
