:root {
    --bg-color: #111;
    --text-color: #fff;
    --accent-color: rgb(20, 196, 209);
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45vh 10%;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
    z-index: 2;
}


.glow {
    position: absolute;
    width: 45vh;
    height: 45vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 238, 255, 0.795) 0%, rgba(255, 102, 0, 0) 70%);
    filter: blur(80px);
    animation: moveGlow 8s infinite alternate ease-in-out;
    z-index: 1;
}

.glow1 { 
    top: 30%;
    left: 15%; 
}

.glow2 { 
    top: 27%; 
    right: 10%; 
    background: radial-gradient(circle, rgba(153, 0, 255, 0.795) 0%, rgba(255, 102, 0, 0) 70%);
    width: 55vh;
    height: 55vh;
}

@keyframes moveGlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); }
}

.hero-text {
    max-width: 35%;
    text-align: left;
    position: absolute;
    z-index: 3;
    padding-top: 20vh;
}

.hero h1 {
    font-size: 4rem;
    margin: 0;
    color: var(--text-color);
}

.hero h1 span {
    background: linear-gradient(90deg, rgba(204, 0, 255, 0.808) 0%, rgb(255, 208, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(204, 0, 255, 0.8), 0 0 150px rgba(255, 208, 0, 0.8);
}

.hero p {
    font-size: 1.2rem;
    margin-top: 30px;
    line-height: 1.5;
}

.hero img {
    width: 35%;
    height: auto;
    animation: fadeIn 1.5s ease-in-out;
    position: absolute;
    z-index: 3;
    right: 7%;
    top: 12%;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}












.content-section {
    padding: 100px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20vh;
    margin-bottom: 10vh;

    margin-right: 12vw;
    margin-left: 12vw;

    background-color: #1a1a1a;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.content-text {
    max-width: 50%;
    text-align: left;
}

.content-text h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.content-text p {
    font-size: 1.2rem;
    margin: 20px 0;
    line-height: 1.4;
}

.content-text a {
    display: inline-block;
    margin-top: 25px;
    margin-right: 20px;
    padding: 10px 20px;
    color: #fff;
    background: var(--accent-color);
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 1.2rem;
    font-weight: 500;
}

.content-text a:hover {
    background: rgb(11, 123, 131);
}

.content-section img {
    max-width: 35%;
    height: auto;
    border-radius: 10px;
}

.content-section img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}





.specialT {
    flex-direction: column;
}

.TrailerIframe {
    width: 100%;
    height: 70vh;
    border-radius: 20px;
    margin-top: 100px;   
}

.SteamIframe {
    width: 100%;
    margin-top: 100px;   
}





/* Inversion pour la deuxième section */
.reversed .content-wrapper {
    flex-direction: row-reverse;
}


.logoNitsubot {
    border-radius: 30px !important;
    margin-top: 70px;

}

.secondaryBtn {
    background: #52545d !important;
}

.secondaryBtn:hover {
    background: #3a3b45 !important;
}

.labIcon {
    width: 22%;
    margin-top: 40px;
}

































/* Mobile Styles */
@media (max-width: 768px) {

    /* Hero Section Mobile */
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30vh 5%;
    }

    .hero-text {
        max-width: 100%;
        padding-top: 5vh;
        text-align: center;
        top: 40vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero img {
        width: 80%;
        right: auto;
        top: auto;
        position: relative;
        transform: translateY(-73%);
    }

    /* Adjust Glows */
    .glow {
        width: 30vh;
        height: 30vh;
        filter: blur(60px);
    }

    .glow1 {
        top: 40%;
        left: 35%;
    }

    .glow2 {
        top: 10%;
        bottom: auto;
        right: auto;
        left: 25%;
        
    }




    










    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .content-text, .content-section img {
        max-width: 100%;
    }

    .content-section img {
        margin-bottom: 20px;
    }

    .content-section {
        margin-right: 2vw;
        margin-left: 2vw;
        padding: 60px 5%;
        border-radius: 40px;
    }


    .labIcon {
        width: 50%;
        margin-top: 20px;
    }
}