/* Общие стили */
body, html {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url('images/1.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    backdrop-filter: blur(30px);
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/1.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: blur(10px);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px; /* Отступы по краям */
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.text {
    text-align: center;
    margin-top: 20px;
    color: white;
    font-size: 24px;
    max-width: 600px; /* Ограничиваем ширину текста */
    width: 100%;
}

.continue-button {
    display: inline-block;
    background: linear-gradient(to bottom, #e6b800 0%, #ffe033 100%);
    color: black;
    border: none;
    padding: 15px 100px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.continue-button:hover {
    background: linear-gradient(to bottom, #d4a00f 0%, #f9d423 100%);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

/* Медиа-запрос для устройств с шириной до 768px */
@media (max-width: 768px) {
    .circle {
        width: 200px;
        height: 200px;
    }

    .text {
        font-size: 20px;
        margin-top: 15px;
    }

    .continue-button {
        padding: 10px 30px;
        font-size: 18px;
        border-radius: 25px;
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    }

    .continue-button:hover {
        box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.35);
    }
}
