/* ═══════════════════════════════════════════════════════════════
   TANGIBLE APP MOCKUP — Styles partagés (full-viewport)
   ═══════════════════════════════════════════════════════════════ */

:root {
    --ink: #2B2F33;
    --ink-deep: #1C1F24;
    --ink-soft: #3A3E45;
    --ink-darker: #15181C;
    --ink-panel: #23262B;
    --ink-line: rgba(251, 248, 241, 0.08);
    --ink-line-strong: rgba(251, 248, 241, 0.16);

    --flame: #E6733C;
    --flame-bright: #FF8A4F;
    --flame-deep: #C5582A;
    --flame-glow: rgba(230, 115, 60, 0.35);

    --ivory: #FBF8F1;
    --ivory-muted: rgba(251, 248, 241, 0.72);
    --ivory-dim: rgba(251, 248, 241, 0.45);

    --success: #3AA574;
    --warn: #E6733C;
    --danger: #D14A3D;

    --font-title: "Fraunces", Georgia, serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;

    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.45);
    --shadow-flame: 0 8px 32px var(--flame-glow);

    --sidebar-w: 240px;
    --chrome-h: 48px;
    --status-h: 36px;
}

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

html, body { height: 100%; overflow: hidden; }

/* Custom selection (brand color) */
::selection { background: var(--flame); color: var(--ivory); }
::-moz-selection { background: var(--flame); color: var(--ivory); }

/* Custom scrollbar thumb with gradient */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(230, 115, 60, 0.3), rgba(230, 115, 60, 0.15));
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--flame-bright), var(--flame));
    background-clip: padding-box;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ivory);
    background:
        radial-gradient(ellipse 60% 40% at 30% 20%, rgba(230, 115, 60, 0.06), transparent 60%),
        linear-gradient(180deg, #0E1114 0%, #15181C 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-feature-settings: "ss01", "cv11";
    position: relative;
}

/* ── Film grain overlay (global) ──────────────────────────────── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    animation: grainShift 8s steps(8) infinite;
}
@keyframes grainShift {
    0%,100% { transform: translate(0,0); }
    10% { transform: translate(-2%,-5%); }
    20% { transform: translate(-7%,3%); }
    30% { transform: translate(5%,-10%); }
    40% { transform: translate(-5%,5%); }
    50% { transform: translate(-10%,5%); }
    60% { transform: translate(7%,0%); }
    70% { transform: translate(-3%,10%); }
    80% { transform: translate(3%,-7%); }
    90% { transform: translate(-3%,-5%); }
}

/* Subtle page fade-in */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.row-section, .hero-banner, .section-intro, .web-hero, .web-section, .web-promo, .detail-hero, .web-film-hero, .web-film-body, .cert-wrap {
    animation: fadeInUp .45s cubic-bezier(.25,.8,.25,1) both;
}
.row-section:nth-child(2) { animation-delay: .05s; }
.row-section:nth-child(3) { animation-delay: .1s; }
.row-section:nth-child(4) { animation-delay: .15s; }
.row-section:nth-child(5) { animation-delay: .2s; }
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* ═══════════════════════════════════════════════════════════════
   APP LAYOUT FULL VIEWPORT
   ═══════════════════════════════════════════════════════════════ */
.app-window {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: var(--chrome-h) 1fr var(--status-h);
    overflow: hidden;
}

/* ── Chrome (titlebar macOS-like) ─────────────────────────────── */
.app-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: linear-gradient(180deg, #2A2E34 0%, #1F2328 100%);
    border-bottom: 1px solid var(--ink-line);
    gap: 20px;
    -webkit-app-region: drag;
}
.chrome-dots { display: flex; gap: 8px; }
.chrome-dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: #3A3E45;
}
.chrome-dot.red { background: #FF5F57; }
.chrome-dot.yellow { background: #FEBC2E; }
.chrome-dot.green { background: #28C840; }
.chrome-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory-muted);
    flex: 1;
    text-align: center;
}
.chrome-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ivory-dim);
}
.chrome-status {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px;
    border: 1px solid var(--ink-line-strong);
    border-radius: 999px;
}
.chrome-status .s-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 6px rgba(58, 165, 116, 0.6);
}
.chrome-back {
    color: var(--ivory);
    opacity: 0.65;
    transition: opacity .2s, color .2s;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--ink-line-strong);
}
.chrome-back:hover { opacity: 1; color: var(--flame); border-color: var(--flame); }

/* ── Main layout (sidebar + content) ──────────────────────────── */
.app-body {
    display: grid;
    grid-template-columns: var(--sidebar-w) 1fr;
    overflow: hidden;
    min-height: 0;
}

.app-sidebar {
    background:
        radial-gradient(ellipse 140% 60% at 0% 0%, rgba(230, 115, 60, 0.04), transparent 60%),
        linear-gradient(180deg, #181B20 0%, #13161A 100%);
    border-right: 1px solid var(--ink-line);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    position: relative;
}
.app-sidebar::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(230, 115, 60, 0.3) 30%, rgba(230, 115, 60, 0.3) 70%, transparent);
    opacity: 0.4;
}

.side-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px 16px;
    border-bottom: 1px solid var(--ink-line);
    margin-bottom: 12px;
}
.side-brand img { height: 26px; width: auto; }
.side-brand .b-text {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}
.side-brand .b-sub {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    color: var(--flame);
    display: block;
    margin-top: 2px;
}

.side-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    padding: 14px 10px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.side-label::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}
.side-label--player { color: #5ED09A; }
.side-label--player::before { background: #5ED09A; box-shadow: 0 0 6px rgba(58, 165, 116, 0.5); opacity: 1; }
.side-label--store { color: var(--flame-bright); }
.side-label--store::before { background: var(--flame-bright); box-shadow: 0 0 6px var(--flame-glow); opacity: 1; }

.side-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--ivory-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background .18s, color .18s;
    cursor: pointer;
}
.side-item:hover { background: rgba(251, 248, 241, 0.04); color: var(--ivory); }
.side-item.active {
    background: linear-gradient(90deg, rgba(230, 115, 60, 0.18), rgba(230, 115, 60, 0.05));
    color: var(--flame-bright);
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}
.side-item.active::before {
    content: "";
    width: 3px; height: 20px;
    background: linear-gradient(180deg, var(--flame-bright), var(--flame));
    border-radius: 2px;
    margin-left: -4px;
    box-shadow: 0 0 14px var(--flame-glow);
}
.side-item .ico { font-size: 1rem; opacity: 0.9; width: 18px; text-align: center; }
.side-item .badge {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    padding: 2px 7px;
    background: rgba(230, 115, 60, 0.18);
    color: var(--flame-bright);
    border-radius: 999px;
}

.side-user {
    margin-top: auto;
    padding: 12px;
    border-top: 1px solid var(--ink-line);
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-user .avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--flame), var(--flame-deep));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--ivory);
}
.side-user .u-info { flex: 1; min-width: 0; }
.side-user .u-name { font-size: 0.82rem; font-weight: 600; }
.side-user .u-meta { font-size: 0.68rem; color: var(--ivory-dim); font-family: var(--font-mono); letter-spacing: 0.05em; }

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT (scroll zone) — univers cinéma
   ═══════════════════════════════════════════════════════════════ */
