/* ============================================
   THEME — LOFI JAPANESE
   Mint + Purple, adapted from simonlacroix.ca
   Loaded AFTER style.css.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&family=Noto+Serif+JP:wght@200;300;400;500;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg: #1a1a2e;
    --bg-deep: #101024;
    --text: #edf5f0;
    --text-soft: #b0c4b8;
    --text-muted: #6b8078;
    --mint: #5de0b8;
    --mint-soft: rgba(93, 224, 184, 0.15);
    --mint-glow: rgba(93, 224, 184, 0.28);
    --accent: #7c3aed;
    --accent-hover: #8b5cf6;
    --accent-deep: #6d28d9;
    --accent-hot: #a855f7;
    --accent-glow: rgba(124, 58, 237, 0.35);
    --line: rgba(93, 224, 184, 0.14);
    --line-hover: rgba(93, 224, 184, 0.4);
    --radius: 18px;
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-mono: 'Space Mono', monospace;
}

/* --- Base --- */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

::selection { background: var(--accent); color: #fff; }

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    letter-spacing: 0.02em;
    min-height: 100vh;
    position: relative;
}

/* --- Video Background --- */
.bg-video {
    position: fixed;
    top: -2%;
    left: -2%;
    width: 104vw;
    height: 104vh;
    object-fit: cover;
    z-index: -3;
    filter: brightness(0.4) saturate(0.6) contrast(1.15) blur(0.5px);
    pointer-events: none;
}

/* --- Overlays --- */
.bg-dark {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(93, 224, 184, 0.07) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 0%, rgba(124, 58, 237, 0.22) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(124, 58, 237, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at center, rgba(26, 26, 46, 0.3) 0%, rgba(10, 10, 25, 0.88) 100%);
}

.grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.bg-scanlines {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.25) 2px,
        rgba(0, 0, 0, 0.25) 3px
    );
    opacity: 0.55;
}

.bg-scanlines::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 140px 50px rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

/* original .ambient stays hidden */
.ambient { display: none; }

/* --- Decorative kanji --- */
.deco-kanji {
    position: fixed;
    font-family: var(--font-serif);
    color: rgba(93, 224, 184, 0.08);
    font-size: 16rem;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    animation: kanjiFloat 8s ease-in-out infinite;
}

.deco-kanji.top-right  { top: -2rem; right: -3rem; }
.deco-kanji.bottom-left {
    bottom: -3rem; left: -2rem;
    animation-delay: -4s;
}

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

/* --- Vertical JP text --- */
.vertical-text {
    position: fixed;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

/* --- Container --- */
.container {
    width: min(720px, 92vw);
    margin: 0 auto;
    padding: 48px 0 80px;
    position: relative;
    z-index: 3;
}

/* --- Hero --- */
.hero {
    text-align: center;
    padding: 8px 12px 32px;
    animation: fadeRise 0.9s ease both;
    position: relative;
}

/* --- Brand logo (torii + name) --- */
.brand-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 0 auto 18px;
    text-decoration: none;
    animation: fadeRise 1s 0.05s ease both;
}

.brand-torii {
    width: 64px;
    height: 64px;
    display: block;
    filter: drop-shadow(0 0 16px rgba(93, 224, 184, 0.55)) brightness(1.2);
    animation: toriiBreath 4s ease-in-out infinite 1s;
    transform-origin: center bottom;
    transition: filter 0.4s;
}

.brand-name {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(1.6rem, 4.5vw, 2.1rem);
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1;
}

.brand-logo:hover .brand-torii {
    filter: drop-shadow(0 0 22px rgba(93, 224, 184, 0.75)) brightness(1.35);
}

@keyframes toriiBreath {
    0%, 100% { filter: drop-shadow(0 0 16px rgba(93, 224, 184, 0.55)) brightness(1.2); }
    50%      { filter: drop-shadow(0 0 22px rgba(93, 224, 184, 0.75)) brightness(1.35); }
}

/* hide original image logo if ever present */
.hero > img.logo { display: none; }

