body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #2b3e50;
    overflow: hidden; /* Чтобы изображение не влияло на прокрутку */
}

.content {
    text-align: center;
    padding: 40px;
    z-index: 10;
    position: relative;
}

.content h1 {
    color: #3366cc;
    font-size: 32px;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    color: #555;
}

.image-container {
    position: absolute;
    top: 500px; 
    left: 500px; 
    z-index: 1; 
}

.image-container img {
    width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: transparent;
    color: rgb(218, 136, 42); 
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 6px;
    margin-top: 20px; 
}

.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);
}