@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --palerBlue: #ffffff;
    --brandBlue: #2abfff;
    --brandBlueDark: #07182f;
    --brandBlueDeep: #0f2f57;
    --brandBlueAccent: #1f6dff;
    --glassStart: rgba(42, 191, 255, 0.25);
    --glassEnd: rgba(5, 24, 46, 0.65);
    --glassHover: rgba(71, 209, 255, 0.45);
    --glassBorder: rgba(255, 255, 255, 0.18);
    --sphere1-a: #1845ad;
    --sphere1-b: #23a2f6;
    --sphere2-a: #424040;
    --sphere2-b: #f09819;
}

body {
    background-color: #05030a;
    font-family: 'Poppins', 'Poppins', sans-serif;
    min-height: 100vh;
    position: relative;
    z-index: 0;
    overflow-x: hidden;
    color: #e5e5e5;
}

body.theme-dark-glass {
    background-color: #080710;
}

#wrap-texture {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

#wrap-texture canvas,
#wrap-texture .rain-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#wrap-texture canvas {
    z-index: 1;
}

#wrap-texture .rain-fallback {
    z-index: 0;
    opacity: 0.9;
    transition: opacity 0.6s ease;
    filter: saturate(1.05);
    filter: saturate(1.05);
}

body.has-rain-effect #wrap-texture .rain-fallback {
    opacity: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Poppins', sans-serif;
}

.burger {
    display: none;
    background: transparent;
    border: none;
    position: relative;
}

main {
    position: relative;
    z-index: 1;
    padding: 180px 0 100px;
}

header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 120;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    background: transparent;
    border: none;
}

#back-up {
    --size: 80px;
    --back-up-glow: rgba(42, 191, 255, 0.5);
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: var(--size);
    height: var(--size);
    border-radius: 999px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    isolation: isolate;
    z-index: 1000;
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

#back-up::before,
#back-up::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: opacity 0.3s ease, transform 0.35s ease;
}

#back-up::before {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(9, 18, 42, 0.9));
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.35),
        inset 2px 2px 4px rgba(255, 255, 255, 0.35),
        inset -2px -2px 6px rgba(5, 8, 20, 0.7);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    z-index: -2;
}

#back-up::after {
    inset: 6px;
    background: linear-gradient(145deg, rgba(42, 191, 255, 0.35), rgba(15, 47, 87, 0.9));
    box-shadow:
        inset 1px 1px 2px rgba(255, 255, 255, 0.45),
        inset -1px -1px 2px rgba(5, 8, 20, 0.65);
    backdrop-filter: blur(4px) saturate(120%);
    -webkit-backdrop-filter: blur(4px) saturate(120%);
    z-index: -1;
}

.back-up__icon {
    width: 26px;
    height: 26px;
    position: relative;
    display: block;
}

.back-up__icon::before,
.back-up__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center;
    background: none;
}

.back-up__icon::before {
    width: 4px;
    height: 22px;
    border-radius: 999px;
    background: #ffffff;
    transform: translate(-50%, -20%);
}

.back-up__icon::after {
    width: 14px;
    height: 14px;
    border-left: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
    border-radius: 4px;
    transform: translate(-50%, -30%) rotate(45deg);
}

#back-up:hover {
    transform: translateY(-6px);
}

#back-up:hover::before {
    box-shadow:
        0 30px 55px rgba(0, 0, 0, 0.55),
        0 0 25px var(--back-up-glow);
}

#back-up:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(42, 191, 255, 0.5);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#logo {
    cursor: pointer;
    display: flex;
    align-items: center;
}

header #logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
}