.app-main {
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Ambient mesh gradient — lentement mouvant */
.ambient-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
    filter: blur(0);
    will-change: transform;
}
.ambient-glow.g-1 {
    width: 900px; height: 900px;
    top: 40%; left: -200px;
    background: radial-gradient(circle, rgba(230,115,60,0.08) 0%, transparent 60%);
    animation: meshFloat1 22s ease-in-out infinite alternate;
}
.ambient-glow.g-2 {
    width: 700px; height: 700px;
    top: 10%; right: -150px;
    background: radial-gradient(circle, rgba(255, 138, 79, 0.06) 0%, transparent 60%);
    animation: meshFloat2 26s ease-in-out infinite alternate;
}
.ambient-glow.g-3 {
    width: 1000px; height: 1000px;
    bottom: -300px; left: 30%;
    background: radial-gradient(circle, rgba(230,115,60,0.05) 0%, transparent 60%);
    animation: meshFloat3 30s ease-in-out infinite alternate;
}
@keyframes meshFloat1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(6%, -4%) scale(1.12); }
}
@keyframes meshFloat2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-8%, 5%) scale(0.92); }
}
@keyframes meshFloat3 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(4%, -3%) scale(1.08); }
}

/* Corner marks (L-shape, inspiré du pitch et poster) */
.corner-mark {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 5;
    pointer-events: none;
}
.corner-mark::before,
.corner-mark::after {
    content: "";
    position: absolute;
    background: var(--flame);
    box-shadow: 0 0 8px var(--flame-glow);
}
.corner-mark.cm-tl { top: 20px; left: 20px; }
.corner-mark.cm-tl::before { top: 0; left: 0; width: 28px; height: 2px; }
.corner-mark.cm-tl::after  { top: 0; left: 0; width: 2px; height: 28px; }
.corner-mark.cm-tr { top: 20px; right: 20px; }
.corner-mark.cm-tr::before { top: 0; right: 0; width: 28px; height: 2px; }
.corner-mark.cm-tr::after  { top: 0; right: 0; width: 2px; height: 28px; }

/* Scrollbar style */
.app-main::-webkit-scrollbar,
.app-sidebar::-webkit-scrollbar { width: 10px; height: 10px; }
.app-main::-webkit-scrollbar-track,
.app-sidebar::-webkit-scrollbar-track { background: transparent; }
.app-main::-webkit-scrollbar-thumb,
.app-sidebar::-webkit-scrollbar-thumb {
    background: rgba(251, 248, 241, 0.08);
    border-radius: 10px;
}
.app-main::-webkit-scrollbar-thumb:hover { background: rgba(251, 248, 241, 0.15); }

/* ── Hero banner (featured film) — cinéma letterbox ───────────── */
.hero-banner {
    position: relative;
    width: 100%;
    height: 58vh;
    min-height: 440px;
    max-height: 640px;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid var(--ink-line);
}
@media (max-height: 720px) {
    .hero-banner { height: 65vh; min-height: 380px; }
}
/* Letterbox bars (cinematic framing) */
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 16px;
    background: #000;
    z-index: 3;
}
.hero-banner > .letter-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 16px;
    background: #000;
    z-index: 3;
}

/* Corner markers (film frame aesthetic) */
.hero-banner .frame-corner {
    position: absolute;
    width: 32px; height: 32px;
    z-index: 2;
    border: 2px solid var(--flame-bright);
    z-index: 4;
    box-shadow: 0 0 16px var(--flame-glow);
    opacity: 0.9;
}
.hero-banner .frame-corner.tl { top: 28px; left: 28px; border-right: none; border-bottom: none; }
.hero-banner .frame-corner.tr { top: 28px; right: 28px; border-left: none; border-bottom: none; }
.hero-banner .frame-corner.bl { bottom: 28px; left: 28px; border-right: none; border-top: none; }
.hero-banner .frame-corner.br { bottom: 28px; right: 28px; border-left: none; border-top: none; }

/* Technical annotation (top-right, like cinema gate) */
.hero-banner .tech-annot {
    position: absolute;
    top: 38px; left: 80px;
    z-index: 4;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    color: rgba(251, 248, 241, 0.72);
    text-transform: uppercase;
    line-height: 1.65;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.hero-banner .tech-annot span { display: block; }
.hero-annot-r {
    position: absolute;
    top: 38px; right: 80px;
    z-index: 4;
    font-family: var(--font-mono);
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    color: rgba(251, 248, 241, 0.72);
    text-transform: uppercase;
    text-align: right;
    line-height: 1.65;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.hero-banner img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.65) saturate(1.1);
    transform: scale(1.02);
    animation: heroKen 24s ease-in-out infinite alternate;
}
@keyframes heroKen {
    0%   { transform: scale(1.02) translateX(0); }
    100% { transform: scale(1.08) translateX(-2%); }
}
.hero-banner::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(230, 115, 60, 0.12), transparent 70%),
        linear-gradient(90deg, rgba(14,17,20,0.92) 0%, rgba(14,17,20,0.5) 40%, transparent 70%),
        linear-gradient(180deg, transparent 40%, var(--ink-deep) 100%);
}
.hero-banner .hero-badge {
    position: absolute;
    top: 90px; right: 80px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(230, 115, 60, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 138, 79, 0.45);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--flame-bright);
    font-weight: 600;
}
.hero-banner .hero-badge::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--flame-bright);
    box-shadow: 0 0 10px var(--flame-glow);
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { opacity: 0.5; transform: scale(0.85); }
    50%      { opacity: 1; transform: scale(1.1); }
}
.hero-banner .hero-genres {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.hero-banner .hero-genres span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(251, 248, 241, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(251, 248, 241, 0.15);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(251, 248, 241, 0.9);
}
.hero-banner .hero-content {
    position: absolute;
    left: 80px;
    bottom: 70px;
    right: 80px;
    z-index: 5;
    max-width: 720px;
}
.hero-banner .hb-crumb {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--flame-bright);
    margin-bottom: 14px;
}
.hero-banner h1 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 14px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 0 60px rgba(230, 115, 60, 0.2);
    font-feature-settings: "liga", "dlig";
}
.hero-banner h1 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #FFB380 0%, var(--flame-bright) 40%, var(--flame) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--flame-glow));
    display: inline-block;
}
.hero-banner .hb-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ivory-muted);
    margin-bottom: 18px;
}
.hero-banner .hb-meta strong { color: var(--flame-bright); }
.hero-banner .hb-sub {
    color: var(--ivory-muted);
    max-width: 560px;
    margin-bottom: 26px;
    line-height: 1.6;
    font-size: 1rem;
}
.hero-banner .hb-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-banner .hb-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(251, 248, 241, 0.75);
    padding-left: 4px;
}
.hero-banner .hb-progress .p-bar {
    width: 120px; height: 3px;
    background: rgba(251, 248, 241, 0.2);
    border-radius: 2px;
    overflow: hidden;
}
.hero-banner .hb-progress .p-fill {
    height: 100%;
    background: var(--flame-bright);
    box-shadow: 0 0 8px var(--flame-glow);
}