.hero-sub {
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--text-soft);
    margin: 0 auto;
    max-width: 520px;
    line-height: 1.7;
    font-size: 1.02rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* --- Lang switcher --- */
.lang-switcher {
    display: inline-flex;
    gap: 0;
    margin-top: 24px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lang-switcher button {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-soft);
    background: transparent;
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-switcher button:hover {
    color: var(--mint);
    text-shadow: 0 0 8px var(--mint-glow);
}

.lang-switcher button.is-active {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent-hover));
    color: #fff;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

/* --- Cards (glass morphism) --- */
.card,
.intro,
.section {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.card::before,
.intro::before,
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mint), var(--accent-hover), transparent);
    opacity: 0.55;
}

.intro {
    margin-top: 8px;
    margin-bottom: 22px;
    padding: 28px 30px;
    animation: fadeRise 0.9s 0.15s ease both;
}

.section {
    margin-top: 20px;
    padding: 28px 30px;
}

/* --- Eyebrow (home : mint) --- */
.eyebrow {
    margin: 0 0 12px;
    font-family: var(--font-sans);
    color: var(--mint);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 500;
    text-shadow: 0 0 10px var(--mint-glow);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Eyebrow sur les pages internes (trailer, websites, etc.) : vert + lisible */
.trailer-shell .eyebrow,
.websites-shell .eyebrow,
.trailer-head .eyebrow,
.websites-head .eyebrow {
    font-family: var(--font-sans);
    color: var(--mint);
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 500;
    text-shadow: 0 0 10px var(--mint-glow);
}

/* Titre des pages internes */
.trailer-head h2,
.websites-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 3.3vw, 1.85rem);
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0 0 10px;
}

.trailer-head .lead,
.websites-head .lead {
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Back-link en mauve */
.back-link {
    color: #a78bfa !important;
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.3);
    transition: color 0.25s, text-shadow 0.25s;
}

.back-link:hover {
    color: #c4b5fd !important;
    text-shadow: 0 0 12px rgba(196, 181, 253, 0.5);
}

.intro h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    margin: 0 0 8px;
    font-size: clamp(1.7rem, 4.8vw, 2.3rem);
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: var(--text);
    position: relative;
    padding-bottom: 1.2rem;
}

.intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.8rem;
    height: 2px;
    background: linear-gradient(90deg, var(--mint), var(--accent-hover));
    box-shadow: 0 0 12px var(--mint-glow);
    border-radius: 2px;
}

.lead {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-weight: 300;
}

/* --- Stack / Link buttons --- */
.stack {
    display: grid;
    gap: 12px;
}

