/* ==========================================================================
   manga-hero-variants.css — Entêtes manga ORIGINALES (index5 → index10)
   Concepts uniques — pas de copie des univers Comics / BD / RPG / etc.
   ========================================================================== */

body.mg5 .mg3-vitrine,
body.mg6 .mg3-vitrine,
body.mg7 .mg3-vitrine,
body.mg8 .mg3-vitrine,
body.mg9 .mg3-vitrine,
body.mg10 .mg3-vitrine { display: none !important; }

/* ==========================================================================
   TOKYO — néons + collections (composants partagés, PAS de fond commun)
   ========================================================================== */
.mg5-hero,
.mg6-hero,
.mg8-hero,
.mg9-hero,
.mg10-hero {
    position: relative;
    overflow: hidden;
}
.mg5-hero > .container,
.mg6-hero > .container,
.mg8-hero > .container,
.mg9-hero > .container,
.mg10-hero > .container {
    position: relative;
    z-index: 2;
}

.tk-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: .55rem;
}
.tk-title {
    margin: 0 0 .5rem;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -.04em;
}
.tk-title em {
    font-style: normal;
}
.tk-title--sm { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.tk-lead {
    margin: 0 0 1rem;
    font-size: clamp(.88rem, 1.35vw, 1rem);
    line-height: 1.55;
    max-width: 40ch;
}
.tk-btns { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .85rem; }
.tk-btn {
    display: inline-flex;
    align-items: center;
    padding: .68rem 1.15rem;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.tk-btn--hot:hover { transform: translateY(-2px); }
.tk-btn--ghost {
    border: 1px solid currentColor;
    background: transparent;
    opacity: .85;
}

/* ---- Néons (élément clé) ------------------------------------------------ */
.tk-neons {
    display: flex;
    align-items: flex-end;
    gap: clamp(.4rem, .9vw, .65rem);
    flex-wrap: nowrap;
}
.tk-neon {
    --c: #ff2d6a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(130px, 20vw, 210px);
    width: clamp(46px, 5.2vw, 62px);
    padding: .7rem .3rem;
    border: 2px solid var(--c);
    border-radius: 10px;
    color: var(--c);
    font-size: clamp(.68rem, 1.05vw, .8rem);
    font-weight: 900;
    letter-spacing: .14em;
    line-height: 1.1;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: rgba(0,0,0,.55);
    text-shadow: 0 0 10px var(--c), 0 0 22px var(--c);
    box-shadow: 0 0 18px color-mix(in srgb, var(--c) 40%, transparent), inset 0 0 14px color-mix(in srgb, var(--c) 10%, transparent);
    transition: transform .2s ease, box-shadow .2s ease;
}
.tk-neon:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 0 32px var(--c), inset 0 0 20px color-mix(in srgb, var(--c) 18%, transparent);
}
.tk-neon--pink   { --c: #ff2d6a; }
.tk-neon--cyan   { --c: #22d3ee; }
.tk-neon--gold   { --c: #fbbf24; }
.tk-neon--purple { --c: #c084fc; }
.tk-neon--green  { --c: #4ade80; }
.tk-neon--rose   { --c: #fb7185; }

.tk-neons--banner {
    justify-content: center;
    padding: .65rem;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 14px;
    background: #0c0e14;
}
.tk-neons--banner::-webkit-scrollbar { display: none; }
.tk-neons--tower {
    flex-direction: column;
    align-items: center;
    padding: 1rem .65rem;
    border-radius: 16px;
    background: #0c0e14;
}
.tk-neons--tower .tk-neon { min-height: clamp(88px, 12vw, 120px); width: 52px; }
.tk-neons--compact .tk-neon { min-height: clamp(110px, 16vw, 170px); }
.tk-neons--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .45rem;
    padding: .65rem;
    border-radius: 14px;
    background: rgba(0,0,0,.35);
}
.tk-neons--grid .tk-neon { width: auto; min-height: clamp(96px, 13vw, 130px); }

/* ---- Collections défilables --------------------------------------------- */
.tk-cols {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    padding-top: 1rem;
    border-top: 1px solid var(--tk-divider, rgba(255,255,255,.12));
}
.tk-cols--featured .tk-col { flex: 0 0 clamp(160px, 20vw, 210px); }
.tk-cols__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .65rem;
}
.tk-cols__title {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--tk-cols-title, rgba(255,255,255,.55));
}
.tk-cols__hint {
    font-size: .62rem;
    font-weight: 700;
    color: var(--tk-cols-hint, rgba(255,255,255,.4));
    letter-spacing: .06em;
}
.tk-cols__track {
    display: flex;
    gap: .65rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: .5rem;
    padding-bottom: .45rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.tk-col {
    --col-c: #ff2d6a;
    flex: 0 0 clamp(148px, 17vw, 188px);
    scroll-snap-align: start;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--tk-col-border, rgba(255,255,255,.1));
    background: var(--tk-col-bg, rgba(255,255,255,.05));
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.tk-col:hover {
    transform: translateY(-5px);
    border-color: var(--col-c);
    box-shadow: 0 12px 28px rgba(0,0,0,.2), 0 0 16px color-mix(in srgb, var(--col-c) 22%, transparent);
}
.tk-col__img {
    aspect-ratio: 4/3;
    background: linear-gradient(180deg, #f8fafc, #fff);
    overflow: hidden;
}
.tk-col__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    box-sizing: border-box;
    transition: transform .25s ease;
}
.tk-col:hover .tk-col__img img { transform: scale(1.06); }
.tk-col__lbl {
    display: block;
    padding: .5rem .55rem .55rem;
    font-size: .72rem;
    font-weight: 900;
    color: var(--tk-col-lbl, #fff);
    line-height: 1.25;
}
.tk-col__sub {
    display: block;
    margin-top: .15rem;
    font-size: .58rem;
    font-weight: 600;
    color: var(--tk-col-sub, rgba(255,255,255,.45));
}

.tk-spot {
    display: block;
    margin-top: .85rem;
    text-decoration: none;
    transition: transform .25s ease;
}
.tk-spot:hover { transform: translateY(-6px) scale(1.02); }
.tk-spot img {
    width: 100%;
    max-height: clamp(160px, 22vw, 280px);
    object-fit: contain;
}
.tk-spot--inline { max-width: 280px; }

/* ---- 5 · Washi clair + panneau néon ------------------------------------- */
.mg5-hero {
    padding: clamp(1.25rem, 2.5vw, 2rem) 0 clamp(1rem, 2vw, 1.5rem);
    background: #f4efe6;
    border-bottom: 4px solid #e11d48;
    color: #1c1917;
}
.mg5-hero .tk-tag { color: #be123c; }
.mg5-hero .tk-title { color: #1c1917; }
.mg5-hero .tk-title em {
    background: linear-gradient(135deg, #e11d48, #9f1239);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mg5-hero .tk-lead { color: #57534e; }
.mg5-hero .tk-lead strong { color: #be123c; }
.mg5-hero .tk-btn--hot {
    background: #e11d48;
    color: #fff;
    box-shadow: 0 6px 20px rgba(225,29,72,.3);
}
.mg5-hero .tk-btn--ghost { color: #57534e; border-color: #d6d3d1; }
.mg5-hero {
    --tk-divider: rgba(28,25,23,.12);
    --tk-cols-title: #78716c;
    --tk-cols-hint: #a8a29e;
    --tk-col-bg: #fff;
    --tk-col-border: rgba(28,25,23,.08);
    --tk-col-lbl: #1c1917;
    --tk-col-sub: #78716c;
}
.mg5-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    align-items: stretch;
}
.mg5-alley {
    background: #0c0e14;
    border-radius: 16px;
    padding: .85rem .65rem;
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
    align-self: end;
}

/* ---- 6 · Shibuya éditorial blanc ---------------------------------------- */
.mg6-hero {
    padding: clamp(1.25rem, 2.5vw, 2rem) 0 clamp(1rem, 2vw, 1.5rem);
    background: #fafafa;
    border-bottom: 5px solid #dc2626;
    color: #0f172a;
}
.mg6-hero .tk-tag { color: #dc2626; }
.mg6-hero .tk-title { color: #0f172a; }
.mg6-hero .tk-title em { color: #dc2626; background: none; }
.mg6-hero .tk-lead { color: #475569; }
.mg6-hero .tk-btn--hot { background: #dc2626; color: #fff; box-shadow: 0 6px 18px rgba(220,38,38,.28); }
.mg6-hero {
    --tk-divider: rgba(15,23,42,.1);
    --tk-cols-title: #64748b;
    --tk-cols-hint: #94a3b8;
    --tk-col-bg: #fff;
    --tk-col-border: rgba(15,23,42,.08);
    --tk-col-lbl: #0f172a;
    --tk-col-sub: #64748b;
}
.mg6-top { margin-bottom: .75rem; }
.mg6-mid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin: .75rem 0 .15rem;
}
.mg6-mid .tk-lead { margin: 0; max-width: 48ch; }

/* ---- 8 · Akihabara bleu nuit (plat, sans lignes) ------------------------ */
.mg8-hero {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(1.25rem, 2vw, 1.75rem);
    background: #0f172a;
    border-bottom: 3px solid #38bdf8;
    color: #f8fafc;
}
.mg8-hero::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -30%;
    transform: translateX(-50%);
    width: 70%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(56,189,248,.12), transparent 70%);
    pointer-events: none;
}
.mg8-hero .tk-tag { color: #38bdf8; }
.mg8-hero .tk-title em {
    background: linear-gradient(135deg, #7dd3fc, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mg8-hero .tk-lead { color: rgba(248,250,252,.72); }
.mg8-hero .tk-btn--hot { background: #0284c7; color: #fff; box-shadow: 0 8px 24px rgba(2,132,199,.35); }
.mg8-hero .tk-btn--ghost { color: #7dd3fc; border-color: rgba(125,211,252,.4); }
.mg8-layout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    align-items: center;
}

/* ---- 9 · Kabukichō — layout final (néons horizontaux + split) ------------ */
.mg9-hero {
    padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(1.25rem, 2vw, 1.75rem);
    background: linear-gradient(180deg, #0f172a 0%, #162032 55%, #1e293b 100%);
    border-bottom: 1px solid rgba(148, 163, 184, .22);
    color: #fff;
}

/* Néons horizontaux — barre du haut */
.mg9-neonbar {
    display: flex;
    gap: clamp(.35rem, .8vw, .55rem);
    margin-bottom: clamp(1rem, 2vw, 1.35rem);
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: .15rem;
}
.mg9-neonbar::-webkit-scrollbar { display: none; }
.tk-neon-h {
    --c: #ff2d6a;
    flex: 1 1 0;
    min-width: clamp(72px, 11vw, 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .45rem .55rem;
    border: 2px solid var(--c);
    border-radius: 8px;
    color: var(--c);
    font-size: clamp(.62rem, 1vw, .74rem);
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    white-space: nowrap;
    background: rgba(0,0,0,.35);
    text-shadow: 0 0 8px var(--c), 0 0 18px color-mix(in srgb, var(--c) 50%, transparent);
    box-shadow: 0 0 14px color-mix(in srgb, var(--c) 35%, transparent), inset 0 0 12px color-mix(in srgb, var(--c) 8%, transparent);
    transition: transform .18s ease, box-shadow .18s ease;
}
.tk-neon-h:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 24px var(--c), inset 0 0 16px color-mix(in srgb, var(--c) 15%, transparent);
}
.tk-neon-h--pink   { --c: #ff2d6a; }
.tk-neon-h--cyan   { --c: #22d3ee; }
.tk-neon-h--gold   { --c: #fbbf24; }
.tk-neon-h--purple { --c: #c084fc; }
.tk-neon-h--green  { --c: #4ade80; }
.tk-neon-h--rose   { --c: #fb7185; }

/* Split gauche / droite */
.mg9-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.1fr);
    gap: clamp(1rem, 2.5vw, 1.75rem);
    align-items: start;
}
.mg9-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: .45rem;
}
.mg9-title {
    margin: 0 0 .45rem;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.03em;
    color: #fff;
}
.mg9-title em {
    font-style: normal;
    color: #93c5fd;
}
.mg9-lead {
    margin: 0 0 .75rem;
    font-size: clamp(.86rem, 1.3vw, .96rem);
    line-height: 1.38;
    color: rgba(226, 232, 240, .88);
    max-width: 58ch;
}
.mg9-perks {
    margin: 0 0 1rem;
    padding: .65rem .75rem;
    list-style: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(148, 163, 184, .18);
}
.mg9-perks li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: .4rem;
    font-size: clamp(.78rem, 1.1vw, .84rem);
    line-height: 1.45;
    color: rgba(241, 245, 249, .92);
}
.mg9-perks li:last-child { margin-bottom: 0; }
.mg9-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #38bdf8;
}
.mg9-perks strong {
    color: #fff;
    font-weight: 800;
}
.mg9-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .85rem;
    margin: 0 0 1rem;
    padding: 0;
}
.mg9-stats > div {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    padding: .45rem .65rem;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    min-width: 5.5rem;
}
.mg9-stats dt {
    margin: 0;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}
.mg9-stats dd {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
    color: #f8fafc;
    line-height: 1;
}
.mg9-stats dd a {
    color: inherit;
    text-decoration: none;
}
.mg9-stats dd a:hover {
    color: #93c5fd;
}

/* Accordéon précommandes */
.mg9-acc__item {
    border-radius: 8px;
    background: rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.12);
    overflow: hidden;
    margin-bottom: 1rem;
    color: #fff;
}
.mg9-acc__item summary {
    padding: .55rem .7rem;
    font-size: .78rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    user-select: none;
}
.mg9-acc__item summary::-webkit-details-marker { display: none; }
.mg9-acc__item summary::after {
    content: '+';
    font-size: 1rem;
    font-weight: 400;
    color: #93c5fd;
    transition: transform .15s ease;
}
.mg9-acc__item[open] summary::after { content: '−'; }
.mg9-acc__body {
    padding: 0 .7rem .65rem;
    font-size: .74rem;
    line-height: 1.55;
    color: #fff;
}
.mg9-acc__body p {
    margin: 0 0 .45rem;
    color: #fff;
}
.mg9-acc__body p:last-child { margin-bottom: 0; }
.mg9-acc__body strong {
    color: #fff;
    font-weight: 800;
}
.mg9-acc__body ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #fff;
}
.mg9-acc__body li {
    margin-bottom: .25rem;
    color: #fff;
}
.mg9-acc__body a {
    color: #93c5fd;
    font-weight: 700;
    text-decoration: none;
}
.mg9-acc__body a:hover {
    color: #bfdbfe;
    text-decoration: underline;
}
.mg9-cta {
    display: inline-flex;
    align-items: center;
    padding: .65rem 1.1rem;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-size: .82rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.2);
    transition: transform .15s ease;
}
.mg9-cta:hover { transform: translateY(-2px); }

/* Vitrine collection — image réduite, légende alignée sur le CTA gauche */
.mg9-showcase {
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, .55);
    border: 1px solid rgba(148, 163, 184, .2);
    border-radius: 16px;
    padding: .35rem .3rem .3rem;
    min-width: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.mg9-showcase__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    flex: 0 0 auto;
    margin-bottom: .25rem;
    padding: 0 .15rem;
}
.mg9-showcase__label {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, .85);
}
.mg9-showcase__pager {
    min-width: 2.5rem;
    text-align: right;
    font-size: .68rem;
    font-weight: 800;
    color: rgba(226, 232, 240, .75);
}
.mg9-showcase__stage {
    display: flex;
    align-items: center;
    gap: .2rem;
    flex: 0 0 auto;
    min-width: 0;
}
.mg9-showcase__btn {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(148, 163, 184, .35);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #e2e8f0;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}
.mg9-showcase__btn--side {
    align-self: center;
    flex-shrink: 0;
}
.mg9-showcase__btn:hover {
    background: rgba(255, 255, 255, .14);
    border-color: #93c5fd;
}
.mg9-showcase__viewport {
    flex: 1 1 auto;
    min-width: 0;
    height: clamp(280px, 34vw, 380px);
    overflow: hidden;
    border-radius: 8px;
}
.mg9-showcase__track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.mg9-showcase__track::-webkit-scrollbar { display: none; }
.mg9-slide {
    position: relative;
    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
}
.mg9-slide:hover .mg9-slide__img {
    opacity: .94;
}
.mg9-slide__duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(.2rem, .5vw, .45rem);
    width: 100%;
    height: 100%;
    min-height: 0;
}
.mg9-slide__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: none;
    object-fit: contain;
    object-position: center center;
    background: transparent;
}
.mg9-showcase__foot {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    margin: .25rem 0 0;
    padding: 0 .25rem;
    text-align: center;
    font-size: .82rem;
    font-weight: 900;
    line-height: 1.2;
    color: #f8fafc;
    letter-spacing: .01em;
}

/* ---- 10 · Odaiba coucher de soleil -------------------------------------- */
.mg10-hero {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(1.25rem, 2vw, 1.75rem);
    background: linear-gradient(180deg, #fb923c 0%, #c2410c 28%, #312e81 62%, #1e1b4b 100%);
    border-bottom: none;
    color: #fff;
}
.mg10-hero .tk-tag { color: #fde68a; }
.mg10-hero .tk-title em {
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mg10-hero .tk-lead { color: rgba(255,255,255,.82); }
.mg10-hero .tk-btn--hot { background: #fff; color: #1e1b4b; box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.mg10-hero .tk-btn--ghost { color: #fde68a; border-color: rgba(253,230,138,.45); }
.mg10-hero .tk-cols { border-top-color: rgba(255,255,255,.2); }
.mg10-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: end;
    margin-bottom: .25rem;
}
.mg10-herofig {
    display: block;
    margin-top: 1rem;
    text-align: center;
    text-decoration: none;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,.35));
    transition: transform .2s ease;
}
.mg10-herofig:hover { transform: scale(1.02); }
.mg10-herofig img {
    max-height: clamp(120px, 18vw, 200px);
    object-fit: contain;
}

/* ---- 7 · Scouter — HUD de scan Dragon Ball style ------------------------ */
.mg7-hero {
    position: relative;
    overflow: hidden;
    background: #0a1a0a;
    color: #4ade80;
    padding: clamp(1.25rem, 2.5vw, 2rem) 0;
    border-bottom: 2px solid #22c55e;
}
.mg7-scanlines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(74,222,128,.04) 3px, rgba(74,222,128,.04) 4px);
}
.mg7-hud {
    display: grid;
    grid-template-columns: minmax(180px, 280px) minmax(0, 1fr) minmax(140px, 220px);
    gap: clamp(.75rem, 1.5vw, 1.25rem);
    align-items: stretch;
}
.mg7-target {
    position: relative;
    border: 2px solid rgba(74,222,128,.45);
    border-radius: 4px;
    background: rgba(74,222,128,.06);
    padding: .65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.mg7-target__img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(74,222,128,.35));
}
.mg7-reticle {
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(74,222,128,.5);
    pointer-events: none;
}
.mg7-reticle::before,
.mg7-reticle::after {
    content: '';
    position: absolute;
    background: #4ade80;
}
.mg7-reticle::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.mg7-reticle::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.mg7-readout {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    padding: .65rem 0;
}
.mg7-readout__lbl {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .2em;
    color: rgba(74,222,128,.65);
    animation: mg7Blink 2s step-end infinite;
}
@keyframes mg7Blink { 50% { opacity: .35; } }
.mg7-readout__title {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.mg7-power {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #4ade80;
    text-shadow: 0 0 20px rgba(74,222,128,.6);
    letter-spacing: .02em;
}
.mg7-power small {
    display: block;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: rgba(74,222,128,.55);
    margin-bottom: .15rem;
}
.mg7-bars { display: flex; flex-direction: column; gap: .35rem; margin: .35rem 0; }
.mg7-bar-row {
    display: grid;
    grid-template-columns: 3.5rem 1fr 2rem;
    gap: .4rem;
    align-items: center;
    font-size: .65rem;
    font-weight: 800;
    color: rgba(74,222,128,.7);
}
.mg7-bar-track {
    height: 5px;
    background: rgba(74,222,128,.15);
    border-radius: 999px;
    overflow: hidden;
}
.mg7-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: inherit;
    box-shadow: 0 0 8px rgba(74,222,128,.6);
}
.mg7-scan-btn {
    align-self: flex-start;
    margin-top: .35rem;
    padding: .55rem 1rem;
    border: 1px solid #4ade80;
    border-radius: 4px;
    background: rgba(74,222,128,.12);
    color: #4ade80;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .15s ease;
}
.mg7-scan-btn:hover { background: rgba(74,222,128,.25); }
.mg7-drops {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.mg7-drop {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .4rem;
    border: 1px solid rgba(74,222,128,.25);
    border-radius: 4px;
    background: rgba(0,0,0,.35);
    text-decoration: none;
    color: inherit;
    transition: border-color .15s ease;
}
.mg7-drop:hover { border-color: #4ade80; }
.mg7-drop img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255,255,255,.95);
    border-radius: 4px;
    padding: 3px;
    box-sizing: border-box;
}
.mg7-drop span {
    font-size: .62rem;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    line-height: 1.3;
}

/* ---- Bandeau comparateur -------------------------------------------------- */
.mg-variants-nav {
    background: #1e293b;
    color: #94a3b8;
    font-size: .68rem;
    padding: .4rem 0;
    border-bottom: 1px solid #334155;
}
.mg-variants-nav .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .55rem;
}
.mg-variants-nav span {
    font-weight: 800;
    color: #fde68a;
    margin-right: .25rem;
}
.mg-variants-nav a {
    color: #cbd5e1;
    text-decoration: none;
    padding: .15rem .45rem;
    border-radius: 4px;
    border: 1px solid transparent;
}
.mg-variants-nav a:hover {
    border-color: #475569;
    color: #fff;
}
.mg-variants-nav a.is-active {
    background: #e11d48;
    color: #fff;
    border-color: #e11d48;
    font-weight: 700;
}

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 960px) {
    .mg5-layout,
    .mg8-layout,
    .mg10-row {
        grid-template-columns: 1fr;
    }
    .mg9-split { grid-template-columns: 1fr; }
    .tk-neons--tower,
    .tk-neons:not(.tk-neons--banner) {
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: .35rem;
    }
    .tk-neons--tower::-webkit-scrollbar,
    .tk-neons:not(.tk-neons--banner)::-webkit-scrollbar { display: none; }
    .tk-neons--tower .tk-neon,
    .tk-neon { min-height: clamp(120px, 22vw, 160px); }
    .tk-neons--grid { grid-template-columns: repeat(6, clamp(46px, 12vw, 58px)); }
    .mg7-hud { grid-template-columns: 1fr 1fr; }
    .mg7-drops {
        grid-column: span 2;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .mg7-drop { flex: 1 1 calc(33% - .45rem); }
    .mg6-mid { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
    .mg7-hud { grid-template-columns: 1fr; }
    .mg7-drops { grid-column: span 1; flex-direction: column; }
    .mg7-drop { flex: none; }
    .tk-col { flex: 0 0 clamp(130px, 42vw, 160px); }
}
