/* Youtube Page */
.Youtube-Container {
    display: flex;
    align-items: center;
    justify-content: space-around;

    width: 100vw;
    height: 700px;

    background: linear-gradient(90deg, #0b5eff, #001f49);
}

.LC {
    position: absolute;
    width: 350px;
    height: 350px;

    left: -5%;
    top: 45%;

    z-index: 1;
}

.RC {
    position: absolute;
    width: 250px;
    height: 250px;

    left: 82%;
    top: 5%;

    z-index: 1;
}

.Youtube-Container::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, #0097b2 0%, transparent 70%);
    filter: blur(10px);
    z-index: 0;
    left: 18%;
    top: 54%;
    transform: translate(-50%, -50%);
}

.Youtube-Title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 2;

    width: 50%;
    padding: 0 20px;
}

.Youtube-Title h1 {
    color: #fff;
    font-family: 'Etna', sans-serif;
    font-size: 70px;
    width: 80%;
    line-height: 0.8;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

.Youtube-Title p {
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    width: 80%;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

.Video-Container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;

    z-index: 1;
}

.Video {
    border-radius: 30px;
    width: 600px;
    height: 340px;
}

/* Team */
.Team-Container {
    width: 100%;
    position: relative;
    overflow: hidden;

    background: radial-gradient(at 50% 50%, #0b5eff, #001f49);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px;
}

.Root-1,
.Root-2 {
    position: absolute;
    z-index: 1;

    width: 380px;
    height: 380px;
}

.Root-1 {
    left: -6%;
    top: -3%;
}

.Root-2 {
    right: -7%;
    bottom: -4%;
}

.Team-Title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;

    z-index: 2;
}

.Team-Title h1 {
    color: #fff;
    font-size: 70px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.3px;
}

.Team-Title p {
    color: #ffffff;
    font-size: 20px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    font-family: "DM Sans", sans-serif;
    text-align: center;
    width: 60%;
}

[data-swiper-parallax] {
    transition: transform 0.75s ease;
}

/* .Frame {
    display: none;
    position: absolute;
    top: 35px;
    left: 535px;

    width: 350px;
    height: 350px;
    z-index: 1;

    animation: rotate 10s linear infinite;
} */

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* MV Page */
.MV-Container {
    width: 100%;
    height: 500px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    background-color: #001f49;
}

.MV {
    width: 50%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
}

.MV h1 {
    z-index: 2;
    font-size: 70px;
    color: #4fffb4;
    font-family: 'Etna', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.MV p {
    z-index: 2;
    font-size: 20px;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    text-align: justify;
    width: 70%;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

.MV img {
    width: 300px;
    height: 300px;

    z-index: 1;
    position: absolute;
}

/* Mobile View */
@media (max-width: 900px) {

    /* Youtube Page */
    .Youtube-Container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;

        width: 100%;
        height: 640px;
        padding-top: 60px;
    }

    .LC {
        display: none;
    }

    .RC {
        display: none;
    }

    .Youtube-Container::before {
        left: 30%;
        top: 35%;
    }

    .Youtube-Title {
        gap: 20px;

        width: 100%;
        padding: 0 40px;
    }

    .Youtube-Title h1 {
        font-size: 36px;
        width: 100%;
    }

    .Youtube-Title p {
        font-size: 20px;
        width: 100%;
        text-align: justify;
        text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    }

    .Video-Container {
        display: flex;
        align-items: flex-start;
        width: 100%;
        height: 100%;
    }

    .Video {
        border-radius: 30px;
        width: 350px;
        height: 300px;
    }

    /* Team */
    .Root-1,
    .Root-2 {
        display: none;
    }

    .Team-Title h1 {
        font-size: 36px;
        text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    }

    .Team-Title p {
        font-size: 20px;
        text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
        width: 100%;
        text-align: justify;
    }

    .Profile-Card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .Frame {
        top: 16px;
        left: 30px;
        width: 325px;
        height: 325px;
    }

    /* MV Page */
    .MV-Container {
        width: 100%;
        height: 700px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .MV {
        width: 100%;
    }

    .MV h1 {
        font-size: 36px;
    }

    .MV p {
        font-size: 20px;
        width: 80%;
        text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
    }

    .MV img {
        width: 250px;
        height: 250px;

        z-index: 1;
        position: absolute;
    }
}