.btn-play, .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    transition: all .25s cubic-bezier(.25,.8,.25,1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn-play {
    background: linear-gradient(135deg, var(--flame-bright), var(--flame));
    color: var(--ivory);
    box-shadow: 0 8px 24px var(--flame-glow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.btn-play:hover {
    background: linear-gradient(135deg, #FFA066, var(--flame-bright));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--flame-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-play::before {
    content: "";
    position: absolute;
    top: -50%; left: -30%;
    width: 40%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    transition: left .7s;
}
.btn-play:hover::before { left: 130%; }
.btn-secondary {
    background: rgba(251, 248, 241, 0.1);
    color: var(--ivory);
    backdrop-filter: blur(12px);
    border-color: rgba(251, 248, 241, 0.25);
}
.btn-secondary:hover {
    background: rgba(251, 248, 241, 0.18);
    border-color: var(--flame);
    transform: translateY(-1px);
}

/* ── Row sections ─────────────────────────────────────────────── */
.row-section { padding: 40px 64px 32px; position: relative; }
.row-section + .row-section { padding-top: 8px; }

/* Big cinema-style number — displayed inline in row-head as decorative prefix */
.row-head .row-number {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(251, 248, 241, 0.2);
    letter-spacing: -0.04em;
    font-feature-settings: "lnum", "tnum";
    transition: -webkit-text-stroke-color .3s;
    margin-right: 14px;
    vertical-align: -2px;
    user-select: none;
}
.row-section:hover .row-head .row-number {
    -webkit-text-stroke-color: var(--flame);
}
.store-zone .row-head .row-number { -webkit-text-stroke-color: rgba(230, 115, 60, 0.35); }
.row-section .row-head { position: relative; z-index: 1; }

/* Store zone background tint */
.store-zone {
    background: linear-gradient(180deg, transparent 0%, rgba(230, 115, 60, 0.015) 30%, rgba(230, 115, 60, 0.03) 100%);
    padding-top: 8px;
    padding-bottom: 24px;
    position: relative;
}
.store-zone::before {
    content: "";
    position: absolute;
    top: 0; left: 48px; right: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 115, 60, 0.4), transparent);
}

.row-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}
.row-head h2 {
    font-family: var(--font-title);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    position: relative;
    padding-bottom: 16px;
}
.row-head h2 em { color: var(--flame); font-style: italic; font-weight: 500; }
.row-head h2::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 48px; height: 3px;
    background: var(--flame);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--flame-glow);
}
.row-head h2 .count {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--ivory-muted);
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(251, 248, 241, 0.08);
    padding: 4px 11px;
    border-radius: 999px;
    border: 1px solid rgba(251, 248, 241, 0.14);
}
.row-head h2 em { font-style: italic; color: var(--flame); font-weight: 500; }
.row-head .r-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ivory-dim);
}
.row-head .r-meta a { color: var(--flame); transition: color .2s; }
.row-head .r-meta a:hover { color: var(--flame-bright); }

.row-tag-player,
.row-tag-store {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-right: 10px;
    vertical-align: 3px;
    font-weight: 600;
}
.row-tag-player {
    background: rgba(58, 165, 116, 0.15);
    color: #5ED09A;
    border: 1px solid rgba(58, 165, 116, 0.3);
}
.row-tag-store {
    background: rgba(230, 115, 60, 0.15);
    color: var(--flame-bright);
    border: 1px solid rgba(230, 115, 60, 0.35);
}

/* Horizontal scroll row */
.film-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 6px 2px 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(251,248,241,0.12) transparent;
}
.film-row::-webkit-scrollbar { height: 8px; }
.film-row::-webkit-scrollbar-thumb { background: rgba(251, 248, 241, 0.1); border-radius: 10px; }
.film-row::-webkit-scrollbar-thumb:hover { background: rgba(251, 248, 241, 0.2); }

/* ── Film card (common) ───────────────────────────────────────── */
.film-card {
    flex-shrink: 0;
    width: 180px;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.25,.8,.25,1);
    scroll-snap-align: start;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.film-card:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

.film-card .poster {
    aspect-ratio: 2/3;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ink-line-strong);
    box-shadow: var(--shadow-card);
    background: #0A0A0A;
    transition: box-shadow .3s, border-color .25s;
}
.film-card .poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0;
    transition: opacity .25s;
    z-index: 1;
    pointer-events: none;
}
.film-card .poster img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.8,.25,1);
}
.film-card:hover .poster {
    border-color: var(--flame);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.75),
        0 0 0 2px var(--flame),
        0 0 40px rgba(230, 115, 60, 0.4);
}

/* Subtle shimmer while loading (modern pattern) */
.film-card .poster::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left .8s cubic-bezier(.25,.8,.25,1);
    z-index: 2;
    opacity: 0;
}
.film-card:hover .poster::after { left: 150%; opacity: 1; }
.film-card:hover .poster::before { opacity: 1; }
.film-card:hover .poster img { transform: scale(1.08); }

/* Hover-reveal quick actions */
.film-card .hover-reveal {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 12px;
    z-index: 2;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.25,.8,.25,1);
    display: flex;
    gap: 8px;
}
.film-card:hover .hover-reveal { transform: translateY(0); }
.film-card .hover-reveal .qa {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: var(--ivory);
    font-size: 0.8rem;
    transition: background .2s;
}
.film-card .hover-reveal .qa:hover { background: var(--flame); border-color: var(--flame); }
.film-card .hover-reveal .qa.primary { background: var(--flame); border-color: var(--flame); flex: 2; font-weight: 600; }
.film-card .hover-reveal .qa.primary:hover { background: var(--flame-bright); }

.film-card .badge-q {
    position: absolute;
    top: 8px; right: 8px;
    padding: 4px 9px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    z-index: 3;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.film-card .badge-q.hdr {
    background: linear-gradient(135deg, var(--flame), var(--flame-deep));
    color: var(--ivory);
    border-color: rgba(255, 138, 79, 0.4);
    box-shadow: 0 2px 8px rgba(230, 115, 60, 0.3);
}
.film-card .badge-price {
    position: absolute;
    bottom: 10px; right: 10px;
    padding: 5px 11px;
    background: linear-gradient(135deg, var(--flame), var(--flame-deep));
    border-radius: 8px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    color: var(--ivory);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform .25s, box-shadow .25s;
}
.film-card:hover .badge-price { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--flame-bright); }

