.vote-page {
    padding: 100px 0;
    background: var(--bg-secondary);
    min-height: calc(100vh - 300px);
}

.vote-content {
    max-width: 1200px;
    margin: 0 auto;
}

.vote-intro {
    margin-bottom: 60px;
}

.vote-benefits {
    margin-bottom: 40px;
}

.vote-benefits h2 {
    font-size: 28px;
    color: var(--light);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vote-benefits > p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: rgba(34, 40, 49, 0.7);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(57, 62, 70, 0.5);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 173, 181, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.benefit-content h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--text-light);
    font-size: 14px;
}

.benefit-content strong {
    color: var(--primary);
}

/* Мониторинги */
.vote-monitorings {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(57, 62, 70, 0.5);
}

.section-subtitle {
    font-size: 24px;
    color: var(--light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-description {
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
}

.monitoring-widgets {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

/* Стили для кнопок Mineserv (сохраняем оригинальный вид) */
.mn-srv-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    background-color: #5865F2 !important;
    color: white !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

.mn-srv-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4) !important;
    color: white !important;
}

.mn-srv-btn__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 24px !important;
    height: 24px !important;
}

.mn-srv-btn__icon svg {
    width: 100% !important;
    height: 100% !important;
}

/* Стили для кнопки HotMC */
.hotmc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: #FF6B35;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1;
}

.hotmc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    color: white;
}

.hotmc-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 16px;
}

.hotmc-btn__icon i {
    font-size: 16px;
}

/* Стили для кнопки TMonitoring (зелёная) */
.tmonitoring-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: #28a745; /* Зелёный цвет */
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1;
}

.tmonitoring-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    color: white;
    background-color: #218838; /* Более тёмный зелёный при наведении */
}

.tmonitoring-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 16px;
}

.tmonitoring-btn__icon i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .vote-page {
        padding: 80px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .monitoring-widgets {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mn-srv-btn,
    .hotmc-btn,
    .tmonitoring-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .vote-benefits h2 {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
}