/* ════════════════════════════════════════════════════
   App PWA Yamato Manga Fest — thème dark_anime_japan
   Spec : rouge vif #E10600, fond #050505, accent or, Bebas Neue + Inter + Orbitron
   ════════════════════════════════════════════════════ */

:root {
    /* Couleurs (spec) */
    --primary:        #E10600;
    --secondary:      #FFFFFF;
    --bg:             #050505;
    --surface:        #111111;
    --surface-light:  #1A1A1A;
    --accent:         #D4AF37;   /* or */
    --tx:             #FFFFFF;
    --tx-mu:          #B3B3B3;
    --divider:        #2A2A2A;
    --success:        #00C853;
    --warning:        #FFAB00;
    --error:          #FF1744;

    /* Radius */
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 30px;

    /* Spacing */
    --s-xs: 4px;
    --s-sm: 8px;
    --s-md: 16px;
    --s-lg: 24px;
    --s-xl: 32px;

    /* Layout */
    --header-h: 60px;
    --tabbar-h: 70px;
}

/* ────────── RESET ────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html, body { height: 100%; overflow: hidden; }
body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    color: var(--tx);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    overscroll-behavior: none;
}
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea { font: inherit; }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ────────── HEADER (visible uniquement en sous-pages) ────────── */
.ymf-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: calc(var(--header-h) + env(safe-area-inset-top, 0));
    padding-top: env(safe-area-inset-top, 0);
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--tx);
    display: flex; align-items: center;
    z-index: 100;
    border-bottom: 1px solid var(--divider);
}
.ymf-hd-back, .ymf-hd-icon {
    width: var(--header-h); height: var(--header-h);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--tx);
    transition: background 0.15s;
}
.ymf-hd-back:active, .ymf-hd-icon:active { background: rgba(255,255,255,0.08); }
.ymf-hd-title {
    flex: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    text-align: center;
    padding: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

/* Quand l'écran d'accueil est actif, le header est masqué (le hero remplace) */
body[data-screen="home"] .ymf-header { display: none; }

/* ────────── MAIN ────────── */
.ymf-main {
    position: fixed;
    top: 0; left: 0; right: 0;
    bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    user-select: text;
}
body[data-screen]:not([data-screen="home"]) .ymf-main {
    top: calc(var(--header-h) + env(safe-area-inset-top, 0));
}
.ymf-screen { padding: var(--s-md); min-height: 100%; animation: ymfFadeSlide 0.25s ease; }
.ymf-screen[hidden] { display: none; }
@keyframes ymfFadeSlide { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

/* ────────── TAB BAR (5 onglets, dark) ────────── */
.ymf-tabbar {
    position: fixed; bottom: 0; left: 0; right: 0;
    height: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0));
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: #0A0A0A;
    border-top: 1px solid var(--divider);
    display: flex;
    z-index: 100;
}
.ymf-tab {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    color: #888;
    transition: color 0.2s, transform 0.1s;
    position: relative;
}
.ymf-tab.active { color: var(--primary); }
.ymf-tab.active::before {
    content: '';
    position: absolute; top: 0; left: 30%; right: 30%; height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
    box-shadow: 0 0 12px rgba(225,6,0,0.6);
}
.ymf-tab:active { transform: scale(0.92); }
.ymf-tab-ico { font-size: 22px; line-height: 1; }
.ymf-tab-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════
   HOME SCREEN
   ════════════════════════════════════════════════════ */

