.vote-glass-card{
    width:100%;
    border-radius:24px;
    padding:22px;
    background:rgba(15, 25, 40, 0.45);
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 18px 60px rgba(0,0,0,0.28);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

/* === Top Row === */

.vote-top-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    flex-wrap:wrap;
}

.vote-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    font-weight:700;
    font-size:13px;
}

.vote-live-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff4d4f;
    box-shadow:0 0 6px #ff4d4f;
}

.vote-timer{
    padding:8px 12px;
    border-radius:14px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    font-weight:800;
    min-width:80px;
    text-align:center;
    font-size:14px;
}

/* === Title === */

.vote-title{
    margin:0 0 6px;
    color:#fff;
    font-size:30px;
    line-height:1.1;
}

.vote-subtitle{
    margin:0 0 16px;
    color:rgba(255,255,255,0.8);
    font-size:14px;
    line-height:1.5;
}

/* === Grid === */

.vote-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
}

/* === Card === */

.vote-card{
    border-radius:16px;
    padding:14px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    height:140px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:all .2s ease;
}

.vote-card:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,0.09);
}

/* === Song === */

.vote-song-title{
    color:#fff;
    font-size:16px;
    font-weight:600;
    line-height:1.3;
    margin-bottom:10px;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.vote-badge-mini{
    font-size:11px;
    font-weight:700;
    color:#aaa;
    margin-bottom:6px;
}

/* === Meta === */

.vote-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:8px;
}

.vote-count{
    color:#fff;
    font-weight:700;
    font-size:14px;
}

/* === Button === */

.vote-btn{
    border:none;
    border-radius:10px;
    padding:8px 14px;
    background:#00e676;
    color:#04130b;
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    transition:all .2s ease;
}

.vote-btn:hover{
    transform:translateY(-1px);
}

.vote-btn[disabled]{
    opacity:.5;
    cursor:not-allowed;
}

/* === Footer === */

.vote-footer{
    margin-top:14px;
    color:rgba(255,255,255,0.7);
    font-size:13px;
}

/* === Loading === */

.vote-loading{
    grid-column:1 / -1;
    text-align:center;
    padding:20px;
    color:#fff;
}

/* === Responsive === */

@media (max-width: 639px){
    .vote-grid{
        grid-template-columns:1fr;
    }

    .vote-title{
        font-size:24px;
    }
}