* {
    outline: none;
    box-sizing: border-box;
}

:root {
    --theme-bg-color: rgba(16 18 27 / 40%);
    --border-color: rgba(113 119 144 / 25%);
    --theme-color: #f9fafb;
    --inactive-color: rgb(113 119 144 / 78%);
    --body-font: sans-serif;
    --hover-menu-bg: rgba(12 15 25 / 30%);
    --content-title-color: #999ba5;
    --content-bg: rgb(146 151 179 / 13%);
    --button-inactive: rgb(249 250 251 / 55%);
    --dropdown-bg: #21242d;
    --dropdown-hover: rgb(42 46 60);
    --popup-bg: rgb(22 25 37);
    --search-bg: #14162b;
    --overlay-bg: rgba(36, 39, 59, 0.3);
    --scrollbar-bg: rgb(1 2 3 / 40%);
}

body {
    font-family: var(--body-font);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2em;
    overflow: hidden;
}

.image-bg {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pour s'assurer que l'image est en arrière-plan */
}

.image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img {
    max-width: 100%;
}

.app {
    background-color: var(--theme-bg-color);
    max-width: 100%;
    max-height: 100vh;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
}

@media screen and (max-width: 560px) {
    body {
        padding: 0;
    }

    .app {
        max-height: 95%;
        height: 100vh;
    }
}


.header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 58px;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding: 0 30px;
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    .header {
        padding: 0 16px;
    }
}

.header-menu {
    display: flex;
    align-items: center;
}


.header-menu a {
    padding: 20px 30px;
    text-decoration: none;
    color: var(--inactive-color);
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

@media screen and (max-width: 520px) {
    .header-menu a  {
        padding: 0 15px;
    }
}

.header-menu a.is-active, .header-menu a:hover {
    color: var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.menu-circle {
    width: 15px;
    height: 15px;
    background-color: #f96057;
    border-radius: 50%;
    box-shadow: 24px 0 0 0 #f8ce52, 48px 0 0 0 #5fcf65;
    margin-right: 195px;
    flex-shrink: 0;
}

@media screen and (max-width: 945px) {
    .menu-circle {
        display: none;
    }
}

.header-profile {
    display: flex;
    align-items: center;
    padding: 0 16px 0 40px;
    margin-left: auto;
    flex-shrink: 0;
}


.wrapper {
    display: flex;
    flex-grow: 1;
    overflow: hidden;
}

.left-side {
    flex-basis: 240px;
    border-right: 1px solid var(--border-color);
    padding: 26px;
    overflow: auto;
    flex-shrink: 0;
}

@media screen and (max-width: 945px) {
    .left-side {
        display: none;
    }
}

.side-wrapper + .side-wrapper {
    margin-top: 20px;
}

.side-title {
    color: var(--inactive-color);
    margin-bottom: 14px;
}

.side-menu {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.side-menu a {
    text-decoration: none;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    font-weight: 400;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    transition: 0.3s;
}
.side-menu a:hover {
    background-color: var(--hover-menu-bg);
}

.side-menu svg {
    width: 16px;
    margin-right: 8px;
}

.main-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    height: 58px;
    flex-shrink: 0;
}
.main-header .header-menu {
    margin-left: 150px;
}
@media screen and (max-width: 1055px) {
    .main-header .header-menu {
        margin: auto;
    }
}
.main-header .header-menu a {
    padding: 20px 24px;
}

.main-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-link-main {
    text-decoration: none;
    color: var(--theme-color);
    padding: 0 30px;
}
@media screen and (max-width: 1055px) {
    .menu-link-main {
        display: none;
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    color: var(--theme-color);
    padding: 20px 40px;
    height: 100%;
    overflow: auto;
    background-color: var(--theme-bg-color);
}
@media screen and (max-width: 510px) {
    .content-wrapper {
        padding: 20px;
    }
}
.content-wrapper-header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    background-image: linear-gradient(to right top, #cf4af3, #e73bd7, #f631bc, #fd31a2, #ff3a8b, #ff4b78, #ff5e68, #ff705c, #ff8c51, #ffaa49, #ffc848, #ffe652);
    border-radius: 14px;
    padding: 20px 40px;
}
@media screen and (max-width: 415px) {
    .content-wrapper-header {
        padding: 20px;
    }
}

.img-content {
    font-weight: 500;
    font-size: 17px;
    display: flex;
    align-items: center;
    margin: 0;
}

.content-text {
    font-weight: 400;
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7em;
    color: #ebecec;


}

.content-wrapper-context {
    max-width: 600px;
}

.content-button {
    background-color: #3a6df0;
    border: none;
    color: #fff;
    border-radius: 20px;
    margin-top: 16px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.content-wrapper-img {
    width: 186px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-top: -25px;
    -o-object-position: center;
    object-position: center;
}

@media screen and (max-width: 570px) {
    .content-wrapper-img {
        width: 110px;
    }
}

.content-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.content-section-title {
    color: var(--content-title-color);
    margin-bottom: 14px;
}

.content-section ul li:hover {
    background-color: var(--theme-bg-color);
}

.content-section ul li:hover:first-child {
    border-radius: 13px 13px 0 0;
}

.content-section ul li:hover:last-child {
    border-radius: 0 0 13px 13px;
}

.content-section ul li + li {
    border-top: 1px solid var(--border-color);
}

.status-button {
    font-size: 15px;
    margin-top: 0;
    padding: 10px 24px;
}

@media screen and (max-width: 390px) {
    .status-button {
        padding: 6px 14px;
    }
}
.status-button.open {
    background: none;
    color: var(--button-inactive);
    border: 1px solid var(--button-inactive);
}
.status-button:not(.open):hover {
    color: #fff;
    border-color: #fff;
}

.content-button:not(.open):hover {
    background: #1e59f1;
}


@media screen and (max-width: 415px) {
    .adobe-product .menu {
        display: none;
    }
}

.button-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 187px;
    margin-left: auto;
}

@media screen and (max-width: 480px) {
    .button-wrapper {
        width: auto;
    }
}

.content-button-wrapper .content-button.status-button.open.close {
    width: auto;
}

.content-section .close {
    margin-right: 0;
    width: 24px;
}

.content-button-wrapper {
    margin-top: auto;
    margin-left: auto;
}

.content-button-wrapper .open {
    margin-right: 8px;
}

.apps-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}

.star{
    position: absolute;
    left: 90%;
    top: 15px;
}

.app-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(33.3% - 20px);
    font-size: 16px;
    background-color: var(--content-bg);
    border-radius: 14px;
    border: 1px solid var(--theme-bg-color);
    padding: 20px;
    transition: 0.3s ease;
}
.app-card:hover {
    transform: scale(1.02);
    background-color: var(--theme-bg-color);
}

.app-card  {
    margin: 5px;
    min-height: 280px;
}
.app-card span {
    display: flex;
    align-items: center;
}

.level{
    margin: 20px 0 0 0;
    font-size: 13px;
}

.app-card__subtext {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}
.app-card-buttons {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-top: 16px;
}

@media screen and (max-width: 1110px) {
    .app-card {
        width: calc(50% - 20px);
    }
    .app-card:last-child {
        margin-top: 20px;
        margin-left: 0;
    }
}

@media screen and (max-width: 565px) {
    .app-card {
        width: calc(100% - 20px);
        margin-top: 20px;
    }
    .app-card + .app-card {
        margin-left: 0;
    }
}
.nav-footer ul, .nav-footer li a{
    color: white;
    list-style: none;
    text-decoration: none;
    margin: 20px 0;
    padding: 5px 0;
    line-height: 30px;
}

::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-bg);
    border-radius: 10px;
}