.link-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    padding: 1.15rem 1.5rem;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeRise 0.5s ease both;
    animation-delay: calc(var(--i, 0) * 60ms + 0.3s);
    position: relative;
    overflow: hidden;
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mint), var(--accent-hover), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.link-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(93, 224, 184, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.link-btn:hover,
.link-btn:focus-visible {
    transform: translateX(4px);
    border-color: var(--line-hover);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 8px 32px rgba(93, 224, 184, 0.1);
    outline: none;
}

.link-btn:hover::before,
.link-btn:focus-visible::before { opacity: 1; }
.link-btn:hover::after,
.link-btn:focus-visible::after  { opacity: 1; }

.left {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.left strong {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 6px rgba(93, 224, 184, 0.12), 0 0 12px var(--mint-glow);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.link-btn:hover .dot {
    transform: scale(1.2);
}

.right {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.right b {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s;
    font-weight: 400;
}

.link-btn:hover .right {
    color: var(--mint);
    text-shadow: 0 0 8px var(--mint-glow);
}

.link-btn:hover .right b {
    transform: translateX(5px);
}

.internal-tag {
    color: var(--mint) !important;
}

/* --- Generic button --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0b1a15;
    background: var(--mint);
    border: 1px solid var(--mint);
    border-radius: 999px;
    padding: 0.85rem 1.6rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(93, 224, 184, 0.3);
    transition: all 0.3s;
    font-weight: 700;
}

.btn:hover {
    transform: translateY(-2px);
    background: #6ee9c4;
    box-shadow: 0 12px 28px rgba(93, 224, 184, 0.45);
}

/* --- Forms --- */
.form { display: grid; gap: 14px; }

input, textarea, select {
    width: 100%;
    font-family: var(--font-sans);
    border: 1px solid var(--line);
    background: rgba(15, 16, 22, 0.55);
    color: var(--text);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

input::placeholder, textarea::placeholder { color: var(--text-muted); }

input:hover, textarea:hover, select:hover {
    border-color: #c4b5fd;
}

input:focus, textarea:focus, select:focus {
    border-color: #c4b5fd;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(196, 181, 253, 0.25);
}

/* Portfolio — override rouge : lavande pâle au hover */
.portfolio-card {
    border-color: var(--line) !important;
}

.portfolio-card:hover {
    border-color: #c4b5fd !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28), 0 0 20px rgba(196, 181, 253, 0.2) !important;
}

.portfolio-shot-wrap {
    border-radius: 12px;
    border: 1px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover .portfolio-shot-wrap {
    border-color: #c4b5fd !important;
    box-shadow: 0 0 16px rgba(196, 181, 253, 0.25);
}

/* Portfolio-link (bouton "voir le site") — mauve (comme playlist active) */
.portfolio-link {
    background: rgba(124, 58, 237, 0.18) !important;
    border: 1px solid var(--accent-hover) !important;
    color: #fff !important;
}

.portfolio-link:hover {
    background: rgba(124, 58, 237, 0.3) !important;
    border-color: var(--accent-hot) !important;
}

/* Websites-shell portfolio-slide / featured — overrides rouges */
.websites-shell .portfolio-slide,
.websites-shell .portfolio-card.portfolio-slide {
    border-color: var(--line) !important;
}

.websites-shell .portfolio-slide:hover,
.websites-shell .portfolio-slide.is-link:hover,
.websites-shell .portfolio-card.portfolio-slide:hover {
    border-color: #c4b5fd !important;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 18px rgba(196, 181, 253, 0.2) !important;
}

.websites-shell .portfolio-featured-media {
    border-color: rgba(196, 181, 253, 0.32) !important;
}

/* Flèches de navigation du slider — lavande pâle */
.websites-shell .portfolio-nav,
.websites-shell .portfolio-slider-shell .portfolio-nav {
    color: #c4b5fd !important;
}

.websites-shell .portfolio-nav:hover,
.websites-shell .portfolio-slider-shell .portfolio-nav:hover {
    background: rgba(196, 181, 253, 0.18) !important;
    border-color: #c4b5fd !important;
    color: #ddd6fe !important;
}

.websites-shell .portfolio-featured-overlay {
    background: rgba(196, 181, 253, 0.2) !important;
    border: 1px solid rgba(196, 181, 253, 0.4) !important;
}

/* Form inputs des pages trailer : lavande pâle au hover uniquement */
body:not(.admin-page) .trailer-shell .form input:hover,
body:not(.admin-page) .trailer-shell .form textarea:hover,
body:not(.admin-page) .trailer-shell .form select:hover {
    border-color: #c4b5fd !important;
}

body:not(.admin-page) .trailer-shell .form input:focus,
body:not(.admin-page) .trailer-shell .form textarea:focus,
body:not(.admin-page) .trailer-shell .form select:focus {
    border-color: #c4b5fd !important;
    box-shadow: 0 0 0 4px rgba(196, 181, 253, 0.25) !important;
}

label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--mint);
    margin-bottom: 0.4rem;
    display: block;
}

/* --- Links inside content --- */
.section a:not(.btn):not(.link-btn),
.card a:not(.btn):not(.link-btn),
.intro a:not(.btn):not(.link-btn) {
    color: var(--mint);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, text-shadow 0.3s;
}

.section a:not(.btn):not(.link-btn):hover,
.card a:not(.btn):not(.link-btn):hover,
.intro a:not(.btn):not(.link-btn):hover {
    border-bottom-color: var(--mint);
    text-shadow: 0 0 8px var(--mint-glow);
}

/* --- Section typography --- */
.section h1, .section h2, .section h3,
.card h1, .card h2, .card h3,
.intro h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text);
}

.section h3, .card h3 {
    color: var(--mint);
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    padding-left: 1.2rem;
    position: relative;
}

.section h3::before,
.card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 65%;
    background: linear-gradient(180deg, var(--mint), var(--accent-hover));
    border-radius: 2px;
    box-shadow: 0 0 10px var(--mint-glow);
}

/* --- Animations --- */
@keyframes fadeRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Footer --- */
footer {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-align: center;
    padding: 2.5rem 0 1rem;
    margin-top: 3rem;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 3;
}

/* --- Video wrap --- */
.video-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 18px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* --- Buttons : vert (mint) --- */
body:not(.admin-page) .trailer-shell .form button,
.page-booking .booking-form-wrap button[type='submit'] {
    background: var(--mint) !important;
    color: #0b1a15 !important;
    border: 1px solid var(--mint) !important;
    box-shadow: 0 8px 22px rgba(93, 224, 184, 0.3) !important;
    font-weight: 700 !important;
    transition: all 0.3s !important;
}

body:not(.admin-page) .trailer-shell .form button:hover,
.page-booking .booking-form-wrap button[type='submit']:hover {
    background: #6ee9c4 !important;
    box-shadow: 0 12px 28px rgba(93, 224, 184, 0.45) !important;
    transform: translateY(-2px);
}

/* --- Playlist (bandes-annonces) — mauve --- */
.player-frame {
    position: relative;
    background: rgba(15, 16, 22, 0.6) !important;
    border: 2px solid #c4b5fd !important;
    border-radius: var(--radius) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(196, 181, 253, 0.25) !important;
    overflow: hidden;
}

.player-frame video {
    background: #07080e;
    accent-color: var(--accent-hover);
}

.playlist { display: grid; gap: 8px; }

.playlist-item {
    width: 100%;
    border: 1px solid rgba(124, 58, 237, 0.22) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--text);
    border-radius: 12px !important;
    padding: 12px 14px !important;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s !important;
}

