/* =================================================================
   scaard : WitcherStreamr
   Page unique. Header fixe, hero plein ecran avec les reseaux,
   puis les sections sur un aplat opaque.
   Fonds = images (aucun degrade, aucun flou).
   ================================================================= */

:root {
    --text:        #EDEFF3;
    --muted:       #949BA8;
    --dim:         #6C7381;

    --panel:       #161A24;
    --panel-hi:    #1D2231;
    --line:        #262C3A;
    --line-hi:     #3A4254;

    --accent:      #FF7A50;
    --accent-ink:  #1A0B05;

    --maxw:     1120px;
    --readw:    68ch;
    --header-h: 62px;
    --cut:      14px;

    --font-display: "Space Grotesk", system-ui, sans-serif;
    --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    /* Pas de scroll-behavior: smooth global : il ajoute de la latence
       au defilement molette/trackpad. Les clics d'ancre sont animes en JS. */
    scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--page-bg, #0B0E16);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================== HEADER ========================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--page-bg, #0B0E16);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
}

.topbar.is-scrolled { border-bottom-color: var(--line); }

.topbar__row {
    max-width: var(--maxw);
    margin: 0 auto;
    min-height: 62px;
    padding: 0 clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    gap: clamp(12px, 3vw, 28px);
}

.topbar__brand {
    /* Peut retrecir et se tronquer pour ne jamais pousser le bouton dehors. */
    flex: 0 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
}

.topnav {
    flex: 1 1 auto;
    display: flex;
    gap: clamp(4px, 1.5vw, 18px);
    overflow-x: auto;
    scrollbar-width: none;
}

.topnav::-webkit-scrollbar { display: none; }

.topnav__link {
    flex: 0 0 auto;
    padding: 6px 2px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .16s ease, border-color .16s ease;
}

.topnav__link:hover { color: var(--text); }
.topnav__link.is-active { color: var(--text); border-bottom-color: var(--accent); }

.btn-support {
    flex: 0 0 auto;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 700;
    font-size: 0.88rem;
    clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
    transition: filter .16s ease, transform .16s ease;
}

.btn-support:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-support:active { transform: translateY(0); }
.btn-support i { font-size: 0.92em; }

/* --- Bouton burger (mobile uniquement) --- */
.burger {
    display: none;              /* affiche sous 760px */
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin-right: -8px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: transform .25s cubic-bezier(.2, .8, .3, 1), opacity .18s ease;
}

/* Les trois barres se replient en croix. */
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.burger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* =============================== HERO ========================== */
.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    padding: clamp(28px, 5vh, 64px) clamp(16px, 4vw, 32px) clamp(64px, 9vh, 96px);
    overflow: hidden;
}

/* Pile d'images de fond : une par reseau, echange au survol. */
.hero__bg { position: absolute; inset: 0; z-index: -3; background: #10141F; }

.hero__layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .45s ease;
}

/* Chaque image arrive avec un leger travelling avant. */
.hero__layer.is-active {
    opacity: 1;
    animation: bg-in 1.2s cubic-bezier(.16, .7, .3, 1) both;
}

/* Aplat sombre pour la lisibilite. Pas de flou. */
.hero__veil {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #080A11;
    opacity: var(--hero-veil, 0.55);
}

/* Balayage lumineux qui traverse le fond, repris du caard de Lune.
   Il ne tourne PAS en boucle : il ne passe qu'au survol d'un bouton,
   quand l'image de fond change. */
.hero__shine {
    position: absolute;
    top: -15%;
    left: 0;
    z-index: -1;
    width: 42%;
    height: 130%;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.17),
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transform: skewX(-20deg) translateX(-170%);
}

/* Classe posee par le JS le temps d'un passage. */
.hero__shine.is-sweeping {
    animation: hero-shine 1.1s cubic-bezier(.3, .7, .3, 1) 1;
}

.hero__inner {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

@media (min-width: 900px) {
    .hero__inner { grid-template-columns: minmax(230px, 320px) 1fr; }
}

/* ----------------------------- IDENTITE ----------------------- */
.ident { text-align: center; }

@media (min-width: 900px) {
    .ident { text-align: left; }
}

.ident__avatar {
    width: clamp(76px, 10vw, 116px);
    height: clamp(76px, 10vw, 116px);
    margin: 0 auto 18px;
    border: 2px solid var(--line-hi);
    border-radius: 50%;
    background: var(--panel);
    overflow: hidden;
    display: grid;
    place-items: center;
}

@media (min-width: 900px) {
    .ident__avatar { margin-left: 0; margin-right: 0; }
}

.ident__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ident__avatar span { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }

/* Le nom se leve depuis derriere un cache. */
.ident__name {
    margin: 0;
    padding-bottom: 0.08em;
    overflow: hidden;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    overflow-wrap: break-word;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    /* Repli si les unites de conteneur ne sont pas supportees. */
    font-size: clamp(1.3rem, 5vw, var(--name-max, 3rem));
}

/* Le corps du titre est calcule d'apres la LONGUEUR du nom et la largeur
   reelle de sa colonne : un nom court occupe la taille maximale, un nom
   long retrecit juste assez pour tenir. --name-len vient du PHP,
   --name-max est ajuste par les points de rupture plus bas. */
@supports (container-type: inline-size) {
    .ident { container-type: inline-size; }

    .ident__name {
        font-size: clamp(
            1.3rem,
            calc(100cqi / (var(--name-len, 14) * 0.58)),
            var(--name-max, 3rem)
        );
    }
}

.ident__name > span { display: block; }

.ident__handle {
    margin: 8px 0 0;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.ident__bio {
    margin: 14px auto 0;
    max-width: 34ch;
    color: #C3C9D4;
    font-size: 0.96rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

/* --- Sequence d'ouverture --- */
.ident__avatar { animation: pop-in .7s cubic-bezier(.2, .9, .3, 1.3) .05s backwards; }
.ident__name > span { animation: mask-up .95s cubic-bezier(.16, .84, .3, 1) .18s backwards; }
.ident__handle { animation: fade-up .7s cubic-bezier(.16, .84, .3, 1) .40s backwards; }
.ident__bio { animation: fade-up .7s cubic-bezier(.16, .84, .3, 1) .48s backwards; }
/* L'indice de scroll est centre par translateX : sa propre animation
   doit conserver ce decalage, sinon il saute a gauche. */
.hero__cue { animation: cue-in .8s ease 1.15s backwards; }

@media (min-width: 900px) {
    .ident__bio { margin-left: 0; }
}

/* ------------------------ BOUTONS RESEAUX --------------------- */
/* 2 colonnes par defaut, 4 sur grand ecran. Jamais 3 : avec un bouton
   pleine largeur en tete, 2 et 4 remplissent la grille sans trou. */
.nets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 1040px) {
    .nets { grid-template-columns: repeat(4, 1fr); }
}

.net {
    --accent: #C9CDD4;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 106px;
    padding: 16px;
    background: var(--line-hi);
    clip-path: polygon(0 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% 100%, var(--cut) 100%, 0 calc(100% - var(--cut)));
    transition: transform .16s ease;
    /* Les boutons montent en place l'un apres l'autre, deja a leur
       forme definitive (coins coupes compris). */
    animation: net-in .62s cubic-bezier(.16, .84, .3, 1) backwards;
    animation-delay: calc(0.52s + var(--i) * 0.075s);
}

.net--wide { grid-column: 1 / -1; }

/* Face interieure : laisse 1px de bordure qui suit les coins coupes. */
.net::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    background: var(--panel);
    clip-path: inherit;
    transition: background .16s ease;
}

/* Repere d'accent en haut a gauche, trace a l'ouverture. */
.net::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 40px;
    height: 3px;
    background: var(--accent);
    transition: width .28s cubic-bezier(.2, .8, .3, 1);
    animation: tick-draw .55s cubic-bezier(.16, .84, .3, 1) backwards;
    animation-delay: calc(0.86s + var(--i) * 0.075s);
}

/* Visuel de l'anime, propre a chaque reseau (cle 'art' dans config.php). */
.net__art {
    position: absolute;
    inset: 1px;
    z-index: 1;
    clip-path: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Voile plat pour la lisibilite. Aucun flou, aucun degrade. */
    box-shadow: inset 0 0 0 999px rgba(9, 11, 17, var(--veil, 0.62));
    transition: transform .5s cubic-bezier(.16, .7, .3, 1), box-shadow .25s ease;
}

.net:hover .net__art,
.net:focus-visible .net__art {
    transform: scale(1.06);
    box-shadow: inset 0 0 0 999px rgba(9, 11, 17, calc(var(--veil, 0.62) - 0.2));
}

/* Double coup de lame qui traverse le bouton au survol. */
.net__slash {
    position: absolute;
    top: -12%;
    left: 0;
    z-index: 2;
    width: 30%;
    height: 124%;
    background: var(--accent);
    opacity: 0.18;
    transform: skewX(-18deg) translateX(-220%);
    transition: transform .6s cubic-bezier(.3, .7, .3, 1);
    /* Un coup de lame traverse chaque bouton juste apres son apparition. */
    animation: slash-pass .6s cubic-bezier(.3, .7, .3, 1) backwards;
    animation-delay: calc(0.72s + var(--i) * 0.075s);
}

.net__slash::after {
    content: "";
    position: absolute;
    top: 0;
    left: -46%;
    width: 26%;
    height: 100%;
    background: #FFFFFF;
    opacity: 0.5;
}

.net__icon,
.net__label,
.net__go { position: relative; z-index: 3; }

/* Sur un visuel, on renforce un peu la lisibilite du texte. */
.net--art .net__icon,
.net--art .net__label { text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); }

.net__icon {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--accent);
    transform-origin: left center;
    transition: transform .28s cubic-bezier(.2, .9, .3, 1.3);
}

/* Icone fournie en SVG : meme gabarit que les icones Bootstrap. */
.net__icon--svg { display: block; width: 1.6rem; height: 1.6rem; }
.net__icon--svg svg { width: 100%; height: 100%; display: block; }

.net__label {
    margin-top: auto;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    overflow-wrap: break-word;        /* "TikTok Films & series" tient sur 2 lignes */
    transition: transform .28s cubic-bezier(.2, .9, .3, 1.3);
}

.net__go {
    position: absolute;
    top: 16px;
    right: 15px;
    font-size: 0.9rem;
    color: var(--dim);
    opacity: 0;
    transition: opacity .16s ease, transform .16s ease;
}

.net:hover,
.net:focus-visible {
    transform: translateY(-3px);
    background: var(--accent);
    outline: none;
}

.net:hover::before,
.net:focus-visible::before { background: var(--panel-hi); }

.net:hover::after,
.net:focus-visible::after { width: 100%; }

.net:hover .net__slash,
.net:focus-visible .net__slash { transform: skewX(-18deg) translateX(420%); }

.net:hover .net__icon,
.net:focus-visible .net__icon { transform: scale(1.12); }

.net:hover .net__label,
.net:focus-visible .net__label { transform: translateX(4px); }

.net:hover .net__go,
.net:focus-visible .net__go { opacity: 1; transform: translate(2px, -2px); color: var(--text); }

.net:focus-visible { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25); }
.net:active { transform: translateY(-1px); }

/* --------------------------- INDICE SCROLL -------------------- */
.hero__cue {
    position: absolute;
    left: 50%;
    bottom: clamp(18px, 4vh, 34px);
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color .16s ease;
}

.hero__cue:hover { color: var(--text); }
.hero__cue i { font-size: 1rem; animation: bob 2.2s ease-in-out infinite; }

/* ============================= SECTIONS ======================== */
.sections {
    position: relative;
    z-index: 1;
    background: var(--page-bg, #0B0E16);
    border-top: 1px solid var(--line);
}

.sections__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.section {
    padding: clamp(60px, 9vw, 116px) 0;
    scroll-margin-top: calc(var(--header-h) + 8px);
}

.section + .section { border-top: 1px solid var(--line); }

.section__title {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.6vw, 2.3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section__soon { margin: 0; color: var(--dim); }

.section__body {
    max-width: var(--readw);
    color: #BFC6D2;
    overflow-wrap: break-word;   /* un lien tres long ne deborde pas l'ecran */
}
.section__body > :first-child { margin-top: 0; }
.section__body > :last-child { margin-bottom: 0; }
.section__body p { margin: 0 0 14px; }
.section__body a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.section__body :where(ul, ol) { margin: 0 0 14px; padding-left: 1.25em; }
.section__body li { margin: 6px 0; }
.section__body strong { color: var(--text); }

/* -------------------------------- FAQ ------------------------- */
.qa { border-top: 1px solid var(--line); }
.qa:first-child { border-top: 0; }

.qa summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text);
}

.qa summary::-webkit-details-marker { display: none; }

.qa summary::before {
    content: "+";
    flex: 0 0 auto;
    width: 1.4em;
    color: var(--accent);
    font-weight: 700;
}

.qa[open] summary::before { content: "\2013"; }
.qa__a { padding: 0 0 18px 1.4em; color: #BFC6D2; }
.qa__a > :last-child { margin-bottom: 0; }

/* ============================ ANIMATIONS ======================= */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pop-in {
    from { opacity: 0; transform: scale(.84); }
    to   { opacity: 1; transform: scale(1); }
}

/* Le texte monte depuis sous la ligne. */
@keyframes mask-up {
    from { transform: translateY(108%); }
    to   { transform: translateY(0); }
}

/* Le bouton monte en place. On n'anime PAS le clip-path : l'entaille
   des coins partirait de zero et le bouton paraitrait carre au debut.
   Le caractere vient du coup de lame qui le traverse juste apres. */
@keyframes net-in {
    from { opacity: 0; transform: translateY(16px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Coup de lame unique a l'apparition. */
@keyframes slash-pass {
    from { transform: skewX(-18deg) translateX(-220%); }
    to   { transform: skewX(-18deg) translateX(420%); }
}

@keyframes tick-draw {
    from { width: 0; }
    to   { width: 40px; }
}

@keyframes cue-in {
    from { opacity: 0; transform: translateX(-50%) translateY(14px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

@keyframes bg-in {
    from { transform: scale(1.07); }
    to   { transform: scale(1); }
}

/* Un seul passage, de gauche a droite. */
@keyframes hero-shine {
    from { transform: skewX(-20deg) translateX(-170%); }
    to   { transform: skewX(-20deg) translateX(400%); }
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================ RESPONSIVE ======================= */

/* --- Tablette et en dessous : le menu passe sur sa propre ligne --- */
@media (max-width: 760px) {
    .burger { display: flex; }

    .topbar__row { gap: 10px; }
    .btn-support { margin-left: auto; }

    /* Le menu devient un panneau deroulant sous le header. */
    .topnav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 40;
        flex: none;
        flex-direction: column;
        gap: 0;
        padding: 6px clamp(16px, 4vw, 32px) 12px;
        background: var(--page-bg, #0B0E16);
        border-bottom: 1px solid var(--line);
        overflow: visible;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s;
    }

    .topnav.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .topnav__link {
        padding: 13px 2px;
        font-size: 0.98rem;
        border-bottom: 1px solid var(--line);
    }

    .topnav__link:last-child { border-bottom: 0; }

    .topnav__link.is-active {
        color: var(--accent);
        border-bottom-color: var(--line);
    }
}

/* --- Telephone : on comprime pour que le hero tienne dans l'ecran --- */
@media (max-width: 560px) {
    .hero { padding: 24px 16px 58px; }
    .hero__inner { gap: 22px; }

    .ident__avatar { width: 68px; height: 68px; margin-bottom: 12px; }
    .ident__handle { margin-top: 6px; font-size: 0.86rem; }
    .ident__bio { margin-top: 10px; font-size: 0.9rem; }

    .nets { gap: 10px; }
    .net { min-height: 90px; padding: 13px; gap: 8px; }
    .net__icon { font-size: 1.35rem; }
    .net__icon--svg { width: 1.35rem; height: 1.35rem; }
    .net__label { font-size: 0.9rem; }
    .net__go { top: 13px; right: 12px; font-size: 0.8rem; }
    .net::after { width: 30px; }

    .section { padding: 54px 0; }
}

/* --- Ecrans courts en portrait (iPhone SE, petits Android) :
       on resserre encore pour que le hero tienne sans deborder --- */
@media (max-width: 560px) and (max-height: 720px) {
    .hero { padding: 18px 16px 48px; }
    .hero__inner { gap: 16px; }

    .ident__avatar { width: 58px; height: 58px; margin-bottom: 8px; }
    .ident { --name-max: 1.9rem; }
    .ident__handle { margin-top: 4px; font-size: 0.82rem; }
    .ident__bio { margin-top: 8px; font-size: 0.85rem; }

    .net { min-height: 78px; padding: 11px; gap: 6px; }
    .net__icon { font-size: 1.2rem; }
    .net__icon--svg { width: 1.2rem; height: 1.2rem; }
    .net__label { font-size: 0.84rem; }
    .net__go { top: 11px; right: 10px; }

    .hero__cue { font-size: 0.66rem; }
}

/* --- Tres petits ecrans : le nom du site cede la place au bouton --- */
@media (max-width: 380px) {
    .topbar__row { gap: 8px 10px; }
    .btn-support { padding: 8px 12px; font-size: 0.82rem; }
    .net { min-height: 84px; }
    .net__label { font-size: 0.85rem; }
}

/* --- Telephone couche : plus de hauteur dispo, on aere autrement --- */
@media (max-height: 620px) and (orientation: landscape) {
    .hero {
        min-height: 0;                 /* pas de plein ecran force : ca deborderait */
        padding: 20px clamp(16px, 4vw, 32px) 26px;
    }
    .hero__inner {
        grid-template-columns: minmax(190px, 250px) 1fr;
        gap: 24px;
        align-items: center;
    }
    .ident { text-align: left; }
    .ident__avatar { width: 54px; height: 54px; margin: 0 0 8px; }
    .ident { --name-max: 1.6rem; }
    .ident__handle { margin-top: 4px; }
    .ident__bio { margin: 8px 0 0; font-size: 0.85rem; }
    .nets { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .net { min-height: 70px; padding: 11px; gap: 6px; }
    .net__icon { font-size: 1.2rem; }
    .net__icon--svg { width: 1.2rem; height: 1.2rem; }
    .net__label { font-size: 0.85rem; }
    .hero__cue { display: none; }
}

/* --- Appareils tactiles : pas de survol, donc pas d'effets caches --- */
@media (hover: none) {
    .net__go { opacity: 1; }
    .net:hover { transform: none; }
    .net:hover .net__art { transform: none; }
}