/* HERO HEADER (image + overlay + logo + notif) — full image visible */
.ymf-hero {
    position: relative;
    aspect-ratio: 16/9; /* préserve les proportions de l'image (paysage) */
    min-height: 280px;  /* mais minimum 280px pour pas être ridicule sur écrans étroits */
    width: 100%;
    margin: calc(-1 * var(--s-md)) calc(-1 * var(--s-md)) 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, #1a0000 0%, #050505 60%);
    display: flex; align-items: flex-end;
    padding: var(--s-lg) var(--s-md);
    padding-top: calc(env(safe-area-inset-top, 0) + var(--s-md));
}
/* Image hero rendue via <img> pour garder les proportions intactes */
.ymf-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
/* Dégradé sombre en bas pour la lisibilité du texte (au-dessus de l'image) */
.ymf-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(5,5,5,0.6) 70%, var(--bg) 100%);
    z-index: 1;
    pointer-events: none;
}
/* Quand pas d'image : fond dégradé + halftone (sur le hero, pas l'image) */
.ymf-hero:not(.has-image)::before {
    background:
        radial-gradient(circle at 70% 30%, rgba(225,6,0,0.4) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0) 50%, var(--bg) 100%);
}
.ymf-hero:not(.has-image)::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 0 0, rgba(225,6,0,0.08) 2px, transparent 3px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 1.5px, transparent 2.5px);
    background-size: 24px 24px, 16px 16px;
    pointer-events: none;
    z-index: 1;
}
/* Logo, notif et texte au-dessus de tout */
.ymf-hero-logo, .ymf-hero-notif, .ymf-hero > div { z-index: 2; }
.ymf-hero-logo {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0) + 16px);
    left: 16px;
    width: 100px;
    z-index: 2;
    filter: drop-shadow(0 4px 16px rgba(225,6,0,0.4));
}
.ymf-hero-notif {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0) + 22px);
    right: 16px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--divider);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    z-index: 2;
    color: var(--tx);
    backdrop-filter: blur(8px);
}
.ymf-hero-notif .badge {
    position: absolute;
    top: 4px; right: 4px;
    width: 10px; height: 10px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid var(--bg);
    animation: ymfPulse 2s infinite;
}
@keyframes ymfPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225,6,0,0.7); }
    50% { box-shadow: 0 0 0 6px rgba(225,6,0,0); }
}
.ymf-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    line-height: 0.95;
    color: var(--tx);
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    z-index: 1;
}
.ymf-hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    z-index: 1;
    font-weight: 700;
}

/* CARTE PROCHAIN ÉVÉNEMENT avec countdown */
.ymf-next-event {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--r-md);
    padding: var(--s-lg);
    margin-top: calc(-1 * var(--s-lg));
    margin-bottom: var(--s-lg);
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.ymf-next-event-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: var(--s-sm);
    font-weight: 700;
}
.ymf-next-event-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: var(--s-sm);
    text-transform: uppercase;
}
.ymf-next-event-meta {
    color: var(--tx-mu);
    font-size: 13px;
    margin-bottom: var(--s-md);
    display: flex; gap: 14px; flex-wrap: wrap;
}

.ymf-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-sm);
    margin-top: var(--s-md);
}
.ymf-cd-cell {
    background: var(--bg);
    border: 1px solid var(--divider);
    border-radius: var(--r-sm);
    padding: var(--s-md) var(--s-xs);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ymf-cd-cell::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent);
    pointer-events: none;
}
.ymf-cd-num {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 16px rgba(225,6,0,0.5);
}
.ymf-cd-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--tx-mu);
    margin-top: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

/* BOUTON "TOUS LES SALONS" — bien visible avant le quick access */
.ymf-all-salons-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #7a0300 100%);
    color: var(--tx);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    padding: var(--s-md) var(--s-lg);
    margin-bottom: var(--s-xl);
    display: flex; align-items: center; gap: var(--s-md);
    text-align: left;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 6px 20px rgba(225,6,0,0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.ymf-all-salons-btn::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.10) 1.5px, transparent 2px);
    background-size: 14px 14px;
    pointer-events: none;
}
.ymf-all-salons-btn:active { transform: scale(0.98); box-shadow: 0 3px 10px rgba(225,6,0,0.4); }
.ymf-asb-ico { font-size: 36px; line-height: 1; flex-shrink: 0; z-index: 1; }
.ymf-asb-body { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; z-index: 1; }
.ymf-asb-body strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 2px;
    text-transform: uppercase;
}
.ymf-asb-body span { font-size: 12px; color: rgba(255,255,255,0.85); }
.ymf-asb-arrow { font-size: 24px; opacity: 0.7; z-index: 1; }

/* BANDEAU "Salon en avant" affiché au-dessus de chaque liste filtrée */
.ymf-featured-banner {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-left: 4px solid var(--primary);
    border-radius: var(--r-md);
    padding: var(--s-md) var(--s-md);
    margin-bottom: var(--s-md);
    cursor: pointer;
    transition: transform 0.1s, border-color 0.15s;
}
.ymf-featured-banner:active { transform: scale(0.98); border-left-color: var(--accent); }
.ymf-fb-label {
    font-family: 'Orbitron', monospace;
    font-size: 10px; letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 700;
}
.ymf-fb-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.ymf-fb-meta { font-size: 13px; color: var(--tx-mu); margin-bottom: 8px; }
.ymf-fb-cta { font-size: 12px; color: var(--primary); font-weight: 600; }

