body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #e4edf5); /* Градиентный фон */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 600px;
    width: 90%;
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

hr {
    width: 60%;
    margin: 25px auto;
    border: 0;
    border-top: 1px solid #e0e0e0;
    position: relative;
}

hr::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background-color: #3498db;
    border-radius: 50%;
}

.info-link {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(to right, #3498db, #2c3e50);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.info-link:hover::before {
    left: 100%;
}

.info-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
    color: #fff;
}

.info-link:active {
    transform: translateY(1px);
}

.back-button-container {
    text-align: center;
    padding: 20px;
    margin: 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: transparent;
    color: rgba(25, 101, 152, 0.4); 
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: rgba(25, 101, 152, 0.4);
    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:rgba(52, 152, 219, 0.6); /* Темно-красный цвет шрифта */
    transition: width 0.3s ease;
}

.back-button:hover::after {
    width: 100%;
}

.back-button:hover {
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 8px 20px rgba(25, 101, 152, 0.4);
    transform: translateY(-1px);
}

.back-button:active {
    transform: translateY(0);
}