/* Progress Indicator */
.voting-progress {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: clamp(10px, 3vw, 20px);
    background: rgba(18, 18, 26, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}

.progress-text {
    text-align: center;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.progress-text span {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 128, 255, 0.6);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(26, 26, 40, 0.8);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.5s ease;
    box-shadow: 0 0 15px rgba(0, 128, 255, 0.6);
}

/* Voting Navigation */
.voting-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 30px auto 0;
}

.btn-secondary {
    position: relative;
    background: linear-gradient(135deg, rgba(160, 160, 176, 0.3), rgba(100, 100, 120, 0.3));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 32px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(160, 160, 176, 0.5), rgba(100, 100, 120, 0.5));
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .voting-navigation {
        flex-direction: column;
    }

    .voting-navigation button {
        width: 100%;
    }
}