.film-card .badge-owned {
    position: absolute;
    bottom: 10px; left: 10px;
    padding: 5px 9px;
    background: linear-gradient(135deg, #4ABF88, #3AA574);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: #04261A;
    z-index: 2;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.film-card .badge-owned::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #04261A;
}

.film-card .badge-new {
    position: absolute;
    top: 10px; left: 10px;
    padding: 3px 8px;
    background: var(--ivory);
    color: var(--ink-deep);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    font-weight: 900;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.film-card .progress {
    position: absolute;
    left: 8px; right: 8px;
    bottom: 10px;
    height: 3px;
    background: rgba(251, 248, 241, 0.2);
    border-radius: 2px;
    overflow: hidden;
    z-index: 2;
}
.film-card .progress-fill {
    height: 100%;
    background: var(--flame);
    box-shadow: 0 0 8px var(--flame-glow);
}

.film-card .info {
    padding: 10px 4px 0;
}
.film-card .info .t {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    color: var(--ivory);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.film-card .info .m {
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    color: var(--ivory-dim);
    display: flex;
    gap: 6px;
    align-items: center;
}
.film-card .info .m .sep { opacity: 0.5; }

/* ── Section heading eyebrow (inspiré pitch) ─────────────────── */
.section-intro {
    padding: 40px 64px 8px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Eyebrow-bar + label cinéma */
.cine-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--flame-bright);
}
.cine-eyebrow::before {
    content: "";
    width: 36px; height: 2px;
    background: var(--flame-bright);
    box-shadow: 0 0 10px var(--flame-glow);
}
.cine-eyebrow.is-green { color: #5ED09A; }
.cine-eyebrow.is-green::before { background: #5ED09A; box-shadow: 0 0 10px rgba(58,165,116,0.6); }

/* Big cinematic title for zone */
.cine-zone-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--ivory);
    margin: 6px 0 4px;
}
.cine-zone-title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #FFB380, var(--flame-bright), var(--flame));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px var(--flame-glow));
    display: inline-block;
}
.cine-zone-sub {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: var(--ivory-muted);
    margin-left: auto;
    max-width: 360px;
    text-align: right;
    line-height: 1.5;
}


.section-intro .tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-intro .tag::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
    opacity: 0.9;
}
.section-intro .tag-player {
    background: rgba(58, 165, 116, 0.12);
    color: #5ED09A;
    border: 1px solid rgba(58, 165, 116, 0.35);
}
.section-intro .tag-store {
    background: rgba(230, 115, 60, 0.12);
    color: var(--flame-bright);
    border: 1px solid rgba(230, 115, 60, 0.4);
}
.section-intro .tag-subline {
    color: var(--ivory-dim);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}
.section-intro h1 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ── Divider between Player and Store zones ───────────────────── */
.zone-divider {
    height: 120px;
    margin: 32px 0 16px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    position: relative;
    overflow: hidden;
}
.zone-divider::after {
    content: "";
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(230, 115, 60, 0.35) 50%, transparent 90%);
}
.zone-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 100% at 50% 50%, rgba(230, 115, 60, 0.06), transparent 70%);
}
.zone-divider .z-label {
    position: relative;
    margin: 0 auto;
    padding: 10px 22px;
    background: #15181C;
    border: 1px solid rgba(230, 115, 60, 0.35);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--flame-bright);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(230, 115, 60, 0.15);
}
.zone-divider .z-label::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--flame-bright);
    box-shadow: 0 0 12px var(--flame-glow);
    animation: badgePulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   COMMAND PALETTE FAB (floating action button)
   ═══════════════════════════════════════════════════════════════ */
.cmd-fab {
    position: fixed;
    bottom: 54px;
    right: 24px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(28, 31, 36, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(230, 115, 60, 0.25);
    border-radius: 999px;
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(230, 115, 60, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--ivory-muted);
    cursor: pointer;
    transition: all .25s cubic-bezier(.25,.8,.25,1);
}
.cmd-fab:hover {
    border-color: var(--flame);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px var(--flame-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.cmd-fab .cmd-ico {
    width: 16px; height: 16px;
    color: var(--flame-bright);
    font-size: 0.9rem;
}
.cmd-fab kbd {
    padding: 3px 8px;
    background: rgba(251, 248, 241, 0.08);
    border: 1px solid rgba(251, 248, 241, 0.15);
    border-radius: 5px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--ivory);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   STATUS BAR (full-width footer)
   ═══════════════════════════════════════════════════════════════ */
.status-bar {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: linear-gradient(180deg, #1A1D22 0%, #0F1114 100%);
    border-top: 1px solid var(--ink-line);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--ivory-dim);
    letter-spacing: 0.1em;
    position: relative;
}
.status-bar::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 115, 60, 0.2), transparent);
}
.status-bar .s-left,
.status-bar .s-right {
    display: flex;
    gap: 18px;
    align-items: center;
}
.status-bar .s-ok {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
    font-weight: 600;
}
.status-bar .s-ok::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px rgba(58, 165, 116, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; box-shadow: 0 0 12px rgba(58, 165, 116, 0.9); }
}
.status-bar .s-sep {
    width: 1px; height: 14px;
    background: var(--ink-line-strong);
}
.status-bar .s-meta {
    color: rgba(251, 248, 241, 0.55);
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   FILM DETAIL (Store page)
   ═══════════════════════════════════════════════════════════════ */
.detail-hero {
    position: relative;
    padding: 60px 48px 48px;
    overflow: hidden;
}
.detail-hero .bg-wrap {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: 0;
}
.detail-hero .bg-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(30px) brightness(0.35) saturate(1.2);
    transform: scale(1.15);
}
.detail-hero::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,17,20,0.6) 0%, var(--ink-deep) 100%);
    z-index: 1;
}

.film-detail {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    max-width: 1240px;
    margin: 0 auto;
}

.detail-poster {
    aspect-ratio: 2/3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--ink-line-strong);
}
.detail-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }

.detail-info .crumb {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--flame-bright);
    margin-bottom: 16px;
    display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.detail-info .crumb a:hover { color: var(--flame); }
.detail-info h1 {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.detail-info h1 em { font-style: italic; color: var(--flame); font-weight: 500; }
.detail-info .sub {
    color: var(--ivory-muted);
    font-size: 1rem;
    margin-bottom: 18px;
}
.detail-info .rating {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: var(--ivory-muted);
    padding-bottom: 22px;
    border-bottom: 1px solid var(--ink-line);
    margin-bottom: 22px;
}
.detail-info .rating strong { color: var(--ivory); font-family: var(--font-title); font-size: 1.1rem; }
.detail-info .synopsis {
    color: var(--ivory-muted);
    line-height: 1.7;
    font-size: 0.98rem;
    margin-bottom: 26px;
    max-width: 640px;
}

.quality-box {
    background: rgba(251, 248, 241, 0.03);
    border: 1px solid var(--ink-line-strong);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 22px;
    max-width: 640px;
    backdrop-filter: blur(8px);
}
.quality-box .q-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    margin-bottom: 14px;
}
.quality-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.q-option {
    padding: 14px;
    border: 2px solid var(--ink-line-strong);
    border-radius: 10px;
    text-align: center;
    transition: all .2s;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.q-option:hover { border-color: rgba(230, 115, 60, 0.4); }
.q-option.selected {
    border-color: var(--flame);
    background: rgba(230, 115, 60, 0.12);
}
.q-option .q-name {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    color: var(--flame-bright);
    margin-bottom: 4px;
}
.q-option .q-price {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
}
.q-option .q-price .cur { font-size: 0.9rem; vertical-align: super; margin-right: 2px; }
.q-option .q-desc {
    font-size: 0.72rem;
    color: var(--ivory-dim);
    margin-top: 4px;
}

.included {
    max-width: 640px;
    margin-bottom: 26px;
}
.included .i-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    margin-bottom: 12px;
}
.included ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.included li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--ivory-muted);
}
.included li::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.actions { display: flex; gap: 12px; max-width: 640px; flex-wrap: wrap; }
.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .18s, background .2s, box-shadow .25s;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--flame);
    color: var(--ivory);
    flex: 1;
    box-shadow: var(--shadow-flame);
}
.btn-primary:hover {
    background: var(--flame-bright);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--ivory);
    border-color: var(--ink-line-strong);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--flame); color: var(--flame); }

