/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Шапка сайта */
/* Обновленные стили для шапки */
.site-header {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    color: white;
    padding: 15px 0;
    /* Убираем position: sticky - шапка не фиксирована */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    max-width: 100%;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
 
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin: 0;
}

.site-slogan {
    font-size: 0.9rem;
    font-weight: normal;
    font-family: 'Arial', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin: 0;
    opacity: 0.8;
}

.main-nav {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.3);
}

.nav-link:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-link i {
    font-size: 1.5rem;
}

.profile-link {
    background: rgba(0,0,0,0.3) !important;
}

/* Стили для мобильных устройств */
@media (max-width: 768px) {
    .header-content {
        padding: 0 10px;
    }
    
    .logo-section {
        gap: 10px;
    }
    
    .logo {
        height: 35px;
    }
    
    .site-title {
        font-size: 1.2rem;
        max-width: 150px;
    }
    
    .site-slogan {
        font-size: 0.8rem;

    }
    
    .main-nav {
        gap: 8px;
    }
    
    .nav-link {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .nav-link i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo-section {
        gap: 8px;
    }
    
    .logo {
        height: 30px;
    }
    
    .site-title {
        font-size: 1rem;
        max-width: 100px;
    }
    
    .site-slogan {
        font-size: 0.7rem;

    }
    
    .main-nav {
        gap: 6px;
    }
    
    .nav-link {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .nav-link i {
        font-size: 1.1rem;
    }
}

/* Стили для контейнера */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.main-content {
    min-height: calc(100vh - 100px);
    padding: 20px 0;
}

/* Стили для основного контента */
@media (max-width: 768px) {
    .main-content {
        padding: 15px 0;
    }
}

/* Города */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 0;
}

.city-card {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    position: relative;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.city-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
}

.crest-container {
    width: 70px;
    height: 70px;
    margin-right: 10px;
    position: relative;
}

.crest-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  
}

.city-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    color: #ffffff;
}

.city-region {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    color: #ffff00;
}

.city-position {
    font-family: 'Press Start 2P', cursive;
    background: rgba(0,0,0,0.5);
    color: #00ff00;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
    letter-spacing: 1px;
    border: 1px solid rgba(0,255,0,0.3);
}

.citizens-info {
 
    border-radius: 8px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', monospace;
}

.health-bar-container {
    margin: 10px 0;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
}

