body {
    background: linear-gradient(135deg, #E7E6D8, #d4d2c5); /* Градиентный фон */
    color: #b22222; /* Темно-красный цвет шрифта */
    font-family: 'Georgia', serif; /* Более эстетичный шрифт */
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    min-height: 100vh; /* Занимает всю высоту экрана */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.welcome {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.3); /* Полупрозрачный фон */
    border-radius: 12px; /* Скруглённые углы */
    border: 2px solid #a0a08d; /* Легкая граница */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Тень */
    animation: fadeIn 1.5s ease-in; /* Анимация появления */
}

.modification-date {
    font-size: 16px;
    text-align: center;
    margin-top: 30px;
    color: #555;
    font-style: italic;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    border: 1px dashed #a0a08d;
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для кнопки "Назад" */
.back-button-container {
    text-align: left;
    padding: 20px;
    margin: 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: transparent;
    color: #b22222; /* Темно-красный цвет шрифта */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #b22222; /* Темно-красный цвет шрифта */
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 6px;
}

.back-button::before {
    content: "←"; /* Символ стрелки */
    font-size: 16px;
    transition: transform 0.2s ease;
}

.back-button:hover::before {
    transform: translateX(-2px);
}

.back-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background:#b22222; /* Темно-красный цвет шрифта */
    transition: width 0.3s ease;
}

.back-button:hover::after {
    width: 100%;
}

.back-button:hover {
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 4px 10px #b22222;
    transform: translateY(-1px);
}

.back-button:active {
    transform: translateY(0);
}