.market-note {
    margin-top: 22px;
    padding: 14px 18px;
    background: rgba(58, 165, 116, 0.08);
    border: 1px solid rgba(58, 165, 116, 0.25);
    border-radius: 10px;
    font-size: 0.88rem;
    color: var(--ivory-muted);
    max-width: 640px;
}
.market-note strong { color: var(--success); }

/* ═══════════════════════════════════════════════════════════════
   CERTIFICATE
   ═══════════════════════════════════════════════════════════════ */
.cert-wrap {
    padding: 50px 40px;
    display: flex;
    justify-content: center;
    min-height: 100%;
    align-items: flex-start;
}
.certificate {
    width: 100%;
    max-width: 680px;
    background: linear-gradient(180deg, #FBF8F1 0%, #F3ECDE 100%);
    color: var(--ink);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.certificate::before {
    content: "";
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--flame-glow), transparent 70%);
    opacity: 0.3;
}
.cert-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 2px dashed rgba(43, 47, 51, 0.2);
    margin-bottom: 26px;
    position: relative;
}
.cert-seal {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--flame);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px var(--flame-glow);
    flex-shrink: 0;
}
.cert-seal::before {
    content: "";
    border-left: 18px solid var(--ivory);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}
.cert-title {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--flame-deep);
    margin-bottom: 4px;
}
.cert-title-big {
    font-family: var(--font-title);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ink);
}
.cert-body dl {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px 16px;
    margin-bottom: 26px;
}
.cert-body dt {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(43, 47, 51, 0.65);
    padding-top: 2px;
}
.cert-body dd {
    font-weight: 600;
    color: var(--ink);
    word-break: break-all;
}
.cert-body dd.hash { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500; }

.cert-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 2px dashed rgba(43, 47, 51, 0.2);
    margin-bottom: 22px;
}
.cert-badges .b {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(58, 165, 116, 0.14);
    border: 1px solid rgba(58, 165, 116, 0.3);
    color: #1F7A52;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    font-weight: 600;
}

.cert-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.86rem;
    transition: background .2s, color .2s;
    cursor: pointer;
    background: transparent;
}
.cert-actions .btn-outline:hover { background: var(--ink); color: var(--ivory); }
.cert-actions .btn-outline.primary { background: var(--flame); color: var(--ivory); border-color: var(--flame); }
.cert-actions .btn-outline.primary:hover { background: var(--flame-bright); border-color: var(--flame-bright); }

/* ═══════════════════════════════════════════════════════════════
   SITE BRAND STRIP (cohérence avec le site principal)
   Appliqué au-dessus des mockups desktop pour assurer la continuité
   ═══════════════════════════════════════════════════════════════ */
.site-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    height: 54px;
    background: rgba(28, 31, 36, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(251, 248, 241, 0.08);
    gap: 24px;
}
.site-strip .ss-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.site-strip .ss-logo {
    height: 26px;
    filter: brightness(0) invert(1);
}
.site-strip .ss-crumb {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ivory-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.site-strip .ss-crumb .sep {
    color: var(--flame);
    margin: 0 8px;
}
.site-strip .ss-nav {
    display: flex;
    gap: 24px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ivory-muted);
}
.site-strip .ss-nav a { transition: color .2s; }
.site-strip .ss-nav a:hover { color: var(--flame); }
.site-strip .ss-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-strip .ss-download {
    padding: 8px 16px;
    background: var(--flame);
    color: var(--ivory);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background .2s, transform .15s;
}
.site-strip .ss-download:hover { background: var(--flame-bright); transform: translateY(-1px); }
.site-strip .ss-back {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--ivory-muted);
    padding: 6px 12px;
    border: 1px solid var(--ink-line-strong);
    border-radius: 999px;
    transition: all .2s;
    text-transform: uppercase;
}
.site-strip .ss-back:hover { color: var(--flame); border-color: var(--flame); }

/* App/browser window adjusts height when strip present */
.app-window.has-strip,
.browser-window.has-strip {
    height: calc(100vh - 54px);
}

/* ═══════════════════════════════════════════════════════════════
   BROWSER CHROME (version web du Store)
   ═══════════════════════════════════════════════════════════════ */
.browser-window {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: 76px 1fr;
    overflow: hidden;
    background: var(--ivory);
    color: var(--ink);
}

.browser-chrome {
    background: linear-gradient(180deg, #E8E2D3 0%, #DCD5C4 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.browser-tabbar {
    display: flex;
    align-items: flex-end;
    padding: 6px 14px 0;
    height: 38px;
    gap: 2px;
}
.browser-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px 8px 0 0;
    font-size: 0.82rem;
    color: rgba(0, 0, 0, 0.55);
    max-width: 240px;
    min-width: 0;
}
.browser-tab.active {
    background: var(--ivory);
    color: var(--ink);
    font-weight: 500;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.06);
}
.browser-tab .fav {
    width: 14px; height: 14px;
    border-radius: 3px;
    background: var(--flame);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 9px; font-weight: 900;
}
.browser-tab .tab-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.browser-tab .tab-close {
    margin-left: 6px;
    opacity: 0.4;
    font-size: 1rem;
    line-height: 1;
}

.browser-urlbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    height: 38px;
}
.browser-nav-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(0, 0, 0, 0.55);
    font-size: 1rem;
    transition: background .15s;
    cursor: pointer;
}
.browser-nav-btn:hover { background: rgba(0, 0, 0, 0.08); }
.browser-nav-btn[disabled] { opacity: 0.3; cursor: default; }
.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--ink);
    max-width: 820px;
    margin: 0 auto;
}
.browser-url .lock { color: var(--success); }
.browser-url .u-domain { font-weight: 500; }
.browser-url .u-path { opacity: 0.55; }
.browser-url .u-badge {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--flame-deep);
    padding: 2px 8px;
    background: rgba(230, 115, 60, 0.12);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.browser-actions {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Web content frame */
.web-content {
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--ivory);
    color: var(--ink);
}

