:root {
            --body-bg-end: #eaeaff;
            --accent: #492cbf;
            --txt3: #000c8e;
            

        }
        
        @media (prefers-color-scheme: dark) {
             :root {
                --body-bg-end: #171734;
                --accent: #5a4edd;
                --txt3: #ffffff;

            }
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            min-height: 200vh;
            background: var(--body-bg-end);
            color: var(--txt3);
            font-family: 'Poppins', sans-serif;
        }
        
        .simple-separator {
            height: 0.5px;
            background-color: var(--accent);
            margin: 50px auto;
            width: 90%;
            max-width: 1200px;
            min-width: 200px;
            border-radius: 2px;
        }
                
        .titre-page {
            text-align: center;
            font-family: 'helvetica', sans-serif;
            font-size: 1.2em;
            margin-top: 20px;
            margin-bottom: 20px;
            color: var(--text-color2);
        }
        
        #image-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        
        #image-container img {
            display: block;
            width: 200px;
            height: auto;
            object-fit: cover;
            cursor: pointer;
            max-width: 100%;
            transition: transform 0.3s ease-in-out;
        }
        
        #image-container img:hover {
            transform: scale(1.3);
        }
        
        @media (min-width: 768px) {
            #image-container {
                flex-direction: row;
                gap: 30px;
            }
            #image-container img {
                width: 250px;
            }
        }
        
        #image-container-2 {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 15px;
            width: 100%;
            margin: 0;
            padding: 0;
        }
        
        #image-container-2 img {
            display: block;
            width: 200px;
            height: auto;
            object-fit: cover;
            cursor: pointer;
            max-width: 100%;
            transition: transform 0.3s ease-in-out;
        }
        
        #image-container-2 img:hover {
            transform: scale(1.3);
        }
        
        @media (min-width: 768px) {
            #image-container-2 {
                flex-direction: row;
                gap: 30px;
            }
            #image-container-2 img {
                width: 250px;
            }
        }
        
        .btn {
            background-color: #ffffff;
            border: 2px solid #e780aa;
            color: var(--text-color-btn);
            border: none;
            padding: 12px 24px;
            font-size: 18px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px transparent;
            min-width: 150px;
            align-items: center;
        }
        
        .btn:hover {
            background-color: var(--text-color-btn);
            box-shadow: 0 0 15px #ffffff;
            border: 2px solid #ffffff;
            transform: translateY(-2px);
            color: #ffffff;
            align-items: center;
        }
        
        .row {
            display: flex;
            color: var(--text-color-btn);
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .bouton-icone {
            width: 25px;
            height: 25px;
            display: block;
        }
        
        .info-bouton {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            overflow: hidden;
            align-items: center;
            background-color: var(--btn-info);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            transition: width 0.4s ease-out, border-radius 0.4s ease-out, background-color 0.3s;
            transition: 0.5s all;
        }
        
        .info-bouton:hover {
            backdrop-filter: blur(10px);
            background-color: var(--btn-info);
            box-shadow: 0 15px 12px rgba(0, 0, 0, 0.508);
            transform: scale(1.1);
        }
        
        .info-bouton-wrapper {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
        }
        
        .bouton-icone {
            width: 25px;
            height: 25px;
            flex-shrink: 0;
            transition: margin-right 0.4s ease-out;
        }
        
        .info-texte {
            color: white;
            font-family: sans-serif;
            font-size: 14px;
            white-space: nowrap;
            margin-left: 0;
            opacity: 0;
            max-width: 0;
            transition: opacity 0.3s ease-out, max-width 0.3s ease-out, margin-left 0.4s ease-out;
        }
        
        .info-bouton.ouvert {
            width: 250px;
            border-radius: 25px;
            justify-content: flex-start;
            padding-left: 15px;
        }
        
        .info-bouton.ouvert .bouton-icone {
            margin-right: 10px;
        }
        
        .info-bouton.ouvert .info-texte {
            opacity: 1;
            max-width: 200px;
            margin-left: 0;
            padding-right: 15px;
        }
        
        .mms {
            font-size: 2.2em;
            margin-top: 10px;
            text-align: center;
            font-family: 'helvetica', sans-serif;
            color: var(--mms-txt);
        }
        
        .pied-de-page {
            font-size: 0.8em;
            margin-top: 10px;
            text-align: center;
            font-family: 'helvetica', sans-serif;
            color: var(--mms-txt);
        }

        .recent-pages-wrapper {
            width: min(860px, 92%);
            margin: 0 auto 24px;
            padding: 20px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(6px);
        }

        .recent-pages-list {
            list-style: none;
            display: grid;
            gap: 10px;
            margin-top: 10px;
        }

        .recent-pages-list li {
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 12px;
            padding: 10px 12px;
            background: rgba(255, 255, 255, 0.08);
        }

        .recent-pages-list a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
        }

        .recent-pages-list a:hover {
            text-decoration: underline;
        }
        
        .hero-text2 {
            font-size: 5vw;
            font-weight: 600;
            font-family: 'helvetica', cursive;
            text-align: left;
            color: var(--txt3);
            cursor: pointer;
            padding: 20px;
            transition: transform 0.3s ease-in-out;
        }

        .hero-text2 p {
            font-size: 3vw;
        }
        

        
        .highlight {
            font-family: 'helvetica', cursive;
            font-size: 5.5vw;
            font-weight: 400;
            background-image: linear-gradient( 90deg, #f755c9,
            #d246e5
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: filter 0.5s ease, transform 0.10s ease;
        }
        
        .word {
            display: inline-block;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        
        .word:hover {
            color: var(--titre);
            transform: translateY(-5px);
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        }
        
        .highlight:hover {
            filter: brightness(1.2);
            transform: translateY(-20px);
        }
        
        .row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .btn {
            background-color: #ffffff;
            border: 2px solid var(--texte-color-btn);
            color: #EA86D1;
            border: none;
            padding: 12px 24px;
            font-size: 18px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.8s;
            box-shadow: 0 0 10px transparent;
            min-width: 150px;
            align-items: center;
            margin-top: 80px;
        }
        
        .btn:hover {
            background-color: var(--text-color-btn);
            box-shadow: 0 0 15px #ffffff;
            border: 2px solid #ffffff;
            transform: translateY(-2px);
            color: #ffffff;
            align-items: center;
        }
        
        body.no-scroll {
            overflow: hidden;
            height: 100vh;
        }


        body {
            padding-bottom: 64px;
        }

        .text-hover,
        #morgann-text,
        .titre-page,
        #image-container,
        #image-container-2,
        .row,
        .pied-de-page {
            width: min(1120px, 90%);
            margin-left: auto;
            margin-right: auto;
        }

        .text-hover,
        #morgann-text {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 30px;
            backdrop-filter: blur(9px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
        }



        #image-container,
        #image-container-2 {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }



        #image-container img,
        #image-container-2 img,
        #image-container a,
        #image-container-2 a {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            transition: all 0.25s ease;
        }

        #image-container a:hover,
        #image-container-2 a:hover {
            transform: translateY(-8px);
            opacity: 0.95;
        }

        #image-container a:hover img,
        #image-container-2 a:hover img {
            transform: scale(1.03);
        }

        .btn {
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(255, 255, 255, 0.14);
            color: var(--text-color2);
            font-weight: 600;
        }

        .row {
            flex-wrap: wrap;
            gap: 12px;
        }

        @media (max-width: 900px) {
            #image-container,
            #image-container-2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .release-promo-grid {
                grid-template-columns: 1fr;
            }

            .text-hover {
                margin-top: 12px;
            }
        }

        .release-promo-wrapper {
            width: min(1120px, 90%);
            margin: 0 auto;
        }

        .release-promo-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin-top: 16px;
        }

        .release-promo-card {
            display: block;
            text-decoration: none;
            color: var(--text-color2);
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 20px;
            padding: 18px;
            box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
            transition: transform 0.25s ease, background 0.25s ease;
        }

        .release-promo-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .release-promo-card h3 {
            font-size: 1.15rem;
            margin: 10px 0 8px;
        }

        .release-promo-card p {
            opacity: 0.92;
            line-height: 1.45;
        }

        .release-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 700;
            padding: 6px 10px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.35);
        }

        .release-promo-card.is-silky {
            background: linear-gradient(145deg, #4d0000 0%, #c93a3a 100%);
            border-color: rgba(255, 198, 198, 0.55);
        }

        .release-promo-card.is-velvet {
            background: linear-gradient(145deg, #c6c6c6 0%, #5d5d5d 100%);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .release-promo-card.is-80s {
            background: linear-gradient(145deg, #ffaf00 0%, #3c7f72 100%);
            border-color: rgba(255, 237, 117, 0.55);
        }

        .release-promo-card.is-latin {
            background: linear-gradient(145deg, #ff3b00 0%, #ffd400 100%);
            border-color: rgba(255, 224, 143, 0.6);
        }

        .pastille {
            width: 130px;
            height: 24px;
            border-radius: 999px;
            background: #e9c0ff;
            border: 1px solid rgba(142, 111, 169, 0.495);
            align-items: center;
            justify-content: center;
        }

        .pastille h1 {
            font-size: 11pt;
            font-weight: 500;
            color: #fff;
            text-align: center;
            line-height: 24px;
        }

        .pastille-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 0 0 20px 0;
        }