:root {
    --v-green: #d4edda;
    --v-green-text: #155724;
    --v-red: #f8d7da;
    --v-red-text: #721c24;
    --v-primary: #007bff;
    --v-secondary: #6c757d;
}

/* ... Переменные цветов (оставьте как было) ... */

.versys-vote-container {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin: 30px 0;
    text-align: center;
}

.versys-title { margin-bottom: 20px; font-weight: 700; }

/* Кнопки */
.versys-buttons-wrapper {
    min-height: 60px; /* Чтобы блок не прыгал при исчезновении кнопок */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.versys-buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.versys-vs { font-weight: bold; color: #999; font-size: 0.9rem; }

.versys-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 50px; /* Более современные кнопки */
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    flex: 1;
    max-width: 200px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.versys-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 8px rgba(0,0,0,0.15); }

.btn-loc1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.btn-loc2 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); color: #444; }

/* Сообщение "Вы уже голосовали" */
.versys-voted-msg {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    animation: fadeIn 0.5s ease-in;
}

/* Графики - Всегда видны */
.versys-results-always {
    display: block;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.versys-bar-group { margin-bottom: 12px; text-align: left; }
.versys-label { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 6px; 
    font-size: 0.9rem;
    color: #555;
    font-weight: 600; 
}
.versys-progress {
    background: #e9ecef;
    border-radius: 8px;
    height: 10px;
    overflow: hidden;
}
.versys-fill { height: 100%; width: 0; transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.fill-1 { background: #764ba2; }
.fill-2 { background: #ff9a9e; }

/* Анимации */
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

/* PROS CONS стили оставьте те же */
.versys-pros-cons-wrapper { margin: 30px 0; }
/* ... (код из предыдущего ответа для pros/cons) ... */
/* --- PROS / CONS --- */
.versys-pros-cons-wrapper { margin: 30px 0; }
.versys-pc-header { margin-bottom: 15px; }
.versys-pc-grid {
    display: flex;
    gap: 20px;
}
@media (max-width: 768px) {
    .versys-pc-grid { flex-direction: column; }
    .versys-buttons { flex-direction: column; }
    .versys-vs { display: none; }
}

.versys-col {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
}
.versys-col ul { margin: 0; padding: 0; list-style: none; }
.versys-col li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.4;
}
.versys-col li:before {
    position: absolute;
    left: 0;
    top: 0;
}

/* Зеленый блок */
.versys-pros { background-color: var(--v-green); color: var(--v-green-text); }
.versys-pros .versys-col-title { font-weight: bold; font-size: 1.2rem; margin-bottom: 15px; border-bottom: 2px solid rgba(0,0,0,0.1); padding-bottom: 5px; }
.versys-pros li:before { content: '✔'; color: var(--v-green-text); }

/* Красный блок */
.versys-cons { background-color: var(--v-red); color: var(--v-red-text); }
.versys-cons .versys-col-title { font-weight: bold; font-size: 1.2rem; margin-bottom: 15px; border-bottom: 2px solid rgba(0,0,0,0.1); padding-bottom: 5px; }
.versys-cons li:before { content: '✖'; color: var(--v-red-text); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }