/* Vibe Vote MTV Style */
.vibe-vote-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.vibe-vote-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--emerald);
    text-transform: uppercase;
}

.vibe-vote-header p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.vibe-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.vibe-btn {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.vibe-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--emerald);
    transform: translateY(-2px);
}

.vibe-btn.selected {
    background: var(--emerald);
    border-color: var(--emerald);
    color: #000;
}

.vibe-btn .emoji {
    font-size: 2rem;
}

.vibe-btn .label {
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.vibe-feedback {
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    min-height: 20px;
}

.vibe-feedback.success { color: var(--emerald); }
.vibe-feedback.error { color: #ff4444; }

.vibe-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}
