/* Venha Top 5 Player */
.vt5p-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.vt5p-box {
    max-width: 380px;
    background: linear-gradient(180deg, #1a4a8a 0%, #0d2d5a 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    color: white;
}

.vt5p-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
}

.vt5p-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vt5p-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.vt5p-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.vt5p-header p {
    margin: 4px 0 0 0;
    font-size: 11px;
    opacity: 0.8;
}

.vt5p-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vt5p-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.vt5p-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.vt5p-item.active {
    background: rgba(255,65,108,0.2);
    border-color: #ff416c;
}

.vt5p-rank {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #feca57, #ff9f43);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: #1a4a8a;
    flex-shrink: 0;
}

.vt5p-rank.vt5p-top3 {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
}

.vt5p-info {
    flex: 1;
    min-width: 0;
}

.vt5p-info strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vt5p-info span {
    font-size: 11px;
    opacity: 0.7;
}

.vt5p-btn {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.vt5p-btn:hover {
    transform: scale(1.1);
}

.vt5p-btn .vt5p-pause {
    display: none;
}

.vt5p-btn.playing {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.vt5p-btn.playing .vt5p-play {
    display: none;
}

.vt5p-btn.playing .vt5p-pause {
    display: block;
}

.vt5p-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 10px;
    opacity: 0.6;
    font-style: italic;
}

.vt5p-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0,0,0,0.95);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.3s;
    z-index: 99999;
    color: white;
    font-size: 14px;
}

.vt5p-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.vt5p-eq {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 20px;
}

.vt5p-eq span {
    width: 3px;
    background: #ff416c;
    border-radius: 2px;
    animation: vt5p-bounce 0.6s ease infinite;
}

.vt5p-eq span:nth-child(1) { height: 8px; animation-delay: 0s; }
.vt5p-eq span:nth-child(2) { height: 15px; animation-delay: 0.1s; }
.vt5p-eq span:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.vt5p-eq span:nth-child(4) { height: 18px; animation-delay: 0.3s; }

@keyframes vt5p-bounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

.vt5p-toast b {
    color: #ff416c;
}