/* QUICK ACCESS GRID 4 */
.ymf-quick-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: var(--s-md);
    text-transform: uppercase;
}
.ymf-quick-grid {
    display: grid;
    /* v3.23.130 : 3 colonnes pour accueillir Food trucks + Contact (6 items 3x2) */
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-sm);
    margin-bottom: var(--s-xl);
}
.ymf-quick-item .ico { font-size: 28px; }
.ymf-quick-item .lbl { font-size: 11px; }
@media (min-width: 480px) {
    .ymf-quick-item .ico { font-size: 32px; }
    .ymf-quick-item .lbl { font-size: 13px; }
}
.ymf-quick-item {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--r-md);
    padding: var(--s-lg) var(--s-md);
    text-align: center;
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
    cursor: pointer;
    color: var(--tx);
}
.ymf-quick-item:active {
    transform: scale(0.95);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(225,6,0,0.25);
}
.ymf-quick-item .ico { font-size: 32px; display: block; margin-bottom: var(--s-sm); }
.ymf-quick-item .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ════════════════════════════════════════════════════
   ÉCRAN LISTE EVENTS (route #events)
   ════════════════════════════════════════════════════ */
.ymf-events-list { display: flex; flex-direction: column; gap: var(--s-md); }
.ymf-event-card {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.ymf-event-card:active {
    transform: scale(0.98);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(225,6,0,0.2);
}
.ymf-event-poster {
    width: 100%; aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #1a0000;
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: var(--s-md);
    isolation: isolate;
}
.ymf-event-poster:not(.has-image)::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 0 0, rgba(255,255,255,0.15) 2px, transparent 3px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 1.2px, transparent 2.2px),
        linear-gradient(135deg, var(--c1, var(--primary)) 0%, var(--c2, #1a0000) 100%);
    background-size: 18px 18px, 12px 12px, 100% 100%;
    z-index: -2;
}
.ymf-event-poster:not(.has-image)::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-55deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 6px, transparent 6px, transparent 28px);
    z-index: -1;
}
.ymf-event-poster.has-image::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 0;
}
.ymf-poster-y {
    position: absolute; bottom: -20px; right: -10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 220px; line-height: 1;
    color: rgba(255,255,255,0.10);
    pointer-events: none; z-index: 0;
}
.ymf-poster-city {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 9vw, 56px);
    letter-spacing: 4px; line-height: 0.95;
    text-shadow: 0 3px 0 rgba(0,0,0,0.3);
    z-index: 1;
}
.ymf-poster-date {
    margin-top: 8px;
    background: rgba(0,0,0,0.7);
    padding: 5px 12px;
    border-radius: var(--r-sm);
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    z-index: 1;
}
.ymf-event-poster.theme-red    { --c1: #E10600; --c2: #5a0000; }
.ymf-event-poster.theme-teal   { --c1: #1BA8A8; --c2: #053737; }
.ymf-event-poster.theme-orange { --c1: #E8941A; --c2: #4a2a00; }
.ymf-event-poster.theme-purple { --c1: #6b3fa0; --c2: #1f1140; }
.ymf-event-poster.theme-dark   { --c1: #1a1a2e; --c2: #050510; }

.ymf-event-body { padding: var(--s-md); }
.ymf-event-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: var(--s-sm);
    text-transform: uppercase;
}
.ymf-event-meta {
    display: flex; flex-wrap: wrap; gap: 14px;
    font-size: 13px;
    color: var(--tx-mu);
}

/* ════════════════════════════════════════════════════
   ÉCRAN DÉTAIL EVENT
   ════════════════════════════════════════════════════ */
.ymf-detail-hero {
    position: relative;
    margin: calc(-1 * var(--s-md)) calc(-1 * var(--s-md)) var(--s-md);
    aspect-ratio: 16/10;
    background-color: #1a0000;
    background-size: cover; background-position: center;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: var(--s-lg) var(--s-md);
    color: var(--tx);
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.ymf-detail-hero:not(.has-image)::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 0 0, rgba(255,255,255,0.15) 2.5px, transparent 3.5px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 1.5px, transparent 2.5px),
        linear-gradient(135deg, var(--primary) 0%, #1a0000 100%);
    background-size: 22px 22px, 14px 14px, 100% 100%;
    z-index: -2;
}
.ymf-detail-hero:not(.has-image)::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-55deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 8px, transparent 8px, transparent 36px);
    z-index: -1;
}
.ymf-detail-hero.has-image::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0) 30%, rgba(5,5,5,0.95) 100%);
    z-index: 0;
}
.ymf-detail-hero h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 8vw, 44px);
    letter-spacing: 3px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.8);
    line-height: 1;
    z-index: 1;
}
.ymf-detail-meta {
    display: flex; flex-wrap: wrap; gap: 16px;
    padding: var(--s-sm) 0 var(--s-md);
    font-size: 14px;
    color: var(--tx-mu);
    border-bottom: 1px solid var(--divider);
    margin-bottom: var(--s-md);
}