.playlist-item:hover {
    border-color: rgba(168, 85, 247, 0.6) !important;
    background: rgba(124, 58, 237, 0.08) !important;
}

.playlist-item.is-active {
    border-color: var(--accent-hover) !important;
    background: rgba(124, 58, 237, 0.18) !important;
}

.playlist-title {
    display: block;
    font-weight: 500;
    color: var(--text);
}

.playlist-item.is-active .playlist-title { color: #fff; }

.playlist-desc {
    display: block;
    color: #c4b5fd;
    font-size: 0.85rem;
    margin-top: 3px;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.playlist-item.is-active .playlist-desc {
    color: #ddd6fe;
    opacity: 1;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .vertical-text { display: none; }
    .deco-kanji    { font-size: 9rem; }
    .container     { padding: 28px 0 60px; }
    .intro, .section { padding: 22px 20px; }
    .link-btn      { padding: 1rem 1.2rem; }
    .hero::before  { width: 48px; height: 48px; }

    /* Pages internes : textes plus compacts sur mobile */
    .trailer-shell,
    .websites-shell { padding: 18px; }

    .trailer-shell .eyebrow,
    .websites-shell .eyebrow,
    .trailer-head .eyebrow,
    .websites-head .eyebrow { font-size: 0.7rem; letter-spacing: 0.14em; }

    .trailer-head .lead,
    .websites-head .lead,
    .trailer-shell .lead,
    .websites-shell .lead { font-size: 0.96rem; line-height: 1.6; }

    .trailer-shell .back-link,
    .websites-shell .back-link { font-size: 0.85rem; margin-bottom: 10px; }

    .playlist-title { font-size: 1rem; }
    .playlist-desc  { font-size: 0.82rem; }
    .playlist-item  { padding: 11px 13px !important; }

    .trailer-form h3 { font-size: 1.08rem; }
    .trailer-form,
    .trailer-shell .form input,
    .trailer-shell .form textarea,
    .trailer-shell .form select,
    .trailer-shell .form button { font-size: 0.96rem; }

    .benefits li { font-size: 0.92rem; padding: 10px 12px; }
}
