* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.screen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
}

.green-grass-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 25, 25, 0.2);
    backdrop-filter: blur(17.6px);
    z-index: 1;
}

.rectangle-4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(31, 31, 31, 0.16);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mizora-link {
    text-decoration: none;
}

.mizora {
    position: absolute;
    top: 20px;
    left: 5%;
    font-weight: 700;
    font-size: 40px;
    color: transparent;
    margin: 0;
}

.span {
    color: #d56300;
}

.text-wrapper-9 {
    color: #ffffff;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    transition: none;
    animation: none;
}

.back-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(213, 99, 0, 0) 0%, rgba(213, 99, 0, 0) 100%);
    border-radius: 30px;
    z-index: 0;
    transition: none;
    animation: none;
}

.back-link:hover {
    border: 1px solid rgba(213, 99, 0, 0.6);
    box-shadow: 0 5px 15px rgba(213, 99, 0, 0.2);
    transform: none;
}

.back-link:hover::before {
    background: linear-gradient(135deg, rgba(213, 99, 0, 0.3) 0%, rgba(213, 99, 0, 0.5) 100%);
}

.vector {
    width: 8px;
    height: 12px;
    position: relative;
    z-index: 1;
    transition: none;
    animation: none;
    transform: none;
}

.text-wrapper-5 {
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

main {
    overflow: visible;
    flex: 1;
    display: flex;
    gap: 50px;
    padding: 160px 5% 50px;
    min-height: auto;
    position: relative;
    z-index: 10;
}

/* Прозрачная коробка для картинки - 50% */
.element-wrapper {
    flex: 1;
    width: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.element {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Прозрачная коробка для описания - 50% */
.group-5 {
    flex: 1;
    width: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
}

.text-wrapper-6 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

/* Стиль для слова "Описание" - B8C4AF 16px */
.text-wrapper-7 {
    color: #B8C4AF;
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0 10px 0;
    display: block;
    letter-spacing: 0.5px;
}

/* Стиль для самого описания - белый 20px */
.text-wrapper-8 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    display: block;
}

/* Полоска теперь зелёная #738C66 */
.div-elementor-widget-2 {
    height: 2px;
    background: linear-gradient(90deg, #738C66, rgba(115, 140, 102, 0.2));
    margin: 20px 0;
}

/* FOOTER */
.footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 60px 80px 40px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    box-sizing: border-box;
    opacity: 1;
}

.footer h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer p {
    font-size: 18px;
    margin: 8px 0;
    color: #ffffff;
}

.footer span {
    display: block;
    margin-top: 30px;
    opacity: 0.7;
    font-size: 14px;
    color: #ffffff;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 30px 0 20px;
}

@media (max-width: 1024px) {
    main {
        gap: 30px;
        padding: 140px 5% 40px;
    }

    .mizora {
        font-size: 34px;
    }

    .text-wrapper-6 {
        font-size: 28px;
    }

    .text-wrapper-8 {
        font-size: 18px;
    }

    .footer {
        padding: 40px 40px 30px;
    }

    .footer h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .back-link {
        padding: 6px 12px;
        gap: 8px;
    }

    .text-wrapper-5 {
        font-size: 12px;
    }

    .vector {
        width: 6px;
        height: 9px;
    }

    main {
        flex-direction: column;
        padding: 130px 5% 30px;
        gap: 25px;
        min-height: auto;
    }

    .element-wrapper {
        width: 100%;
        min-height: auto;
    }

    .group-5 {
        width: 100%;
    }

    .rectangle-4 {
        height: 80px;
    }

    .mizora {
        font-size: 28px;
        top: 15px;
    }

    .text-wrapper-6 {
        font-size: 24px;
    }

    .text-wrapper-7 {
        font-size: 14px;
    }

    .text-wrapper-8 {
        font-size: 18px;
    }

    .footer {
        padding: 35px 25px 25px;
    }

    .footer h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .footer p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .back-link {
        padding: 5px 10px;
        gap: 6px;
    }

    .text-wrapper-5 {
        font-size: 11px;
    }

    .vector {
        width: 5px;
        height: 8px;
    }

    main {
        padding: 110px 5% 25px;
        gap: 20px;
    }

    .mizora {
        font-size: 24px;
    }

    .element-wrapper {
        padding: 20px;
    }

    .group-5 {
        padding: 20px;
    }

    .text-wrapper-6 {
        font-size: 20px;
    }

    .text-wrapper-7 {
        font-size: 14px;
    }

    .text-wrapper-8 {
        font-size: 16px;
    }

    .footer {
        padding: 30px 15px 20px;
    }

    .footer h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer p {
        font-size: 14px;
        margin: 6px 0;
    }

    .footer span {
        margin-top: 20px;
        font-size: 12px;
    }

    .footer-divider {
        margin: 20px 0 15px;
    }
}

@media (max-width: 360px) {
    html, body {
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .back-link {
        padding: 4px 8px;
        gap: 5px;
    }

    .text-wrapper-5 {
        font-size: 10px;
    }

    .vector {
        width: 4px;
        height: 6px;
    }

    .mizora {
        font-size: 20px;
    }

    main {
        padding: 110px 5% 20px;
    }

    .element-wrapper {
        padding: 15px;
    }

    .group-5 {
        padding: 15px;
    }

    .text-wrapper-8 {
        font-size: 14px;
    }

    .screen {
        min-height: 100%;
        height: auto;
    }

    .screen > :last-child {
        margin-bottom: 0;
    }
}