/* CTA billetterie style "néon rouge" */
.ymf-detail-cta {
    display: block;
    background: var(--primary);
    color: var(--tx);
    text-align: center;
    padding: var(--s-md);
    border-radius: var(--r-md);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    margin: var(--s-md) 0;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(225,6,0,0.35), 0 0 40px rgba(225,6,0,0.2);
    transition: transform 0.15s;
}
.ymf-detail-cta:active { transform: scale(0.97); }

.ymf-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-sm);
    margin: var(--s-md) 0;
}
.ymf-grid-item {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--r-md);
    padding: var(--s-lg) var(--s-sm);
    text-align: center;
    transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
    color: var(--tx);
}
.ymf-grid-item:active {
    transform: scale(0.95);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(225,6,0,0.25);
}
.ymf-grid-item .ico { font-size: 28px; display: block; margin-bottom: 6px; }
.ymf-grid-item .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ymf-section {
    margin: var(--s-md) 0;
    padding: var(--s-md);
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--r-md);
}
.ymf-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--s-sm);
    text-transform: uppercase;
}
.ymf-section p { font-size: 14px; line-height: 1.5; color: var(--tx-mu); }

/* ────────── COMPTEUR + FILTRES (catégories exposants) ────────── */
.ymf-list-counter {
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--tx-mu);
    text-transform: uppercase;
    margin-bottom: var(--s-sm);
    font-weight: 700;
}
.ymf-filters {
    display: flex; gap: var(--s-sm);
    overflow-x: auto;
    padding: var(--s-sm) 0 var(--s-md);
    margin: 0 calc(-1 * var(--s-md)) var(--s-sm);
    padding-left: var(--s-md); padding-right: var(--s-md);
    scrollbar-width: none;
    border-bottom: 1px solid var(--divider);
}
.ymf-filters::-webkit-scrollbar { display: none; }
.ymf-filter-chip {
    flex-shrink: 0;
    padding: 8px 14px;
    border: 1px solid var(--divider);
    background: var(--surface);
    color: var(--tx);
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.15s;
    white-space: nowrap;
}
.ymf-filter-chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(225,6,0,0.4);
}
.ymf-filter-chip:active { transform: scale(0.95); }

/* ────────── LISTES ────────── */
.ymf-list { display: flex; flex-direction: column; gap: var(--s-sm); }
.ymf-list-item {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--r-md);
    padding: var(--s-md);
    display: flex; align-items: center; gap: 14px;
    transition: border-color 0.15s, transform 0.1s;
}
.ymf-list-item:active { transform: scale(0.98); border-color: var(--primary); }
.ymf-list-item .photo {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--surface-light);
    background-size: cover; background-position: center;
    flex-shrink: 0;
    border: 2px solid var(--divider);
}
.ymf-list-item .body { flex: 1; min-width: 0; }
.ymf-list-item .name {
    font-weight: 700; font-size: 15px;
    margin-bottom: 2px;
    color: var(--tx);
}
.ymf-list-item .sub { font-size: 12px; color: var(--tx-mu); }

/* ────────── BILLETS ────────── */
.ymf-billet-card {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--r-md);
    padding: var(--s-md);
    margin-bottom: var(--s-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ymf-billet-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: 1px;
    text-transform: uppercase;
}
.ymf-billet-prix {
    font-family: 'Orbitron', monospace;
    font-size: 22px; font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 12px rgba(225,6,0,0.4);
}
.ymf-billet-prix.gratuit { color: var(--success); text-shadow: 0 0 12px rgba(0,200,83,0.4); }