nav ul {
    color: #ffffff;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

nav ul a {
    text-decoration: none;
    color: inherit;
}

nav ul li {
    text-transform: uppercase;
    margin: 10px;
    list-style: none;
}

nav ul li:hover {
    color: var(--brandBlue);
}

.nav-logo {
    margin: 0;
    text-transform: none;
}

.nav-logo a {
    display: inline-flex;
}

/* LIQUID GLASS MENU + BLOCS */
.liquid-glass {
    --glass-size-w: 16.875rem;
    --glass-size-h: 16.875rem;
    --glass-padding: 1.875rem;
    --border-radius: 2rem;
    --transition: 0.4s cubic-bezier(0.5, 1.5, 0.5, 1);
    --menu-gap: 1rem;
    --icon-size: 4rem;
    --icon-border-radius: 1rem;
    --icon-padding: 0.75rem;
    position: relative;
    width: var(--glass-size-w);
    height: var(--glass-size-h);
    padding: var(--glass-padding);
    border-radius: var(--border-radius);
    cursor: grab;
    transition:
        width var(--transition),
        height var(--transition),
        padding var(--transition),
        transform 0.35s ease;
    box-shadow: 0 25px 55px rgba(2, 6, 18, 0.55);
    overflow: hidden;
    isolation: isolate;
}

.liquid-glass.is-expanded {
    --glass-size-w: 34.375rem;
    --glass-size-h: 43.75rem;
    --glass-padding: 2.5rem;
    --menu-gap: 2rem;
    --icon-size: 8rem;
    --icon-border-radius: 2rem;
    --icon-padding: 1.5rem;
}

.liquid-glass.is-dragging {
    cursor: grabbing;
}

.liquid-glass--bend,
.liquid-glass--face,
.liquid-glass--edge {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;
}

.liquid-glass--bend {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    filter: url(#glass-blur);
}

.liquid-glass--face {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(7, 15, 34, 0.75));
    box-shadow:
        0 4px 4px rgba(0, 0, 0, 0.15),
        0 0 12px rgba(0, 0, 0, 0.35);
}

.liquid-glass--edge {
    box-shadow:
        inset 3px 3px 3px rgba(255, 255, 255, 0.35),
        inset -3px -3px 3px rgba(255, 255, 255, 0.45);
}

.liquid-glass__content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.75rem);
    height: 100%;
    width: 100%;
}

.liquid-glass__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.liquid-glass__menus {
    display: flex;
    gap: var(--menu-gap);
    transition: gap var(--transition);
    width: 100%;
}

.liquid-glass__menus ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: inherit;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.liquid-glass__menus li {
    margin: 0;
}

.liquid-glass__link {
    border-radius: var(--icon-border-radius);
    box-shadow:
        inset 1px 1px 1px rgba(255, 255, 255, 0.45),
        inset -1px -1px 1px rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size);
    min-width: var(--icon-size);
    padding: var(--icon-padding);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    pointer-events: auto;
    transition:
        width var(--transition),
        height var(--transition),
        border-radius var(--transition),
        transform 0.3s ease,
        box-shadow 0.3s ease;
    background: linear-gradient(90deg, rgba(26, 118, 173, 1) 0%, rgba(40, 142, 201, 1) 100%);
}

.liquid-glass__link:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 1px 2px 2px rgba(255, 255, 255, 0.45),
        inset -1px -2px 2px rgba(255, 255, 255, 0.35),
        0 12px 25px rgba(0, 0, 0, 0.35);
}

.liquid-glass__link:focus-visible {
    outline: none;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.85),
        0 0 0 4px rgba(42, 191, 255, 0.45);
}