/* Web Store: top nav */
.web-topnav {
    position: sticky; top: 0;
    background: rgba(251, 248, 241, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    gap: 24px;
}
.web-topnav .w-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ink);
}
.web-topnav .w-logo img { height: 28px; }
.web-topnav .w-logo .w-sub {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--flame-deep);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}
.web-topnav nav {
    display: flex;
    gap: 28px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(43, 47, 51, 0.7);
}
.web-topnav nav a:hover { color: var(--flame-deep); }
.web-topnav nav a.active { color: var(--ink); font-weight: 600; }
.web-topnav .w-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(43, 47, 51, 0.06);
    border-radius: 999px;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
    min-width: 260px;
}
.web-topnav .w-account {
    display: flex; gap: 10px; align-items: center;
}
.web-topnav .w-btn-ghost {
    padding: 8px 16px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    transition: all .2s;
}
.web-topnav .w-btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.web-topnav .w-btn-primary {
    padding: 8px 18px;
    background: var(--flame);
    color: var(--ivory);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all .2s;
}
.web-topnav .w-btn-primary:hover { background: var(--flame-bright); }

/* Web Store hero */
.web-hero {
    position: relative;
    padding: 110px 40px 100px;
    color: var(--ivory);
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}
/* Frame corners (cinema aesthetic on web-hero too) */
.web-hero .wf-corner {
    position: absolute;
    width: 36px; height: 36px;
    border: 2px solid var(--flame-bright);
    z-index: 2;
    box-shadow: 0 0 20px var(--flame-glow);
    opacity: 0.85;
}
.web-hero .wf-corner.tl { top: 28px; left: 28px; border-right: none; border-bottom: none; }
.web-hero .wf-corner.tr { top: 28px; right: 28px; border-left: none; border-bottom: none; }
.web-hero .wf-corner.bl { bottom: 28px; left: 28px; border-right: none; border-top: none; }
.web-hero .wf-corner.br { bottom: 28px; right: 28px; border-left: none; border-top: none; }
/* Tech annot (top-left, cinema gate) */
.web-hero .wf-annot {
    position: absolute;
    top: 42px; left: 82px;
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    color: rgba(251, 248, 241, 0.78);
    text-transform: uppercase;
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.web-hero .wf-annot span { display: block; }
.web-hero .wf-annot-r {
    position: absolute;
    top: 42px; right: 82px;
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    color: rgba(251, 248, 241, 0.78);
    text-transform: uppercase;
    line-height: 1.6;
    text-align: right;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.web-hero .bg {
    position: absolute; inset: 0;
    overflow: hidden;
}
.web-hero .bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.5) saturate(1.15);
    transform: scale(1.02);
    animation: heroKen 28s ease-in-out infinite alternate;
}
.web-hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 100% at 80% 50%, rgba(230, 115, 60, 0.15), transparent 60%),
        linear-gradient(90deg, rgba(14,17,20,0.92) 0%, rgba(14,17,20,0.4) 60%, transparent 100%),
        linear-gradient(180deg, transparent 50%, rgba(251, 248, 241, 0.98) 100%);
}
.web-hero .hero-tag {
    position: absolute;
    top: 32px; left: 40px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(230, 115, 60, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 138, 79, 0.5);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--flame-bright);
    font-weight: 600;
}
.web-hero .hero-tag::before {
    content: "";
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--flame-bright);
    box-shadow: 0 0 12px var(--flame-glow);
    animation: badgePulse 2s ease-in-out infinite;
}
.web-hero-inner {
    position: relative; z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.web-hero .eyebrow {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--flame-bright);
    margin-bottom: 16px;
}
.web-hero h1 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    letter-spacing: -0.035em;
    line-height: 1.02;
    max-width: 720px;
    margin-bottom: 18px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.web-hero h1 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #FFC199 0%, var(--flame-bright) 40%, var(--flame) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--flame-glow));
    display: inline-block;
}
.web-hero p {
    color: rgba(251, 248, 241, 0.88);
    max-width: 580px;
    font-size: 1.08rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.web-hero .hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(251, 248, 241, 0.15);
    margin-top: 28px;
    max-width: 680px;
}
.web-hero .h-stat {
    display: flex;
    flex-direction: column;
}
.web-hero .h-stat .n {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ivory);
    line-height: 1;
    margin-bottom: 4px;
}
.web-hero .h-stat .n em {
    font-style: normal;
    background: linear-gradient(135deg, #FFC199, var(--flame-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.web-hero .h-stat .l {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(251, 248, 241, 0.65);
}
.web-hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.web-hero .btn-w-primary {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--flame-bright), var(--flame));
    color: var(--ivory);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    box-shadow: 0 10px 30px var(--flame-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all .25s cubic-bezier(.25,.8,.25,1);
    position: relative;
    overflow: hidden;
}
.web-hero .btn-w-primary:hover {
    background: linear-gradient(135deg, #FFA066, var(--flame-bright));
    transform: translateY(-2px);
    box-shadow: 0 14px 40px var(--flame-glow);
}
.web-hero .btn-w-primary::before {
    content: "";
    position: absolute;
    top: -50%; left: -30%;
    width: 40%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left .7s;
}
.web-hero .btn-w-primary:hover::before { left: 130%; }
.web-hero .btn-w-ghost {
    padding: 15px 26px;
    background: rgba(251, 248, 241, 0.1);
    color: var(--ivory);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    border: 1px solid rgba(251, 248, 241, 0.28);
    backdrop-filter: blur(12px);
    transition: all .25s;
}
.web-hero .btn-w-ghost:hover {
    background: rgba(251, 248, 241, 0.2);
    border-color: var(--flame-bright);
    transform: translateY(-1px);
}

/* Web store rows */
.web-section {
    padding: 60px 40px 48px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
/* Row number — version light bg */
.web-section .row-head .row-number {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 2.6rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(43, 47, 51, 0.22);
    letter-spacing: -0.04em;
    font-feature-settings: "lnum", "tnum";
    transition: -webkit-text-stroke-color .3s;
    margin-right: 14px;
    vertical-align: -2px;
    user-select: none;
}
.web-section:hover .row-head .row-number {
    -webkit-text-stroke-color: var(--flame);
}

/* Cine eyebrow — variante light bg */
.web-section-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px 0;
    display: flex;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}
.web-section-intro .cine-eyebrow {
    color: var(--flame-text);
}
.web-section-intro .cine-eyebrow::before {
    background: var(--flame-text);
    box-shadow: 0 0 10px rgba(230, 115, 60, 0.35);
}
.web-section-intro .cine-eyebrow.is-green {
    color: #1F7A52;
}
.web-section-intro .cine-eyebrow.is-green::before {
    background: #1F7A52;
    box-shadow: 0 0 10px rgba(58, 165, 116, 0.35);
}
.web-section-intro .cine-zone-title {
    color: var(--ink);
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.02;
    margin-top: 8px;
}
.web-section-intro .cine-zone-title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, var(--flame-deep), var(--flame-text));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 14px rgba(230, 115, 60, 0.25));
    display: inline-block;
}
.web-section-intro .cine-zone-sub {
    color: rgba(43, 47, 51, 0.72);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    margin-left: auto;
    max-width: 340px;
    text-align: right;
    line-height: 1.5;
}
.web-section .row-head h2 {
    color: var(--ink);
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 16px;
}
.web-section .row-head h2::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--flame-deep), var(--flame-text));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(230, 115, 60, 0.3);
}
.web-section .row-head h2 em { color: var(--flame-deep); font-style: italic; font-weight: 500; }
.web-section .row-head h2 .count {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    color: var(--flame-text);
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(230, 115, 60, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(230, 115, 60, 0.3);
    margin-left: 12px;
    vertical-align: 5px;
}
.web-section .row-head .r-meta {
    color: rgba(43, 47, 51, 0.55);
}
.web-section .row-head .r-meta a { color: var(--flame-deep); font-weight: 600; }
.web-section .row-head .r-meta a:hover { color: var(--flame); }
.web-section .film-card .info .t { color: var(--ink); }
.web-section .film-card .info .m { color: rgba(43, 47, 51, 0.6); }
.web-section .film-card:hover .poster {
    border-color: var(--flame);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 0 0 2px var(--flame);
}
.web-section .film-row::-webkit-scrollbar-thumb { background: rgba(43, 47, 51, 0.15); }

/* Trust/reassurance band (before promo) */
.web-trust-band {
    max-width: 1400px;
    margin: 20px auto;
    padding: 32px 40px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(43, 47, 51, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.web-trust-band .tb-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px;
    border-radius: 12px;
    transition: all .25s cubic-bezier(.25,.8,.25,1);
    position: relative;
    cursor: default;
}
.web-trust-band .tb-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(230, 115, 60, 0.06), rgba(230, 115, 60, 0.02));
    box-shadow: 0 8px 24px rgba(230, 115, 60, 0.08);
}
.web-trust-band .tb-item:hover .tb-ico {
    background: linear-gradient(135deg, var(--flame), var(--flame-deep));
    color: var(--ivory);
    border-color: transparent;
    box-shadow: 0 4px 16px var(--flame-glow);
    transform: rotate(-5deg);
}
.web-trust-band .tb-ico {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(230, 115, 60, 0.18), rgba(230, 115, 60, 0.08));
    border: 1px solid rgba(230, 115, 60, 0.25);
    color: var(--flame-deep);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: all .3s cubic-bezier(.25,.8,.25,1);
}
.web-trust-band h3 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}
.web-trust-band p {
    font-size: 0.82rem;
    color: rgba(43, 47, 51, 0.68);
    line-height: 1.4;
}
@media (max-width: 900px) {
    .web-trust-band { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; margin: 16px; }
}
@media (max-width: 560px) {
    .web-trust-band { grid-template-columns: 1fr; }
}