/* ────────── FORMULAIRE CONTACT ────────── */
.ymf-form-wrap h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; letter-spacing: 2px;
    color: var(--tx);
    margin-bottom: var(--s-xs);
    text-transform: uppercase;
}
.ymf-form-intro { color: var(--tx-mu); margin-bottom: var(--s-md); font-size: 14px; }
#ymfContactForm label { display: block; margin-bottom: var(--s-md); }
#ymfContactForm label span {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 2px; color: var(--tx-mu);
    margin-bottom: 6px; font-weight: 700;
}
#ymfContactForm input, #ymfContactForm textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--divider);
    border-radius: var(--r-sm);
    background: var(--surface);
    color: var(--tx);
    font-size: 16px;
    transition: border-color 0.15s;
    font-family: 'Inter', sans-serif;
}
#ymfContactForm input:focus, #ymfContactForm textarea:focus {
    outline: 0; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(225,6,0,0.15);
}
.ymf-btn-primary {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: var(--s-md);
    border-radius: var(--r-md);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: 2px;
    margin-top: var(--s-sm);
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(225,6,0,0.3);
}
.ymf-btn-primary:disabled { opacity: 0.5; }
.ymf-form-result {
    margin-top: var(--s-md);
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
}
.ymf-form-result.success { background: rgba(0,200,83,0.15); color: var(--success); border: 1px solid var(--success); }
.ymf-form-result.error   { background: rgba(255,23,68,0.15); color: var(--error); border: 1px solid var(--error); }

