.pilot-modal {
    position: fixed;
    width: 530px;
    height: 610px;
    right: 100px;
    top: 124px;
    background-image: linear-gradient(to bottom, #210C17, #68002F);
    border-radius: 20px;
    overflow: hidden;
    /*border-top: 1px solid rgba(255, 164, 211, 0.1);*/
    /*border-left: 1px solid rgba(255, 164, 211, 0.2);*/
}

.pilot-modal-close-btn {
    z-index: 99999;
    opacity: 0.5;
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    right: 20px;
    top: 20px;
    cursor: pointer;
}


.particles{
    width: 120%;
    transform: translateX(-10%);
    position: absolute;
    z-index: 99999;
    margin-top : 30%;
    object-fit: cover;
}


.pilot-silhouette{
    background-image: linear-gradient(to bottom, #000, #4e0023);
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

.pilot-silhouette-img {
    z-index: 11;
    align-self: flex-end;
    height: 70%;
}

.glow-container{
    position: absolute;
    z-index: 12;
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin-top : 130%;

}


.glow-container .glow1{
    position: absolute;
    z-index: 2;
    width: 50%;
    height: 20%;
    background-color: #ff668c;
    mix-blend-mode: screen;
    border-radius: 50%;
    filter: blur(50px);
}

.glow-container .glow2{
    z-index: 2;
    width: 50%;
    height: 10%;
    background-color: #ff8db1;
    mix-blend-mode: hard-light;
    border-radius: 50%;
    filter: blur(100px);
}

.back-glow-container{
    position: absolute;
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.back-glow-container .glow1{
    width: 70%;
    height: 75%;
    border-radius: 100%;
    background-color: rgba(172, 0, 78, 0.9);
    align-self: flex-end;
    filter: blur(100px);
}

.pilot-silhouette::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
    transparent,
    #68002F,
    #FFA4D3,
    #68002F,
    transparent
    );
    z-index: 99999;
}

.bottom-glow1{
    position: absolute;
    right: 0;
    bottom: 5%;
    width: 50%;
    height: 10%;
    background: linear-gradient(to right, transparent, #CE375F);
    mix-blend-mode: screen;
    border-radius: 50%;
    filter: blur(60px);

}

.bottom-glow2{
    position: absolute;
    right: 0;
    bottom: 5%;
    width: 90%;
    height: 10%;
    background-color: #9c2d4a;
    mix-blend-mode: screen;
    border-radius: 50%;
    filter: blur(60px);
    transform: rotate(15deg);

}


.pilot-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 15px 30px 30px 30px;
}

.pilot-title img {
    width: 90%;
    height: 100%;
}

.go-to-site {
    display: flex;
    align-items : center;
    justify-content: center;
    width: 180px;
    height: 50px;
    border-radius: 20px;
    font-family: "Pretendard-Bold";
    font-weight: bold;
    font-size: 20px;
    background-color: #4D0024;
    color: #FFBCD7;
    z-index: 99999;
}


@media (max-width: 720px) {
    .pilot-modal {
        right: 20px;
        top: 124px;
        width: 350px;
        height: 500px;

    }

    .pilot-title {
        padding: 20px 30px 10px 30px;
    }

}