.link-memory {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.link-flashing {
    background: linear-gradient(135deg, #f36bff, #8c3cff);
}

.link-videos {
    background: linear-gradient(135deg, #ffa751, #ff7c65);
}

.link-docs {
    background: linear-gradient(135deg, #17ead9, #6078ea);
}

.link-contact {
    background: linear-gradient(135deg, #ff0844, #ffb199);
}

.liquid-glass__hint {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    pointer-events: none;
    text-align: center;
    z-index: 10;
}

@media (max-width: 768px) {
    .liquid-glass__hint {
        display: none;
    }
}

.liquid-glass--nav {
    --glass-size-w: min(1200px, calc(100% - 40px));
    --glass-size-h: auto;
    --icon-size: 3rem;
    --icon-border-radius: 999px;
    --icon-padding: 0.65rem;
    width: min(1200px, calc(100% - 40px));
    height: auto;
    min-height: 96px;
    margin: 0 auto;
    overflow: visible;
}

.liquid-glass--nav.is-expanded {
    --glass-size-w: min(1200px, calc(100% - 40px));
    --glass-size-h: auto;
}

.liquid-glass--nav .liquid-glass__content {
    align-items: center;
    gap: clamp(1rem, 4vw, 2.5rem);
}

.liquid-glass--nav .liquid-glass__link {
    height: auto;
    min-height: 48px;
    min-width: 110px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.liquid-glass--section {
    --glass-size-w: 100%;
    --glass-size-h: auto;
    --glass-padding: clamp(2.5rem, 4vw, 3.75rem);
    --border-radius: 36px;
    cursor: default;
    height: auto;
    min-height: 0;
    overflow: visible;
}

.hero-card .liquid-glass--section {
    --glass-size-w: 100%;
    --glass-padding: clamp(2rem, 5vw, 3.5rem);
}

.memory_content .liquid-glass--section,
.videos_content .liquid-glass--section,
.documents_content .liquid-glass--section {
    --glass-padding: clamp(2.5rem, 4vw, 3.75rem);
}


.liquid-glass--card {
    --glass-size-w: 100%;
    --glass-size-h: auto;
    --glass-padding: clamp(1.75rem, 3vw, 2.75rem);
    cursor: default;
    width: 100%;
    min-height: 320px;
    height: auto;
}

.liquid-glass--card:hover {
    transform: translateY(-6px);
}

.liquid-glass--flat > .liquid-glass--bend {
    filter: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.liquid-glass--media {
    --glass-size-w: min(560px, 95vw);
    --glass-size-h: auto;
    --glass-padding: clamp(1.5rem, 3vw, 3rem);
    width: min(560px, 95vw);
}

.liquid-glass--media.is-expanded {
    --glass-size-w: min(560px, 95vw);
    --glass-size-h: auto;
    --glass-padding: clamp(1.5rem, 3vw, 2.4rem);
}

.liquid-glass__body {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.liquid-glass__body--section {
    width: 100%;
    align-items: stretch;
}

.hero-card .liquid-glass__body--section {
    align-items: center;
}

.hero-card.glass-panel {
    width: min(560px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-card {
    width: min(560px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-card__content {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.liquid-card {
    width: min(360px, 90vw);
    margin: 10px;
    list-style: none;
    padding: 0;
}

.liquid-card--video {
    width: min(560px, 95vw);
}

.liquid-card--document .liquid-glass__body {
    text-align: center;
}

.liquid-card--document .liquid-glass--card {
    min-height: auto;
    --glass-padding: clamp(1.5rem, 3vw, 2.25rem);
}

.imageTitle {
    margin-bottom: 12px;
}

.liquid-card .imageTitle img {
    width: 72px;
    height: 72px;
}

.liquid-card p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-link--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-transform: none;
}

.cta-link--ghost:hover {
    background: linear-gradient(135deg, #2abfff, #1f6dff);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.list_item {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    min-height: auto;
}

.list_item::after {
    content: none;
}

.list_item:hover {
    transform: none;
}

.liquid-glass--card .cta-link {
    margin-top: 8px;
}

.liquid-iframe {
    width: 100%;
}

.liquid-iframe iframe {
    border-radius: 18px;
    border: none;
}

.list_item--form .liquid-glass__body {
    align-items: stretch;
    text-align: left;
}

.list_item--form .cta-link {
    align-self: center;
    margin-top: 16px;
}
#firstSection,
.hero-section {
    display: none;
}

h1 {
    padding: 0;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
}

.title_backgroundText {
    display: flex;
    justify-content: center;
    font-size: clamp(4rem, 20vw, 12rem);
    position: relative;
    color: rgba(255, 255, 255, .05);
    font-weight: 500;
    letter-spacing: 0.4rem;
}

.memory_content {
    position: relative;
    top: 0;
}

.hero {
    position: relative;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    overflow: hidden;
}

.hero-card {
    width: min(560px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-card__content {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-card .liquid-glass__body--section {
    align-items: center;
}

.hero-card__logo {
    width: 140px;
    margin-bottom: 12px;
}

.hero-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 6px 18px rgba(5, 9, 20, 0.35);
}

.hero-card__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 10px 28px rgba(5, 8, 20, 0.45);
}

.hero-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 12px;
}

.hero-card__footnote {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 8px 20px rgba(5, 8, 20, 0.35);
}

.hero-card h2 {
    color: #ffffff;
    text-shadow: 0 12px 32px rgba(2, 6, 18, 0.55);
}

.btn {
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
}

.primary-btn {
    background: linear-gradient(135deg, #2abfff, #1f6dff);
    border: none;
    box-shadow: 0 15px 40px rgba(31, 109, 255, 0.35);
}

.secondary-btn {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-panel {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto 80px;
    position: relative;
    isolation: isolate;
}

.glass-panel > * {
    position: relative;
    z-index: 3;
}

.glass-panel .liquid-glass {
    width: 100%;
}

@media (max-width: 1200px) {
    header {
        padding: 0 16px;
    }

    .liquid-glass--nav {
        width: calc(100% - 32px);
    }

    .glass-panel {
        width: calc(100% - 32px);
    }
}

@media (max-width: 1024px) {
    main {
        padding: 160px 0 80px;
    }

    .hero {
        padding: clamp(2rem, 7vw, 3.5rem) 20px;
        min-height: auto;
    }

    .liquid-glass--section {
        --glass-padding: clamp(2rem, 5vw, 3.25rem);
        --border-radius: 30px;
    }

    .liquid-card {
        width: min(340px, 100%);
    }

    .liquid-card--video {
        width: 100%;
    }

    .liquid-glass__menus ul {
        justify-content: center;
    }

    .liquid-glass__link {
        min-width: 140px;
    }
}

.hero-card.glass-panel {
    width: min(560px, calc(100% - 40px));
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 32px;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 600;
}

h3 {
    font-size: 2rem;
}

.list_memory-game,
.card-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    color: #ffffff;
    list-style: none;
}

.cta-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 0.85rem 1.4rem;
    background: linear-gradient(135deg, #2abfff, #1f6dff);
    box-shadow: 0 15px 25px rgba(31, 109, 255, 0.35);
}

.inputPersonnalisee {
    border: none;
    width: 50px;
    height: 30px;
    border-radius: 5px;
    text-align: center;
}

.inputPersonnalisee,
.list_item--form select {
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 6px 10px;
}

.list_item--form {
    align-items: stretch;
    text-align: left;
    gap: 12px;
}

.list_item--form .imageTitle {
    height: auto;
    text-align: center;
}

.list_item--form img {
    position: static;
    top: 0;
    margin-bottom: 10px;
}

.list_item--form label {
    width: 100%;
    color: #ffffff;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.list_item--form select {
    width: 100%;
}

.responsive-iframe {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.responsive-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}



@media screen and (max-width: 768px) {

    main {
        padding: 150px 0 70px;
    }

    header {
        top: 12px;
        padding: 0 10px;
    }

    .hero {
        padding: clamp(1.5rem, 8vw, 3rem) 12px 20px;
        min-height: auto;
    }

    .glass-panel {
        width: calc(100% - 20px);
        margin-bottom: 48px;
    }

    .liquid-glass--section {
        --glass-padding: clamp(1.5rem, 6vw, 2.25rem);
        --border-radius: 24px;
    }

    .liquid-glass__content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .liquid-glass__menus {
        width: 100%;
    }

    .liquid-glass__menus ul {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .liquid-glass__link {
        width: 100%;
        min-height: 52px;
        font-size: 0.9rem;
    }

    .burger {
        display: block;
        position: relative;
        width: 32px;
        height: 24px;
        align-self: flex-end;
        margin-left: auto;
        right: auto;
        top: auto;
    }

    .burger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: #ffffff;
        transform: translateY(-50%);
        transition: background-color 0.5s ease-in-out;
    }

    .burger span::before,
    .burger span::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: #ffffff;
        transition: transform 0.5s ease-in-out;
    }

    .burger span::before {
        transform: translateY(-10px);
    }

    .burger span::after {
        transform: translateY(10px);
    }

    .burger.active span {
        background-color: transparent;
    }

    .burger.active span::before {
        transform: translateY(0) rotateZ(45deg);
    }

    .burger.active span::after {
        transform: translateY(0) rotateZ(-45deg);
    }

    .right-part-line-bar {
        position: static;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 0;
        left: auto;
        top: auto;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: max-height 0.5s ease;
    }

    .right-part-line-bar.responsive-show-menu {
        max-height: 420px;
        margin-top: 12px;
    }

    .right-part-line-bar li {
        width: 100%;
        text-align: center;
    }

    .list_memory-game,
    .card-grid,
    .list_videos,
    .list_documents {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .liquid-card,
    .liquid-card--video {
        width: 100%;
    }

    #back-up {
        --size: 64px;
        right: 16px;
        bottom: 16px;
    }

    .hero-card__content {
        padding: 0 12px;
    }

    h2 {
        font-size: 24px;
    }
}

@keyframes float-libre {
    0% {
        transform: translate(0, 0);
    }

    15% {
        transform: translate(300px, 150px);
    }

    30% {
        transform: translate(600px, 400px);
    }

    45% {
        transform: translate(200px, 500px);
    }

    60% {
        transform: translate(500px, 200px);
    }

    75% {
        transform: translate(100px, 350px);
    }

    90% {
        transform: translate(400px, 100px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-libre-alt {
    0% {
        transform: translate(0, 0);
    }

    15% {
        transform: translate(-200px, -100px);
    }

    30% {
        transform: translate(-400px, -200px);
    }

    45% {
        transform: translate(-150px, -150px);
    }

    60% {
        transform: translate(-350px, -300px);
    }

    75% {
        transform: translate(-250px, -50px);
    }

    90% {
        transform: translate(-180px, -250px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ===== BACKGROUND GLOBAL — Image fixe demandée ===== */
body.theme-dark-glass {
  background: url('/assets/background.png') center/cover fixed no-repeat !important;
  background-color: #080710; /* fallback couleur */
  position: relative;
  isolation: isolate;
}