/* ────────── INSTALL PROMPT ────────── */
.ymf-install-prompt {
    position: fixed;
    bottom: calc(var(--tabbar-h) + 12px + env(safe-area-inset-bottom, 0));
    left: 12px; right: 12px;
    background: var(--surface);
    border: 1px solid var(--primary);
    color: var(--tx);
    padding: 14px 16px;
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 30px rgba(225,6,0,0.2);
    animation: ymfSlideUp 0.3s ease;
    font-size: 13px;
}
@keyframes ymfSlideUp { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.ymf-install-btn {
    background: var(--primary); color: #fff;
    padding: 10px 18px; border-radius: var(--r-sm);
    font-weight: 700; font-size: 13px;
    margin-right: 8px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.ymf-install-dismiss { color: var(--tx-mu); font-size: 24px; width: 32px; height: 32px; line-height: 1; }

/* ────────── LOADER & ÉTATS VIDES ────────── */
.ymf-loader {
    text-align: center; padding: 60px 20px;
    color: var(--tx-mu);
    font-family: 'Orbitron', monospace;
    font-size: 12px; letter-spacing: 2px;
}
.ymf-empty {
    text-align: center; padding: 50px 20px;
    color: var(--tx-mu); font-size: 14px;
}
.ymf-empty .ico { font-size: 48px; margin-bottom: 12px; display: block; }

/* ════════════════════════════════════════════════════════════════════ */
/* ÉCRAN WELCOME / INSTALL — v3.23.112 */
/* ════════════════════════════════════════════════════════════════════ */
.ymf-welcome {
    position: fixed; inset: 0;
    z-index: 9999;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0608 50%, #2a0a0d 100%);
    color: var(--tx);
    overflow-y: auto;
    display: flex; flex-direction: column;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Bandeau site mini */
.ymf-welcome-topbar {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(225,6,0,0.3);
    flex-wrap: wrap;
}
.ymf-welcome-logo {
    display: inline-flex; align-items: center; gap: 6px;
    color: #fff; text-decoration: none; font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: 2px;
}
.ymf-welcome-logo-mark { font-size: 22px; }
.ymf-welcome-back {
    color: rgba(255,255,255,0.7); text-decoration: none;
    font-size: 13px; padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-sm);
    transition: all 0.2s;
}
.ymf-welcome-back:hover { color: #fff; border-color: var(--primary); background: rgba(225,6,0,0.1); }
.ymf-welcome-billets {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000 !important; text-decoration: none; font-weight: 700;
    padding: 6px 14px; border-radius: var(--r-sm);
    font-size: 13px; letter-spacing: 1px;
}
.ymf-welcome-billets:hover { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

/* Corps welcome */
.ymf-welcome-body {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 30px 20px;
    text-align: center;
    gap: 24px;
}
.ymf-welcome-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 7vw, 52px);
    letter-spacing: 4px; margin: 0;
    background: linear-gradient(135deg, #fff 0%, #f59e0b 50%, var(--primary) 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(225,6,0,0.3);
}
.ymf-welcome-tagline {
    font-size: clamp(14px, 3vw, 17px);
    color: rgba(255,255,255,0.75);
    max-width: 480px; line-height: 1.5;
    margin: 0;
}

/* CTA : carte install + carte QR côte à côte */
.ymf-welcome-cta {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap; justify-content: center;
    margin-top: 12px;
}
.ymf-welcome-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(225,6,0,0.4);
    border-radius: var(--r-md);
    padding: 24px 20px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 30px rgba(225,6,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ymf-welcome-card:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 40px rgba(225,6,0,0.3); }
.ymf-welcome-card-icon { font-size: 48px; }
.ymf-welcome-install-btn {
    background: linear-gradient(135deg, var(--primary), #c00);
    color: #fff; border: none; cursor: pointer;
    padding: 14px 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: 3px;
    border-radius: var(--r-sm);
    box-shadow: 0 4px 14px rgba(225,6,0,0.5);
    transition: all 0.2s;
}
.ymf-welcome-install-btn:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(225,6,0,0.7); }
.ymf-welcome-install-hint { color: rgba(255,255,255,0.5); font-size: 12px; }

/* Séparateur OU */
.ymf-welcome-or {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px; letter-spacing: 4px;
    color: rgba(255,255,255,0.3);
    padding: 0 8px;
}
@media (max-width: 700px) {
    .ymf-welcome-or { padding: 4px 0; }
    .ymf-welcome-cta { flex-direction: column; }
}

/* Carte QR */
.ymf-welcome-card-qr { padding: 16px; }
.ymf-welcome-qr {
    background: #fff;
    padding: 8px;
    border-radius: var(--r-sm);
    width: 160px; height: 160px;
    display: flex; align-items: center; justify-content: center;
}
.ymf-welcome-qr img { width: 100%; height: 100%; image-rendering: pixelated; }
.ymf-welcome-qr-hint { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.4; }

/* Lien skip "continuer dans le navigateur" */
.ymf-welcome-skip {
    background: transparent; border: none; cursor: pointer;
    color: rgba(255,255,255,0.5);
    font-size: 13px; text-decoration: underline;
    padding: 12px;
    transition: color 0.2s;
}
.ymf-welcome-skip:hover { color: rgba(255,255,255,0.85); }

/* Tuto iOS overlay */
.ymf-welcome-ios-tuto {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 30px 24px;
    color: #fff;
}
.ymf-welcome-ios-tuto h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; letter-spacing: 3px;
    margin: 0 0 24px 0; color: var(--primary);
}
.ymf-welcome-ios-tuto ol {
    max-width: 420px; line-height: 1.8; font-size: 16px;
    padding-left: 22px; margin-bottom: 28px;
}
.ymf-welcome-ios-tuto strong { color: #f59e0b; }
.ymf-welcome-ios-tuto button {
    background: var(--primary); color: #fff; border: none;
    padding: 12px 28px; font-family: 'Bebas Neue', sans-serif;
    font-size: 16px; letter-spacing: 2px; border-radius: var(--r-sm);
    cursor: pointer;
}

/* ════════════════════════════════════════════════════
   v3.23.127 : Bottom sheet (fiche détail exposant/guest)
   ════════════════════════════════════════════════════ */
.ymf-sheet-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    display: flex; align-items: flex-end; justify-content: center;
    animation: ymfSheetFadeIn 0.2s ease-out;
}
.ymf-sheet {
    background: var(--surface);
    width: 100%; max-width: 540px;
    max-height: 88vh;
    border-radius: var(--r-md) var(--r-md) 0 0;
    overflow-y: auto;
    padding: var(--s-lg) var(--s-md) calc(var(--s-lg) + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 40px rgba(225,6,0,0.15);
    animation: ymfSheetSlideUp 0.25s ease-out;
    position: relative;
}
/* v3.23.131 : header sticky qui contient fav + share + close (toujours visibles au scroll) */
.ymf-sheet-header {
    position: sticky;
    top: 0;
    z-index: 10;
    margin: calc(-1 * var(--s-lg)) calc(-1 * var(--s-md)) var(--s-md);
    padding: 8px var(--s-md) 14px;
    background: linear-gradient(to bottom, var(--surface) 0%, var(--surface) 70%, rgba(17,17,17,0) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    pointer-events: none; /* le gradient laisse passer les clics */
}
.ymf-sheet-header > * { pointer-events: auto; }
.ymf-sheet-spacer { width: 36px; height: 36px; }
.ymf-sheet-close,
.ymf-sheet-share {
    width: 36px; height: 36px;
    background: rgba(26,26,26,0.85);
    color: var(--tx);
    border: none; border-radius: 50%;
    font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.45);
    transition: background 0.15s;
}
.ymf-sheet-close:hover { background: var(--primary); }
.ymf-sheet-share { font-size: 20px; }
.ymf-sheet-share:hover { background: var(--accent); color: #000; }
/* Grabber : petite barre horizontale tout en haut comme sur les sheets iOS/Android natifs */
.ymf-sheet-grabber {
    width: 36px; height: 4px;
    background: var(--divider);
    border-radius: 2px;
    margin: -16px auto 6px;
    pointer-events: none;
}
.ymf-sheet h2 {
    margin: 0 0 4px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; letter-spacing: 1px; color: var(--tx);
}
.ymf-sheet .ymf-sheet-sub {
    color: var(--tx-mu); font-size: 13px; margin-bottom: var(--s-md);
}
.ymf-sheet .ymf-chip {
    display: inline-block; background: var(--surface-light);
    color: var(--accent); padding: 4px 12px; margin: 4px 4px 4px 0;
    border-radius: 999px; font-size: 12px; letter-spacing: 0.5px;
}
.ymf-sheet .ymf-sheet-section { margin: var(--s-md) 0; }
.ymf-sheet .ymf-sheet-section-title {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--primary); margin-bottom: 6px; font-weight: 700;
}
.ymf-sheet .ymf-sheet-desc {
    color: var(--tx); font-size: 14px; line-height: 1.5;
    white-space: pre-wrap; word-wrap: break-word;
}
.ymf-sheet .ymf-sheet-links { display: flex; flex-wrap: wrap; gap: 8px; }
.ymf-sheet .ymf-sheet-link {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--surface-light); color: var(--tx);
    padding: 8px 14px; border-radius: 999px;
    text-decoration: none; font-size: 13px;
}
.ymf-sheet .ymf-sheet-link:hover { background: var(--primary); color: #fff; }
.ymf-list-item.clickable {
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}
.ymf-list-item.clickable:hover { background: var(--surface-light); }
.ymf-list-item.clickable:active { transform: scale(0.98); }
@keyframes ymfSheetFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ymfSheetSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ════════════════════════════════════════════════════
   v3.23.129 : Bouton favori étoile dans la sheet
   ════════════════════════════════════════════════════ */
/* v3.23.131 : fav passe dans le header sticky (plus de position absolute) */
.ymf-sheet-fav {
    width: 36px; height: 36px;
    background: rgba(26,26,26,0.85); color: var(--tx-mu);
    border: none; border-radius: 50%;
    font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.45);
    transition: all 0.2s;
}
.ymf-sheet-fav:hover { background: var(--accent); color: #000; }
.ymf-sheet-fav.active {
    background: var(--accent); color: #000;
    box-shadow: 0 0 12px rgba(212,175,55,0.45);
}

/* Bouton "Mes favoris" sur l'écran d'accueil */
.ymf-favoris-btn {
    display: flex; align-items: center; gap: 12px;
    width: 100%; padding: 14px 16px; margin: 12px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a00 100%);
    border: 2px solid var(--accent);
    color: var(--tx); cursor: pointer;
    border-radius: var(--r-sm);
    font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px;
    text-align: left;
}
.ymf-favoris-btn:hover { background: linear-gradient(135deg, #2a2a2a 0%, #3a2a00 100%); }
.ymf-favoris-btn .ico { font-size: 28px; color: var(--accent); }
.ymf-favoris-btn strong { font-size: 17px; }
.ymf-favoris-btn span { font-size: 12px; color: var(--tx-mu); display: block; letter-spacing: 0; font-family: 'Inter', sans-serif; }

/* Section dans la page favoris */
.ymf-favoris-section { margin: var(--s-lg) 0; }
.ymf-favoris-section-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 20px;
    letter-spacing: 2px; color: var(--accent); margin: 0 0 var(--s-sm);
    border-bottom: 1px solid var(--divider); padding-bottom: 6px;
}

/* ════════════════════════════════════════════════════
   v3.23.130 : Lightbox plein écran (zoom photo galerie)
   ════════════════════════════════════════════════════ */
.ymf-lightbox-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 1100;          /* au-dessus de la sheet (z 999) */
    display: flex;
    align-items: center; justify-content: center;
    cursor: zoom-out;
    animation: ymfLightboxFadeIn 0.18s ease-out;
}
.ymf-lightbox-img {
    max-width: 95vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    user-select: none;
    -webkit-user-drag: none;
}
.ymf-lightbox-close {
    position: fixed; top: max(20px, env(safe-area-inset-top));
    right: 20px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.18); color: #fff;
    border: none; border-radius: 50%;
    font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
}
.ymf-lightbox-close:hover { background: var(--primary); }
.ymf-lightbox-prev,
.ymf-lightbox-next {
    position: fixed; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.18); color: #fff;
    border: none; border-radius: 50%;
    font-size: 32px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
    line-height: 1;
}
.ymf-lightbox-prev:hover,
.ymf-lightbox-next:hover { background: var(--primary); }
.ymf-lightbox-prev { left: 12px; }
.ymf-lightbox-next { right: 12px; }
.ymf-lightbox-counter {
    position: fixed; bottom: max(24px, env(safe-area-inset-bottom));
    left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,0.65); color: #fff;
    padding: 6px 14px; border-radius: 999px;
    font-family: monospace; font-size: 13px;
    backdrop-filter: blur(8px);
}
@keyframes ymfLightboxFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ════════════════════════════════════════════════════
   v3.23.131 : Carousel horizontal scroll-snap (galerie photos)
   ════════════════════════════════════════════════════ */
