/* =============================================================
   WoW Bolivia — Vote
   ============================================================= */

.wb-vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

/* Card */
.wb-vote-card {
    background-color: rgba(5, 18, 32, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wb-vote-card:not(.wb-vote-card--disabled):hover {
    border-color: rgba(244, 191, 42, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.wb-vote-card--disabled {
    cursor: default;
    opacity: 0.75;
}

/* Site header (logo or name) */
.wb-vote-site-header {
    background-color: rgba(2, 179, 234, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 16px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-vote-site-img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0.95);
}

.wb-vote-site-name {
    color: #c0d4e0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* Card body */
.wb-vote-card-body {
    padding: 16px;
}

/* Ready state */
.wb-vote-ready {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.wb-vote-icon--ready {
    font-size: 28px;
    color: #1eff00;
    filter: drop-shadow(0 0 6px rgba(30, 255, 0, 0.4));
}

.wb-vote-cta {
    font-size: 13px;
    font-weight: 700;
    color: #f4bf2a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wb-vote-reward {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #c0d4e0;
}

.wb-vote-reward strong {
    color: #02b3ea;
    font-weight: 800;
}

/* Cooldown state */
.wb-vote-cooldown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.wb-vote-icon--cooldown {
    font-size: 24px;
    color: #5a6a7a;
}

.wb-vote-cooldown-time {
    font-size: 15px;
    font-weight: 700;
    color: #02b3ea;
    font-variant-numeric: tabular-nums;
}

.wb-vote-cooldown-label {
    font-size: 11px;
    color: #5a6a7a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Firefox popup alert */
.wb-alert-firefox {
    background-color: rgba(244, 191, 42, 0.08);
    border: 1px solid rgba(244, 191, 42, 0.25);
    color: #f4bf2a;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 20px;
}