/* Web promo band — modern + cinematic */
.web-promo {
    background:
        radial-gradient(ellipse 60% 100% at 100% 50%, rgba(230, 115, 60, 0.22), transparent 60%),
        radial-gradient(ellipse 40% 80% at 0% 100%, rgba(255, 138, 79, 0.1), transparent 70%),
        linear-gradient(135deg, var(--ink-deep) 0%, var(--ink) 100%);
    color: var(--ivory);
    padding: 80px 40px;
    margin: 40px 0 0;
    position: relative;
    overflow: hidden;
}
/* Frame corners on promo for cinematic consistency */
.web-promo::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--flame), transparent);
    opacity: 0.5;
}
.web-promo::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--flame-glow), transparent 70%);
    opacity: 0.5;
}
.web-promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.web-promo .p-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--flame-bright);
    margin-bottom: 10px;
}
.web-promo h2 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}
.web-promo h2 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(135deg, #FFC199, var(--flame-bright), var(--flame));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px var(--flame-glow));
    display: inline-block;
}
.web-promo p {
    color: rgba(251, 248, 241, 0.8);
    max-width: 560px;
    line-height: 1.6;
}
.web-promo .p-cta {
    padding: 16px 32px;
    background: var(--flame);
    color: var(--ivory);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-flame);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    white-space: nowrap;
}
.web-promo .p-cta:hover { background: var(--flame-bright); }

/* ═══════════════════════════════════════════════════════════════
   WEB FILM DETAIL (store web — page film moderne)
   ═══════════════════════════════════════════════════════════════ */
.web-film-hero {
    position: relative;
    color: var(--ivory);
    padding: 70px 40px 50px;
    overflow: hidden;
    min-height: 520px;
}
.web-film-hero .wfh-bg {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: 0;
}
.web-film-hero .wfh-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.4) saturate(1.1);
}
.web-film-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(14,17,20,0.92) 0%, rgba(14,17,20,0.6) 50%, rgba(14,17,20,0.4) 100%),
        linear-gradient(180deg, transparent 50%, rgba(251, 248, 241, 0.98) 100%);
    z-index: 1;
}

.wfh-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
}

.wfh-poster {
    aspect-ratio: 2/3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(251, 248, 241, 0.12);
}
.wfh-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wfh-info .wfh-crumb {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--flame-bright);
    margin-bottom: 16px;
    display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.wfh-info .wfh-crumb a { color: rgba(251, 248, 241, 0.7); }
.wfh-info .wfh-crumb a:hover { color: var(--flame-bright); }
.wfh-info h1 {
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
    color: var(--ivory);
}
.wfh-info h1 em { font-style: italic; color: var(--flame-bright); font-weight: 500; }
.wfh-info .wfh-sub {
    font-size: 1.05rem;
    color: rgba(251, 248, 241, 0.78);
    margin-bottom: 20px;
}
.wfh-info .wfh-rating {
    display: flex; gap: 20px; flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    color: rgba(251, 248, 241, 0.78);
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(251, 248, 241, 0.12);
    margin-bottom: 22px;
}
.wfh-info .wfh-rating strong { color: var(--ivory); font-family: var(--font-title); font-size: 1.15rem; }
.wfh-info .wfh-syn {
    color: rgba(251, 248, 241, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 640px;
}

/* Trust row sur fond sombre */
.wfh-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(251, 248, 241, 0.12);
}
.wfh-trust .t-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem;
    color: rgba(251, 248, 241, 0.85);
}
.wfh-trust .t-item .i {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    background: rgba(58, 165, 116, 0.2);
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Purchase panel (floating / sticky right on web-film) */
.web-film-body {
    background: var(--ivory);
    color: var(--ink);
    padding: 50px 40px 40px;
}
.wfb-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
}
.wfb-left { min-width: 0; }
.wfb-left h2 {
    font-family: var(--font-title);
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.wfb-left h2 em { color: var(--flame-deep); font-style: italic; font-weight: 500; }
.wfb-left h2 + p { color: rgba(43, 47, 51, 0.75); line-height: 1.7; font-size: 1rem; margin-bottom: 28px; }

.wfb-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.wfb-feature {
    padding: 22px;
    background: white;
    border: 1px solid rgba(43, 47, 51, 0.1);
    border-radius: var(--radius);
    display: flex;
    gap: 14px;
}
.wfb-feature .f-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    background: rgba(230, 115, 60, 0.12);
    color: var(--flame-deep);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.wfb-feature h3 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--ink);
}
.wfb-feature p {
    font-size: 0.88rem;
    color: rgba(43, 47, 51, 0.65);
    line-height: 1.5;
}