.contact{
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    text-decoration: none;
    padding: 5px 10px;
}

#movie-card-list{
    margin: 20px 0;
}

.button-card-list {
    font-family: inherit;
    border: 0;
    cursor: pointer;
}

#movie-card-list{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Espace entre les éléments, ajuste selon tes besoins */
}

/* Media query pour les écrans de 900px ou moins */
@media (max-width: 1550px) {
    #movie-card-list {
        grid-template-columns: 1fr; /* Une seule colonne */
    }
}

.movie-card {
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 230px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.25);
    position: relative;
}
@media screen and (max-width: 800px) {
    .movie-card {
        width: 95%;
        max-width: 95%;
    }
}
@media screen and (max-width: 600px) {
    .movie-card {
        background-position: 50% 0;
        background-size: cover;
        height: 400px;
    }
}

.movie-card__overlay {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(to right, rgba(42, 159, 255, 0.2) 0%, #212120 60%, #212120 100%);
    background-blend-mode: multiply;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
@media screen and (max-width: 600px) {
    .movie-card__overlay {
        background: linear-gradient(to bottom, rgba(42, 159, 255, 0.2) 0%, #212120 60%, #212120 100%);
    }
}

.movie-card__icon i {
    font-size: 1.2em;
}
.movie-card__content {
    width: 100%;
    max-width: 370px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    float: right;
    padding-right: 1.2em;
    padding-bottom: 1em;
}
@media screen and (max-width: 1000px) {
    .movie-card__content {
        width: 50%;
    }
}
@media screen and (max-width: 600px) {
    .movie-card__content {
        margin-top: 4.2em;
        width: 100%;
        float: inherit;
        max-width: 100%;
        padding: 0 1em 1em;
    }
}

.movie-card__title {
    color: #ffffff;
    margin-bottom: 0.25em;
    opacity: 0.75;
}

.movie-card__desc {
    font-weight: 300;
    opacity: 0.84;
    margin-bottom: 2em;
}

.btn {
    padding: 0.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 3px solid #ffffff;
    border-radius: 10px;
}

.btn::before {
    content: ">";
    vertical-align: middle;
    font-size: 1.5em;
    padding-right: 0.5em;
}

.btn-outline:hover {
    border-color: #d842e5;
    color: #ffffff;
    box-shadow: 0 1px 8px 0 rgb(229, 59, 213);
}

.form-container{
    display: flex;
    flex-direction: column; /* Arrange elements in a column */
    gap: 10px; /* Add spacing between elements */
    max-width: 300px; /* Optional: Limit the width of the form */
}

/* Styling général pour la checkbox */
.form-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Styling de l'étiquette */
.form-container label {
    font-size: 14px;
    line-height: 1.5;
}

.content-section{
    flex-wrap: nowrap;
    flex-direction: column;
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
}

.content-button{
    margin-top: 5px;
}