.ymf-photo-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    /* Tire la galerie aux bords pour effet "edge-to-edge" */
    margin: 0 calc(-1 * var(--s-md));
    padding: 4px var(--s-md) 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;     /* Firefox */
}
.ymf-photo-carousel::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.ymf-photo-carousel-item {
    flex: 0 0 75%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    border-radius: var(--r-md);
    background-size: cover;
    background-position: center;
    scroll-snap-align: center;
    cursor: zoom-in;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: transform 0.15s;
}
.ymf-photo-carousel-item:active {
    transform: scale(0.97);
}

/* Hint affiché 1 fois max (storage flag) */
.ymf-carousel-hint {
    font-size: 12px;
    color: var(--tx-mu);
    text-align: center;
    padding: 4px 12px 8px;
    background: rgba(212,175,55,0.06);
    border-radius: var(--r-sm);
    margin-bottom: 6px;
    animation: ymfHintBlink 2s ease-in-out 1;
}
@keyframes ymfHintBlink {
    0%   { opacity: 0; transform: translateY(-4px); }
    20%  { opacity: 1; transform: translateY(0); }
    80%  { opacity: 1; }
    100% { opacity: 0.7; }
}

/* ════════════════════════════════════════════════════
   v3.23.137 : Modal d'aide pour permissions push (denied / granted)
   ════════════════════════════════════════════════════ */
