.title-block {
    margin-top: 2rem;
}

.title-block__hero {
    position: relative;
    border-radius: 60px;
    box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
    height: 100%;
    overflow: hidden;
}

.title-block__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    pointer-events: none;
    border-radius: 60px;
}

.title-block__astronaut {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 857px;
    max-width: unset;
    pointer-events: none;
    z-index: 1;
    animation: astronaut-float 6s ease-in-out infinite;
}

@keyframes astronaut-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.title-block__content {
    position: relative;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 344px;
}

.title-block__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.title-block__logo {
    height: 26.453px;
    width: 223.081px;
}

.title-block__logo img {
    display: block;
    width: 100%;
    height: 100%;
}

.title-block__date {
    backdrop-filter: blur(10.45px);
    background: rgba(37, 137, 255, 0.2);
    height: 70px;
    position: relative;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.title-block__date-content {
    display: flex;
    align-items: center;
    gap: 13.939px;
    height: 70px;
    padding: 24px;
}

.title-block__date-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.title-block__date-icon img {
    width: 100%;
    height: 100%;
}

.title-block__date-text {
    text-shadow: rgba(0, 0, 0, 0.08) 3.485px 3.485px 13.939px;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: white;
    white-space: nowrap;
    line-height: 1.2;
}

.title-block__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 20px;
}

.title-block__text-content {
    backdrop-filter: blur(2.5px);
    background: rgba(76, 76, 82, 0.6);
    position: relative;
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: white;
}

.title-block__title {
    font-family: 'Mulish', sans-serif;
    font-weight: 900;
    font-size: 52px;
    width: 518px;
    line-height: 1.1;
    margin: 0;
}

.title-block__description {
    font-family: 'Mulish', sans-serif;
    font-weight: 500;
    font-size: 24px;
    width: 583px;
    line-height: 1.5;
    margin: 0;
}

.title-block__button {
    background: rgba(64, 152, 255, 0.8);
    height: 85px;
    position: relative;
    border-radius: 24px;
    width: 420px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 52px;
}

.title-block__button:hover {
    filter: brightness(110%);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.title-block__button:active {
    filter: brightness(90%);
    transform: scale(0.95);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.title-block__button-text {
    text-shadow: rgba(0, 0, 0, 0.08) 3.485px 3.485px 13.939px;
    font-family: 'Mulish', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: white;
    white-space: nowrap;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    .title-block__container {
    }

    .title-block__astronaut {
        height: 540px;
        bottom: 20px;
    }

    .title-block__content {
        gap: 200px;
        padding: 40px;
    }

    .title-block__title {
        font-size: 42px;
        width: 100%;
    }

    .title-block__description {
        font-size: 20px;
        width: 100%;
    }
}

@media (max-width: 970px) {
    .title-block__title {
        font-size: 34px;
    }

    .title-block__description {
        font-size: 18px;
    }

    .title-block__text-content {
        gap: 16px;
        padding: 30px;
        border-radius: 30px;
    }
}

@media (max-width: 900px) {
    .title-block__astronaut {
        height: 401px;
        bottom: 41px;
        right: -43px;
    }

    .title-block__button-text {
        font-size: 20px;
    }
}

@media (max-width: 750px) {
    .title-block__astronaut {
        height: 305px;
        bottom: unset;
        top: 100px;
        right: -47px;
    }
    
    .title-block__content {
        gap: 180px;
    }
    
    .title-block__header {
        flex-direction: column;
        gap: 20px;
        align-items: left;
    }
    
    .title-block__info {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .title-block__text-content {
        padding: 30px;
        width: 100%;
    }
    
    .title-block__title {
        font-size: 26px;
    }
    
    .title-block__description {
        font-size: 18px;
    }
    
    .title-block__button {
        width: 100%;
        max-width: 350px;
    }

    .title-block .register-btn {
        width: 100%;
    }
}

@media (max-width: 670px) {
    .title-block__content {
        padding: 20px;
    }

    .title-block__outer {
        padding: 0;
    }

    .title-block {
        margin-top: 0;
    }

    .title-block__hero {
        border-radius: 0px;
    }
    
    .title-block__background {
        border-radius: 0px;
    }
}

@media (max-width: 470px) {
    .title-block__date-text {
        font-size: 16px;
    }

    .title-block__date-content {
        height: fit-content;
        padding: 12px;
    }

    .title-block__date {
        height: fit-content;
        border-radius: 20px;
    }
}