.health-bar {
    width: 100%;
    height: 33px;
    background-color: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.health-fill {
    height: 100%;
    transition: width 0.5s ease;
  
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.health-text {
    font-family: 'Orbitron', monospace;
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
    font-size: 1rem;
    color: white;
}

.city-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 10px 0;
}

.btn-strike, .btn-heal {
    padding: 8px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
}

.btn-strike {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-strike:hover {
    background: linear-gradient(135deg, #ff5252 0%, #dd4b4b 100%);
    transform: scale(1.05);
}

.btn-heal {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.btn-heal:hover {
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
    transform: scale(1.05);
}

.btn-strike:disabled, .btn-heal:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.voting-time-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

/* Стили для "Города дня" */
.featured-city-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.featured-city-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.featured-city-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.featured-city-name {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
}

.featured-city-health {
    background: rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.featured-health-bar {
    width: 100%;
    height: 35px;
    background-color: #e0e0e0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
    margin: 10px 0;
}

.featured-health-fill {
    height: 100%;
    transition: width 0.5s ease;
    position: relative;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.featured-city-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.featured-btn-strike, .featured-btn-heal {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
}

.featured-btn-strike {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.featured-btn-strike:hover {
    background: linear-gradient(135deg, #ff5252 0%, #dd4b4b 100%);
    transform: scale(1.05);
}

.featured-btn-heal {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.featured-btn-heal:hover {
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
    transform: scale(1.05);
}

.featured-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 10px;
}

/* Личный кабинет */
.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 20px;
}

.profile-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.profile-email {
    color: #6c757d;
    margin-bottom: 10px;
}

.profile-instagram {
    color: #e74c3c;
    margin-bottom: 15px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.profile-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.btn-profile {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-edit {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.btn-change-password {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.btn-refill {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.btn-history {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
}

.btn-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.balance-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.balance-info h3 {
    margin-bottom: 15px;
    color: #333;
}

.balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.balance-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.balance-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.balance-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.referral-section {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    padding: 25px;
    border-radius: 12px;
    color: white;
    margin-bottom: 30px;
}

.referral-section h3 {
    margin-bottom: 15px;
    color: white;
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.referral-stat {
    text-align: center;
}

.referral-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.referral-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.referral-link {
    background: rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    word-break: break-all;
}

.copy-btn {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.copy-btn:hover {
    background: rgba(255,255,255,0.4);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.quick-action {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.quick-action:hover {
    transform: translateY(-3px);
}

.quick-action i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #667eea;
}

.quick-action a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Формы */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.25);
}

.btn-submit {
    background-color: #667eea;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #5a6fd8;
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Уведомления */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Страница города */
.city-page {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}

.city-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.city-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.city-description {
    max-width: 800px;
    margin: 0 auto;
}

/* Таблицы */
.table-responsive {
    overflow-x: auto;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.user-table th,
.user-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.user-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.user-table tr:hover {
    background-color: #f8f9fa;
}

.avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.page-link {
    padding: 8px 15px;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.page-link:hover,
.page-link.active {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .header-content {
        padding: 0 10px;
    }
    
    .logo-section {
        gap: 10px;
    }
    
    .logo {
        height: 50px;
    }
    
    .site-title {
        font-size: 1.2rem;
        max-width: 150px;
    }
    
    .main-nav {
        gap: 8px;
    }
    
    .nav-link {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .nav-link i {
        font-size: 1.3rem;
    }
    
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .city-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .city-position {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .city-name {
        font-size: 1rem;
    }
    
    .city-region {
        font-size: 0.8rem;
    }
    
    .city-position {
        font-size: 1rem;
    }
    
    .health-bar {
        height: 25px;
    }
    
    .health-fill {
        font-size: 0.8rem;
    }
    
    .profile-container {
        margin: 10px;
        padding: 20px;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }
    
    .logo-section {
        gap: 8px;
    }
    
    .logo {
        height: 50px;
    }
    
    .site-title {
        font-size: 1rem;

    }
    
    .main-nav {
        gap: 6px;
    }
    
    .nav-link {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .nav-link i {
        font-size: 1.1rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .city-header {
        flex-direction: row;
    }
    
    .city-name {
        font-size: 0.9rem;
    }
    
    .city-region {
        font-size: 0.7rem;
    }
    
    .city-position {
        font-size: 0.9rem;
    }
}

/* Стили для футера */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    margin-top: 50px;
    padding-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: #bdc3c7;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}
/* Стили для "Блэкаута" */
.blackout-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blackout-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.blackout-name {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Orbitron', monospace;
    color: #333;
}

.blackout-icon {
    font-size: 2rem;
}

.blackout-description {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #333;
}

.blackout-health {
    background: rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.blackout-health-bar {
    width: 100%;
    height: 35px;
    background-color: #e0e0e0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
    margin: 10px 0;
}

.blackout-health-fill {
    height: 100%;
    transition: width 0.5s ease;
    position: relative;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.blackout-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.blackout-btn-heal, .blackout-btn-disabled {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
}

.blackout-btn-heal {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.blackout-btn-heal:hover {
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
    transform: scale(1.05);
}

.blackout-btn-disabled {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
    cursor: not-allowed;
}

/* Стили для карточки "Блэкаут" */
.city-card-blackout {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.city-card-blackout .city-name {
    color: #333;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.city-card-blackout .city-region {
    color: #333;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}

.city-card-blackout .btn-strike {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%) !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}