.ymf-push-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.78);
    z-index: 1050;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    animation: ymfSheetFadeIn 0.18s ease-out;
}
.ymf-push-modal {
    background: var(--surface);
    width: 100%; max-width: 480px;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: var(--r-md);
    padding: 24px 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(225,6,0,0.2);
    animation: ymfSheetSlideUp 0.22s ease-out;
}
.ymf-push-modal-close {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: var(--surface-light); color: var(--tx);
    border: none; border-radius: 50%;
    font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.ymf-push-modal-close:hover { background: var(--primary); }
.ymf-push-modal-title {
    margin: 0 36px 16px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px; letter-spacing: 1px;
    color: var(--tx);
}
.ymf-push-modal p {
    color: var(--tx);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 8px;
}
.ymf-push-modal-tag {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 12px 0 10px;
}
.ymf-push-modal-steps ol {
    margin: 8px 0 0 22px;
    padding: 0;
    color: var(--tx);
}
.ymf-push-modal-steps li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 14px;
}
.ymf-push-modal-btn-secondary {
    background: var(--surface-light);
    color: var(--tx-mu);
    border: 1px solid var(--divider);
    padding: 10px 16px;
    border-radius: var(--r-sm);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}
.ymf-push-modal-btn-secondary:hover {
    background: var(--error);
    color: #fff;
    border-color: var(--error);
}
