.gameplay-container {
    background: linear-gradient(135deg, #121218 0%, #1a1a24 100%);
    min-height: 100vh;
    padding: 2rem;
    color: white;
}

.page-title {
    font-weight: 700;
    color: #00ffcc;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
}

.ranking-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-card {
    background: rgba(20, 20, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.ranking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rank-1 {
    background: linear-gradient(145deg, #ffd700 0%, #ffb700 100%);
    color: #000;
    text-shadow: none;
}

.rank-2 {
    background: linear-gradient(145deg, #c0c0c0 0%, #a0a0a0 100%);
    color: #000;
    text-shadow: none;
}

.rank-3 {
    background: linear-gradient(145deg, #cd7f32 0%, #b06020 100%);
    color: #000;
    text-shadow: none;
}

.profile-card {
    background: rgba(30, 30, 46, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.achievement-card {
    background: rgba(40, 40, 60, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: white;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.achievement-card:hover {
    background: rgba(50, 50, 70, 0.9);
    transform: translateX(5px);
}

.achievement-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.achievement-icon.achieved {
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.achievement-icon.locked {
    color: #8888a0;
}

.stats-row {
    background: rgba(20, 20, 30, 0.8);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.player-name {
    margin: 0.5rem 0;
    font-weight: 600;
}

.points {
    font-size: 1.1rem;
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

/* Adicionar estilos para o Progress bar */
.progress {
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: linear-gradient(90deg, #00ffcc 0%, #00cc99 100%);
}