/* Reviews */
.wfb-reviews {
    margin-bottom: 40px;
}
.review-card {
    padding: 22px;
    background: white;
    border: 1px solid rgba(43, 47, 51, 0.08);
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.review-head {
    display: flex; gap: 12px; align-items: center; margin-bottom: 10px;
}
.review-head .r-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--flame), var(--flame-deep));
    color: var(--ivory);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.review-head .r-author { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.review-head .r-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(43, 47, 51, 0.5);
}
.review-head .r-stars { margin-left: auto; color: var(--flame); font-size: 0.9rem; letter-spacing: 0.05em; }
.review-card p {
    color: rgba(43, 47, 51, 0.78);
    line-height: 1.6;
    font-size: 0.94rem;
}

/* Buy panel (sticky) */
.buy-panel {
    position: sticky;
    top: 24px;
    align-self: flex-start;
    padding: 28px;
    background: white;
    border: 1px solid rgba(43, 47, 51, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.buy-panel .bp-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--flame-deep);
    margin-bottom: 8px;
}
.buy-panel h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--ink);
}
.buy-panel .bp-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.buy-panel .bp-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border: 2px solid rgba(43, 47, 51, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    background: white;
}
.buy-panel .bp-opt:hover { border-color: rgba(230, 115, 60, 0.4); }
.buy-panel .bp-opt.selected {
    border-color: var(--flame);
    background: rgba(230, 115, 60, 0.06);
}
.buy-panel .bp-opt .bp-name {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--ink);
    font-weight: 600;
}
.buy-panel .bp-opt .bp-size {
    font-size: 0.7rem;
    color: rgba(43, 47, 51, 0.5);
    font-family: var(--font-mono);
    margin-top: 2px;
    display: block;
}
.buy-panel .bp-opt .bp-price {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
}
.buy-panel .bp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--flame);
    color: var(--ivory);
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-flame);
    transition: all .2s;
    margin-bottom: 14px;
}
.buy-panel .bp-cta:hover { background: var(--flame-bright); transform: translateY(-2px); }
.buy-panel .bp-assurance {
    padding-top: 16px;
    border-top: 1px dashed rgba(43, 47, 51, 0.15);
    font-size: 0.85rem;
    color: rgba(43, 47, 51, 0.7);
    line-height: 1.5;
}
.buy-panel .bp-assurance strong { color: var(--ink); }
.buy-panel .bp-assurance .l {
    display: flex; gap: 8px; align-items: flex-start;
    margin-bottom: 6px;
}
.buy-panel .bp-assurance .l::before {
    content: "✓";
    color: var(--success);
    font-weight: 700;
    margin-top: 1px;
}

/* Market note light */
.web-market-note {
    margin: 30px 0 0;
    padding: 16px 20px;
    background: rgba(58, 165, 116, 0.08);
    border: 1px solid rgba(58, 165, 116, 0.25);
    border-radius: 10px;
    font-size: 0.9rem;
    color: rgba(43, 47, 51, 0.78);
    max-width: 640px;
}
.web-market-note strong { color: #1F7A52; }

/* Web footer — modernisé */
.web-footer {
    position: relative;
    background:
        radial-gradient(ellipse 40% 60% at 80% 0%, rgba(230, 115, 60, 0.08), transparent 70%),
        var(--ink-deep);
    color: rgba(251, 248, 241, 0.7);
    padding: 60px 40px 28px;
    font-size: 0.88rem;
}
.web-footer .wf-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(251, 248, 241, 0.08);
}
.web-footer h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 14px;
}
.web-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.web-footer a:hover { color: var(--flame); }
.web-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 115, 60, 0.4), transparent);
}
.web-footer .wf-brand img { height: 32px; margin-bottom: 14px; }
.web-footer .wf-brand p { max-width: 280px; line-height: 1.5; font-size: 0.9rem; }
.web-footer .wf-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(251, 248, 241, 0.45);
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    :root { --sidebar-w: 0px; }
    .site-strip { padding: 8px 14px; gap: 10px; }
    .site-strip .ss-crumb { font-size: 0.6rem; letter-spacing: 0.15em; }
    .site-strip .ss-nav { display: none; }
    .site-strip .ss-download { font-size: 0.72rem; padding: 6px 12px; }
    .app-body { grid-template-columns: 1fr; }
    .app-sidebar { display: none; }
    .row-section { padding: 24px 20px; }
    .section-intro { padding: 24px 20px 12px; }
    .zone-divider { padding: 0 20px; margin: 28px 0; }
    .film-card { width: 140px; }
    .hero-banner { aspect-ratio: 16/10; min-height: 280px; }
    .hero-banner .hero-content { left: 24px; right: 24px; bottom: 24px; }
    .detail-hero { padding: 32px 20px; }
    .film-detail { grid-template-columns: 1fr; gap: 24px; }
    .detail-poster { max-width: 240px; margin: 0 auto; }
    .cert-body dl { grid-template-columns: 1fr; gap: 4px 0; }
    .cert-body dt { padding-top: 12px; }
    .included ul { grid-template-columns: 1fr; }
    .chrome-title { display: none; }
    .quality-options { grid-template-columns: 1fr; }
    .cert-wrap { padding: 24px 16px; }
    .certificate { padding: 28px 22px; }

    .wfh-inner { grid-template-columns: 1fr; gap: 24px; }
    .wfh-poster { max-width: 220px; margin: 0 auto; }
    .web-film-hero { padding: 32px 20px 30px; min-height: 0; }
    .web-film-body { padding: 32px 20px; }
    .wfb-inner { grid-template-columns: 1fr; gap: 28px; }
    .wfb-feature-grid { grid-template-columns: 1fr; }
    .buy-panel { position: static; padding: 22px; }

    .web-topnav { padding: 12px 20px; flex-wrap: wrap; gap: 12px; }
    .web-topnav nav { order: 3; width: 100%; gap: 16px; font-size: 0.82rem; overflow-x: auto; }
    .web-topnav .w-search { display: none; }
    .web-hero { padding: 40px 20px 30px; min-height: 300px; }
    .web-section { padding: 24px 20px; }
    .web-promo { padding: 40px 24px; }
    .web-promo-inner { grid-template-columns: 1fr; gap: 20px; }
    .web-footer { padding: 32px 20px 16px; }
    .web-footer .wf-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .web-footer .wf-bottom { flex-direction: column; gap: 8px; }
    .browser-tabbar { padding: 4px 8px 0; }
    .browser-tab { max-width: 160px; padding: 6px 10px; font-size: 0.78rem; }
    .browser-urlbar { padding: 0 8px; gap: 6px; }
    .browser-url { padding: 4px 10px; font-size: 0.76rem; }
    .browser-url .u-badge { display: none; }
}
@media (max-width: 560px) {
    .web-footer .wf-inner { grid-template-columns: 1fr; }
}
