/* Banner and ticker styles for leaderboard */

.leaderboard-banner {
    width: calc(100% - 16px);
    max-width: 700px;
    margin: 0 auto 12px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #181A20;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    min-height: 300px;
    height: 300px;
    position: relative;
}

.leaderboard-banner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.85;
}

.leaderboard-banner .banner-placeholder-text {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(34,37,43,0.45);
    pointer-events: none;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .leaderboard-banner {
        width: calc(100% - 12px);
        margin: 0 6px 12px 6px;
        border-radius: 6px;
        min-height: 200px;
        height: 200px;
    }
    
    .leaderboard-banner img {
        height: 200px;
    }
    
    .leaderboard-banner .banner-placeholder-text {
        font-size: 1rem;
    }
}

.player-card .right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-left: auto;
}

.player-card .button-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-card .gg-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #23262C;
    color: #FFD600;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 2px 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.player-card .gg-count img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.player-card .player-coins {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFD600;
}
