.download-versions {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 25px 0;
}

.download-version-title {
    font-size: 115%;
    color: #2c3e50;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(135deg, #e3ffe7 0%, #d9e7ff 100%);
    margin: -20px -20px 20px -20px;
    padding: 15px 25px;
    border-radius: 12px 12px 0 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

/* Обновленные стили для основной кнопки скачивания */
.download-versions a[style*="background-color: #0000CD"] {
    background: linear-gradient(145deg, #4169E1, #0000CD) !important;
    color: #FFFFFF !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.download-versions a[style*="background-color: #0000CD"]:hover {
    background: linear-gradient(145deg, #0000CD, #00008B) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Обновленные стили для зеркальных ссылок */
.mirror-link {
    background: linear-gradient(145deg, #98FB98, #90EE90);
    color: #1a202c;
    border-radius: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mirror-link:hover {
    background: linear-gradient(145deg, #90EE90, #3CB371);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-button-info {
    color: #696969;
    font-size: 80%;
    margin-left: 10px;
    vertical-align: middle;
}

/* Остальные стили остаются без изменений */
.version-file-size {
    font-size: 0.8em;
}

.download-version {
    margin-bottom: 30px;
    font-size: 95%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border: 1px solid #edf2f7;
}

.links-title {
    font-weight: bold;
    display: block;
    margin: 15px 0 10px;
    color: #2d3748;
}

.mirror-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 10px 0;
}

.text {
    margin-top: 10px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    font-style: italic;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Стили для предупреждения остаются без изменений */
.big-file-notice {
    margin: 20px 0;
    padding: 16px;
    background: linear-gradient(145deg, #fff3cd, #fff8e5);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.big-file-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ffc107, #ffdb4d);
}

.notice-icon {
    font-size: 24px;
    margin-right: 15px;
    float: left;
}

.notice-content {
    overflow: hidden;
}

.notice-title {
    font-weight: 600;
    color: #856404;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.notice-text {
    color: #666;
    line-height: 1.4;
}

.notice-subtext {
    display: block;
    margin-top: 5px;
    font-size: 0.9em;
    color: #777;
    font-style: italic;
}

/* Стили для иконки и подсказки остаются без изменений */
.icon-container {
    position: relative;
    display: inline-block;
}

.icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.tooltip {
    display: none;
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
    white-space: nowrap;
    font-size: 15px;
}

.icon-container:hover .tooltip {
    display: block;
}

/* Медиа-запросы */
@media (max-width: 767px) {
    .download-version-title {
        padding: 12px 15px;
    }
    
    .tooltip {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 500px;
        white-space: normal;
    }
    
    .big-file-notice {
        padding: 12px;
    }
    
    .notice-icon {
        font-size: 20px;
        margin-bottom: 8px;
        float: none;
    }

    .download-button-info {
        display: block;
        margin: 8px 0;
    }
}