/* ===================================
    Rardo — portfolio mash-up over Crafto
    Primary:   interactive-portfolio (sticky image hero, push menu, Bebas Neue)
    Mixed in:  horizontal-portfolio (threeD letter menu + hover-reveal)
               scattered-portfolio  (scattered collage + round magic cursor)
               vertical-portfolio   (sticky title, vertical project stack)
               portfolio-transform / metro grids (card art)
               minimal-portfolio    (studio block)
    Radius 0/2/4/6 (default 4) · compact spacing · no shadows
====================================== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --orange: #ff6a00;
    --orange-hot: #ff7a1a;
    --black: #0a0a0a;
    --ink: #121211;
    --line: #262624;
    --bone: #f3ece0;
    --muted: #8d877f;
    --base-color: #ff6a00;
    --dark-gray: #0a0a0a;
    --medium-gray: #8d877f;
    --alt-font: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --primary-font: 'Inter', sans-serif;
    --mono: 'Space Grotesk', sans-serif;
    --r: 4px;
}

html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
body { background: var(--black); color: #cbc4b9; font-family: var(--primary-font); font-size: 17px; line-height: 28px; }
a { color: var(--orange); }
a:hover { color: var(--bone); }
::selection { background: var(--orange); color: var(--black); }
img { max-width: 100%; height: auto; }
section { padding: 120px 0; position: relative; }
.alt-font, .display { font-family: var(--alt-font) !important; font-weight: 400; letter-spacing: 0; }
.display { color: var(--bone); line-height: .88; text-transform: uppercase; }
.text-orange { color: var(--orange) !important; }
.text-bone { color: var(--bone) !important; }
.text-outline-o { color: transparent; -webkit-text-stroke: 2px var(--orange); }
.text-outline-b { color: transparent; -webkit-text-stroke: 1.5px var(--bone); }
.eyebrow { font-family: var(--mono); font-weight: 700; font-size: 13px; line-height: 20px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.sec-title { font-size: clamp(64px, 9vw, 150px); margin: 0 0 16px; }

/* ---------- Header (interactive-portfolio: transparent + push button) ---------- */
.rardo-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; mix-blend-mode: normal; pointer-events: none; }
.rardo-header { transition: background .3s; }
.rardo-header.scrolled { background: var(--black); border-bottom: 2px solid var(--orange); }
.rardo-header .bar { transition: padding .3s; display: flex; align-items: center; justify-content: space-between; padding: 24px 40px; }
.rardo-header.scrolled .bar { padding-top: 12px; padding-bottom: 12px; }
.rardo-header a, .rardo-header button { pointer-events: auto; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 23px; width: auto; display: block; }
.brand span { font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 3px; color: var(--bone); opacity: .7; }
.push-button { display: flex; align-items: center; gap: 12px; background: var(--orange); border: 0; color: var(--black); font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; padding: 8px 12px; border-radius: var(--r); cursor: pointer; }
.push-button .lines { display: grid; gap: 4px; }
.push-button .lines i { display: block; width: 18px; height: 2px; background: var(--black); transition: transform .25s; }
.push-button .lines i:first-child { width: 12px; }
.show-menu .push-button .lines i:first-child { transform: translateY(3px) rotate(45deg); width: 18px; }
.show-menu .push-button .lines i:last-child { transform: translateY(-3px) rotate(-45deg); }
.push-button:hover { background: var(--bone); }
.show-menu .rardo-header, .show-menu .rardo-header.scrolled { background: transparent; border-color: transparent; }
.show-menu .brand img { filter: brightness(0); }
.show-menu .brand span { color: var(--black); }
.show-menu .push-button { background: var(--black); color: var(--orange); }
.show-menu .push-button .lines i { background: var(--orange); }

/* hamburger-menu-simple */
.push-menu { position: fixed; inset: 0; z-index: 999; background: var(--orange); color: var(--black); display: flex; align-items: center; clip-path: inset(0 0 100% 0); transition: clip-path .55s cubic-bezier(.77,0,.18,1); }
.show-menu .push-menu { clip-path: inset(0 0 0 0); }
.push-menu .menu-item-list { list-style: none; padding: 0; margin: 0; counter-reset: m; }
.push-menu .nav-link { display: flex; align-items: baseline; gap: 16px; font-family: var(--alt-font); font-size: clamp(48px, 9vh, 110px); line-height: .95; color: var(--black); text-decoration: none; transition: padding .25s, color .2s; padding: 0; }
.push-menu .nav-link::before { counter-increment: m; content: "0" counter(m); font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: 1px; }
.push-menu .nav-link:hover { padding-left: 16px; color: var(--bone); -webkit-text-stroke: 2px var(--black); }
.push-menu .menu-side { font-family: var(--mono); font-weight: 500; font-size: 16px; line-height: 26px; }
.push-menu .menu-side img { width: 100%; max-width: 360px; display: block; margin-bottom: 20px; }
.push-menu .menu-side b { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.push-menu a.inline { color: var(--black); font-weight: 700; }
body.show-menu { overflow: hidden; }

/* ---------- Hero (interactive-portfolio sticky-hero) ---------- */
.sticky-hero { height: 100vh; min-height: 640px; position: relative !important; overflow: hidden; background: var(--black); padding: 0; }
.sticky-hero .bg-overlay { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity .5s ease, transform 1.2s ease; }
.sticky-hero .bg-overlay.active { opacity: .5; transform: scale(1); }
.sticky-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(10,10,10,.1), rgba(10,10,10,.85) 80%); pointer-events: none; }
.sticky-hero .hero-slides { position: relative; z-index: 3; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 72px 40px 90px; }
.sticky-hero .hero-slide { display: flex; flex: none; height: auto !important; min-height: 0; align-items: center; gap: 24px; width: fit-content; cursor: default; }
.sticky-hero .hero-title { font-family: var(--alt-font); text-transform: uppercase; font-size: clamp(64px, 15vh, 200px); line-height: .86; color: transparent; -webkit-text-stroke: 1.5px rgba(243,236,224,.55); transition: color .25s, -webkit-text-stroke-color .25s, transform .3s; }
.sticky-hero .hero-slide.active .hero-title { color: var(--orange); -webkit-text-stroke-color: var(--orange); transform: translateX(12px); }
.sticky-hero .hero-meta { display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateX(-10px); transition: opacity .3s, transform .3s; font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--bone); max-width: 300px; line-height: 20px; }
.sticky-hero .hero-meta::before { content: ""; width: 30px; height: 2px; background: var(--bone); flex: none; }
.sticky-hero .hero-slide.active .hero-meta { opacity: 1; transform: none; }
.hero-card { position: absolute; z-index: 3; right: 40px; top: 50%; transform: translateY(-50%); width: min(38vw, 520px); text-align: right; }
.hero-card img { width: 100%; height: auto; display: block; }
.hero-card p { font-family: var(--mono); font-weight: 500; color: var(--bone); font-size: 18px; line-height: 28px; margin: 8px 0 16px auto; max-width: 420px; }
.hero-card .stamp { display: inline-block; background: var(--orange); color: var(--black); font-family: var(--alt-font); font-size: 26px; letter-spacing: 1px; padding: 2px 12px 0; border-radius: 2px; transform: rotate(-3deg); }
.home-page-footer { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 24px 40px; display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--bone); }
.home-page-footer .hint { display: flex; align-items: center; gap: 10px; }
.home-page-footer .hint i { width: 32px; height: 32px; border-radius: var(--r); background: var(--orange); color: var(--black); display: grid; place-items: center; font-style: normal; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn-punch { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: var(--black) !important; border: 2px solid var(--orange); font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; padding: 12px 18px; border-radius: var(--r); text-decoration: none; transition: transform .15s, background .15s, box-shadow .15s; }
.btn-punch:hover { background: var(--bone); border-color: var(--bone); transform: translate(-3px,-3px); box-shadow: 3px 3px 0 var(--orange); }
.btn-line { display: inline-flex; align-items: center; gap: 10px; color: var(--bone) !important; border: 2px solid var(--bone); font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; padding: 12px 18px; border-radius: var(--r); text-decoration: none; }
.btn-line:hover { border-color: var(--orange); color: var(--orange) !important; }

/* ---------- Ticker ---------- */
.band { background: var(--orange); color: var(--black); overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--alt-font); font-size: clamp(40px, 5.5vw, 76px); line-height: 1; padding: 12px 0 6px; text-transform: uppercase; white-space: nowrap; }
.marquee i { font-style: normal; padding: 0 28px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Pitch (minimal/interactive big typography) ---------- */
.pitch .lead-big { font-family: var(--alt-font); text-transform: uppercase; color: var(--bone); font-size: clamp(44px, 5.4vw, 88px); line-height: .95; }
.pitch .lead-big em { font-style: normal; color: var(--orange); }
.moves { margin-top: 64px; border-top: 1px solid var(--line); }
.move { display: grid; grid-template-columns: 90px 1fr 1.2fr 300px; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); transition: background .2s; }
.move:hover { background: var(--ink); }
.move .n { font-family: var(--mono); font-weight: 700; color: var(--orange); font-size: 14px; letter-spacing: 1px; padding-left: 8px; }
.move h3 { font-family: var(--alt-font); font-weight: 400; color: var(--bone); font-size: clamp(48px, 5vw, 80px); line-height: .9; margin: 0; text-transform: uppercase; transition: color .2s; }
.move:hover h3 { color: var(--orange); }
.move p { margin: 0; }
.move img { width: 100%; aspect-ratio: 416/250; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); display: block; filter: grayscale(1) contrast(1.1); transition: filter .3s; }
.move:hover img { filter: none; }

/* ---------- Rogues (horizontal-portfolio threeD-letter-menu) ---------- */
.threeD-letter-menu { background: var(--black); overflow: hidden; }
.threeD-letter-menu .menu-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0 12px; }
.threeD-letter-menu .menu-item { position: relative; padding: 0 24px; }
.threeD-letter-menu .menu-item .idx { position: absolute; top: 12px; left: 4px; font-family: var(--alt-font); font-size: 34px; color: transparent; -webkit-text-stroke: 1px var(--muted); }
.threeD-letter-menu .menu-item-text { display: block; font-family: var(--alt-font); font-size: clamp(64px, 8.4vw, 140px); line-height: 1; text-transform: uppercase; color: var(--bone); text-decoration: none; perspective: 600px; }
.threeD-letter-menu .menu-item-text .word-wrap { position: relative; display: block; }
.threeD-letter-menu .menu-item-text .layer { display: block; }
.threeD-letter-menu .menu-item-text .word { display: inline-block; position: relative; overflow: hidden; vertical-align: top; white-space: nowrap; }
.threeD-letter-menu .menu-item-text .ch { display: inline-block; transition: transform .45s cubic-bezier(.2,.8,.2,1); transition-delay: calc(var(--i) * 18ms); }
.threeD-letter-menu .menu-item-text .clone { position: absolute; left: 0; top: 0; width: 100%; color: var(--orange); }
.threeD-letter-menu .menu-item-text .clone .ch { transform: translateY(100%) rotateX(-90deg); transform-origin: top; }
.threeD-letter-menu .menu-item:hover .base .ch { transform: translateY(-100%) rotateX(90deg); transform-origin: bottom; }
.threeD-letter-menu .menu-item:hover .clone .ch { transform: none; }
.threeD-letter-menu .menu-item .sep { font-family: var(--alt-font); color: var(--orange); font-size: clamp(40px, 5vw, 80px); }
.hover-reveal { position: fixed; left: 0; top: 0; width: 300px; height: 300px; pointer-events: none; opacity: 0; z-index: 50; transition: opacity .3s; }
.hover-reveal.show { opacity: 1; }
.hover-reveal__inner { width: 100%; height: 100%; overflow: hidden; border-radius: var(--r); border: 3px solid var(--orange); transform: scale(.6); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.hover-reveal.show .hover-reveal__inner { transform: scale(1) rotate(-3deg); }
.hover-reveal__img { width: 100%; height: 100%; background-size: cover; background-position: center; transform: scale(1.6); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.hover-reveal.show .hover-reveal__img { transform: scale(1); }
.hover-reveal__cap { position: absolute; left: -3px; bottom: -34px; background: var(--orange); color: var(--black); font-family: var(--mono); font-weight: 700; font-size: 13px; line-height: 18px; padding: 6px 10px; max-width: 320px; border-radius: 0 0 var(--r) var(--r); }
.rogue-list-mobile { display: none; }

/* ---------- Screens (scattered-portfolio collage + round cursor) ---------- */
.scattered { background: var(--ink); overflow: hidden; }
.scatter-wrap { position: relative; aspect-ratio: 100 / 74; margin-top: 48px; }
.scatter { position: absolute; display: block; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--black); transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .3s; cursor: none; }
.scatter img { width: 100%; height: auto; display: block; }
.scatter .cap { position: absolute; left: 0; top: 0; background: var(--black); color: var(--bone); font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 6px 10px; border-bottom-right-radius: var(--r); }
.scatter .cap b { color: var(--orange); margin-right: 8px; }
.scatter:hover { border-color: var(--orange); z-index: 5; }
.sc-1 { width: 58%; left: 0; top: 0; transform: rotate(-1.5deg); }
.sc-2 { width: 40%; right: 0; top: 11%; transform: rotate(2deg); }
.sc-3 { width: 44%; left: 6%; top: 55%; transform: rotate(1.2deg); }
.sc-4 { width: 48%; right: 2%; top: 49%; transform: rotate(-2deg); }
.scatter:hover { transform: rotate(0) scale(1.03); }
.scatter { z-index: 1; }
.scatter-word { position: absolute; z-index: 0; right: 0; top: -2%; font-family: var(--alt-font); font-size: clamp(90px, 14vw, 240px); line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--orange); pointer-events: none; text-transform: uppercase; }
#ball-cursor { position: fixed; left: 0; top: 0; width: 110px; height: 110px; margin: -55px 0 0 -55px; border-radius: 50%; background: var(--orange); color: var(--black); display: grid; place-items: center; font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 2px; pointer-events: none; z-index: 60; transform: scale(0); transition: transform .25s; }
#ball-cursor.on { transform: scale(1); }

/* ---------- Counters ---------- */
.counters { background: var(--orange); color: var(--black); padding: 48px 0 40px; }
.counter { border-left: 2px solid var(--black); padding: 0 16px; }
.counter .n { font-family: var(--alt-font); font-size: clamp(64px, 8vw, 120px); line-height: .85; display: block; }
.counter .l { font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Party (vertical-portfolio: sticky title + vertical stack) ---------- */
.vertical-portfolio .sticky-col { position: sticky; top: 100px; }
.vertical-portfolio .sec-title { font-size: clamp(56px, 5.4vw, 100px); }
.vp-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-bottom: 12px; background: var(--ink); }
.vp-item img { width: 100%; height: 520px; object-fit: cover; object-position: top; display: block; }
.vp-item .vp-body { padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; border-left: 3px solid var(--orange); }
.vp-item .vp-body .no { font-family: var(--alt-font); font-size: 120px; line-height: .8; color: transparent; -webkit-text-stroke: 1.5px var(--orange); margin-bottom: auto; }
.vp-item h3 { font-family: var(--alt-font); font-weight: 400; font-size: 72px; line-height: .9; color: var(--bone); margin: 0 0 8px; text-transform: uppercase; }
.vp-item .traits { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.vp-item .traits li { font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--line); color: var(--bone); padding: 2px 8px; border-radius: 2px; }
.vp-item .traits li.bad { background: var(--orange); border-color: var(--orange); color: var(--black); }

/* ---------- Card art (portfolio-transform metro grid) ---------- */
.metro { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 12px; }
.metro .portfolio-box { position: relative; overflow: hidden; border-radius: var(--r); border: 1px solid var(--line); background: #1a1320; margin: 0; }
.metro .portfolio-box img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.metro .portfolio-box:hover img { transform: scale(1.08) rotate(-1deg); }
.metro .portfolio-box figcaption { position: absolute; inset: auto 0 0 0; padding: 12px; background: var(--orange); color: var(--black); transform: translateY(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.metro .portfolio-box:hover figcaption { transform: none; }
.metro .portfolio-box figcaption b { display: block; font-family: var(--alt-font); font-weight: 400; font-size: 34px; line-height: .9; }
.metro .portfolio-box figcaption span { font-family: var(--mono); font-weight: 700; font-size: 13px; }
.m-wide { grid-column: span 2; }
.m-tall { grid-row: span 2; }
.m-big { grid-column: span 2; grid-row: span 2; }

/* ---------- Studio (minimal-portfolio) ---------- */
.studio { background: var(--bone); color: #2a251f; }
.studio .display { color: var(--black); }
.studio .eyebrow { color: #c24a00; }
.studio p { font-size: 19px; line-height: 31px; }
.studio .aside { font-family: var(--mono); color: #6d645a; font-size: 15px; }
.studio .aside a { color: #c24a00; }
.aurebesh-block { background: var(--black); border-radius: var(--r); padding: 32px 24px 24px; }
.aurebesh-block img { width: 100%; height: auto; display: block; }
.aurebesh-block .key { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 16px; font-family: var(--alt-font); font-size: 40px; color: var(--bone); text-align: center; }
.aurebesh-block small { display: block; margin-top: 12px; font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: 1px; }

/* ---------- Devlog (interactive-portfolio-work list) ---------- */
.log-item { display: grid; grid-template-columns: 140px 1fr auto; gap: 24px; align-items: baseline; padding: 24px 8px; border-bottom: 1px solid var(--line); transition: background .2s; }
.log-item:first-child { border-top: 2px solid var(--orange); }
.log-item:hover { background: var(--ink); }
.log-item time { font-family: var(--mono); font-weight: 700; color: var(--orange); letter-spacing: 1px; font-size: 14px; }
.log-item h3 { font-family: var(--alt-font); font-weight: 400; text-transform: uppercase; color: var(--bone); font-size: clamp(36px, 3.6vw, 56px); line-height: .95; margin: 0 0 8px; }
.log-item p { margin: 0; max-width: 760px; }
.log-item .tag { font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--black); background: var(--orange); padding: 2px 8px; border-radius: 2px; white-space: nowrap; }
.log-item .tag.alt { background: transparent; color: var(--muted); border: 1px solid var(--line); }

/* ---------- Footer ---------- */
.footer-cta { position: relative; overflow: hidden; background: var(--orange); color: var(--black); padding: 100px 0 0; }
.footer-cta .eyebrow { color: var(--black); }
.footer-cta h2 { font-family: var(--alt-font); font-weight: 400; text-transform: uppercase; font-size: clamp(90px, 15vw, 260px); line-height: .82; color: var(--black); margin: 0 0 32px; }
.footer-cta h2 span { color: transparent; -webkit-text-stroke: 2px var(--black); display: block; }
.footer-cta p { font-size: 19px; line-height: 30px; color: #1a1208; }
.footer-cta .btn-punch { background: var(--black); border-color: var(--black); color: var(--orange) !important; }
.footer-cta .btn-punch:hover { background: var(--bone); border-color: var(--bone); color: var(--black) !important; box-shadow: 3px 3px 0 var(--black); }
.footer-cta .btn-line { border-color: var(--black); color: var(--black) !important; }
.footer-cta .btn-line:hover { background: var(--black); color: var(--orange) !important; }
.giant-aurebesh { padding: 64px 16px 0; }
.giant-aurebesh img { width: 100%; height: auto; display: block; }
.footer-bottom { background: var(--black); color: var(--muted); padding: 16px 0; font-size: 14px; }
.footer-bottom a { color: var(--bone); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Inner page title (interactive-portfolio-work page-title-big-typography) ---------- */
.page-title { position: relative; overflow: hidden; padding: 180px 0 64px; background: var(--black); border-bottom: 2px solid var(--orange); }
.page-title .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .32; }
.page-title .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #0a0a0a 5%, rgba(10,10,10,.4) 70%, rgba(10,10,10,.8)); }
.page-title .container { position: relative; }
.page-title h1 { font-family: var(--alt-font); font-weight: 400; text-transform: uppercase; color: var(--bone); font-size: clamp(88px, 15vw, 250px); line-height: .82; margin: 0 0 16px; }
.page-title h1 span { color: var(--orange); }
.page-title .lede { font-family: var(--mono); font-weight: 500; font-size: 20px; line-height: 30px; color: var(--bone); max-width: 640px; margin: 0; }
.crumbs { font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.crumbs i { font-style: normal; color: var(--orange); margin: 0 8px; }
.page-title .logo-art { width: 100%; max-width: 520px; display: block; margin-left: auto; }

/* ---------- Status badges ---------- */
.status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; border: 1px solid var(--orange); color: var(--orange); }
.status::before { content: ""; width: 7px; height: 7px; background: currentColor; border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
.status.solid { background: var(--orange); color: var(--black); }
.status.dim { border-color: var(--muted); color: var(--muted); }
.status.dim::before { animation: none; }
@keyframes pulse { 50% { opacity: .25; } }

/* ---------- Games (horizontal-portfolio letter menu as a game index) ---------- */
.games-index .menu-row { display: block; }
.games-index .menu-item { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 16px; padding: 12px 8px; border-bottom: 1px solid var(--line); }
.games-index .menu-item:first-child { border-top: 2px solid var(--orange); }
.games-index .menu-item .idx { position: static; font-size: 44px; }
.games-index .menu-item-text { font-size: clamp(48px, 7.4vw, 150px); line-height: .95; }
.games-index .menu-item-text.long { font-size: clamp(40px, 5.6vw, 116px); }
.games-index .game-meta { text-align: right; font-family: var(--mono); font-size: 14px; line-height: 22px; max-width: 280px; }
.games-index .game-meta .status { margin-bottom: 8px; }
.games-index .menu-item.is-next .menu-item-text { color: transparent; -webkit-text-stroke: 1.5px var(--muted); }
.games-index .menu-item.is-next .clone { -webkit-text-stroke: 0; }

.game-tiles { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; }
.game-tile { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 520px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); text-decoration: none; color: var(--bone); background: var(--ink); }
.game-tile .art { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.game-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.96) 12%, rgba(10,10,10,.15) 70%); }
.game-tile:hover .art { transform: scale(1.05); }
.game-tile:hover { border-color: var(--orange); color: var(--bone); }
.game-tile .body { position: relative; z-index: 2; padding: 24px; }
.game-tile h3 { font-family: var(--alt-font); font-weight: 400; text-transform: uppercase; font-size: clamp(56px, 6vw, 110px); line-height: .85; margin: 12px 0 8px; }
.game-tile p { margin: 0 0 16px; max-width: 520px; color: #d8d1c6; }
.game-tile .go { font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }
.game-tile.crave .art { background-color: #3a2619; background-size: auto 115%; background-position: right -40px center; background-repeat: no-repeat; }
.game-tile.next { grid-column: span 2; min-height: 0; border-style: dashed; border-color: #3a3a36; background: transparent; }
.game-tile.next::after { display: none; }
.game-tile.next .body { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.game-tile.next h3 { font-size: clamp(40px, 4vw, 64px); color: transparent; -webkit-text-stroke: 1.5px var(--muted); margin: 0; }

/* ---------- Who is Rardo ---------- */
.rardo-id { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.rardo-id div { border-top: 2px solid var(--black); padding-top: 12px; }
.rardo-id b { display: block; font-family: var(--alt-font); font-weight: 400; font-size: 40px; line-height: 1; color: var(--black); }
.rardo-id span { font-family: var(--mono); font-size: 14px; color: #6d645a; }

/* ---------- Crave (dirt palette, still orange) ---------- */
.crave-page { --dirt: #3a2619; --dirt-2: #4f3522; --tan: #e4d6bd; --play: #8bc34a; }
.phones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: start; }
.phone { margin: 0; border: 3px solid var(--dirt-2); border-radius: 6px; overflow: hidden; background: var(--dirt); }
.phone img { width: 100%; height: auto; display: block; }
.phone figcaption { font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 8px 10px; color: var(--tan); border-top: 3px solid var(--orange); }
.phones .phone:nth-child(even) { margin-top: 64px; }
.dirt-band { background: var(--dirt); color: var(--tan); }
.dirt-band .display { color: var(--tan); }
.fact-list { list-style: none; padding: 0; margin: 0; border-top: 2px solid var(--orange); }
.fact-list li { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(228,214,189,.15); }
.fact-list b { font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); }

/* ---------- Support (form) ---------- */
.support-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.rardo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; }
.rardo-form .full { grid-column: 1 / -1; }
.rardo-form label { display: block; font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--bone); margin-bottom: 6px; }
.rardo-form label small { color: var(--muted); letter-spacing: 1px; text-transform: none; font-weight: 500; }
.rardo-form input, .rardo-form select, .rardo-form textarea { width: 100%; background: var(--ink); color: var(--bone); border: 1px solid #3a3a36; border-radius: var(--r); padding: 10px 12px; font: 16px/24px var(--primary-font); outline: none; transition: border-color .15s; }
.rardo-form textarea { min-height: 180px; resize: vertical; }
.rardo-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%), linear-gradient(135deg, var(--orange) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.rardo-form input:focus, .rardo-form select:focus, .rardo-form textarea:focus { border-color: var(--orange); }
.rardo-form .check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 22px; }
.rardo-form .check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--orange); flex: none; }
.rardo-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rardo-form button[disabled] { opacity: .6; }
.form-result { border-radius: var(--r); padding: 12px 16px; margin-bottom: 20px; font-family: var(--mono); font-weight: 700; }
.form-result.ok { background: var(--orange); color: var(--black); }
.form-result.bad { border: 2px solid var(--orange); color: var(--bone); }
.help-list { list-style: none; padding: 0; margin: 0; border-top: 2px solid var(--orange); }
.help-list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.help-list h4 { font-family: var(--alt-font); font-weight: 400; font-size: 32px; line-height: 1; color: var(--bone); margin: 0 0 6px; text-transform: uppercase; }
.help-list p { margin: 0; font-size: 15px; line-height: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .hero-card { display: none; }
    .move { grid-template-columns: 60px 1fr 1fr; }
    .move img { display: none; }
}
@media (max-width: 991px) {
    section { padding: 88px 0; }
    .rardo-header .bar, .sticky-hero .hero-slides, .home-page-footer { padding-left: 16px; padding-right: 16px; }
    .push-menu .menu-side { display: none; }
    .move { grid-template-columns: 40px 1fr; }
    .move p { grid-column: 2; }
    .threeD-letter-menu .menu-row { display: none; }
    .rogue-list-mobile { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .rogue-list-mobile figure { margin: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--ink); }
    .rogue-list-mobile img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
    .rogue-list-mobile figcaption { padding: 10px 12px; border-top: 3px solid var(--orange); font-size: 14px; line-height: 20px; }
    .rogue-list-mobile figcaption b { display: block; font-family: var(--alt-font); font-weight: 400; font-size: 28px; line-height: 1; color: var(--bone); }
    .scatter-wrap { height: auto; display: grid; gap: 12px; }
    .scatter { position: relative; width: 100% !important; left: auto !important; right: auto !important; top: auto !important; transform: none !important; cursor: pointer; }
    .scatter-word { display: none; }
    .vertical-portfolio .sticky-col { position: static; margin-bottom: 24px; }
    .metro { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .metro .portfolio-box figcaption { transform: none; }
    .log-item { grid-template-columns: 1fr; gap: 6px; }
    .counter { margin-bottom: 20px; }
}
@media (max-width: 575px) {
    body { font-size: 16px; }
    .brand span { display: none; }
    .sticky-hero .hero-slide { flex-direction: column; align-items: flex-start; gap: 4px; }
    .sticky-hero .hero-meta { display: none; }
    .sticky-hero .hero-slide.active .hero-meta { display: flex; }
    .vp-item { grid-template-columns: 1fr; }
    .vp-item img { height: 380px; }
    .vp-item .vp-body { border-left: 0; border-top: 3px solid var(--orange); }
    .vp-item .vp-body .no { font-size: 72px; }
    .vp-item h3 { font-size: 56px; }
    .m-big, .m-wide { grid-column: span 2; }
}
@media (prefers-reduced-motion: reduce) {
    .marquee { animation: none; }
    * { transition-duration: .01ms !important; }
}

/* ---------- Responsive: publisher pages ---------- */
@media (max-width: 991px) {
    .page-title { padding: 130px 0 48px; }
    .page-title .logo-art { margin: 32px 0 0; max-width: 360px; }
    .games-index .menu-item { grid-template-columns: 1fr; gap: 4px; }
    .games-index .menu-item .idx { display: none; }
    .games-index .game-meta { text-align: left; max-width: none; }
    .game-tiles { grid-template-columns: 1fr; }
    .game-tile { min-height: 420px; }
    .game-tile.next { grid-column: auto; }
    .rardo-id { grid-template-columns: 1fr; }
    .phones { grid-template-columns: repeat(2, 1fr); }
    .phones .phone:nth-child(even) { margin-top: 32px; }
    .support-grid { grid-template-columns: 1fr; }
    .fact-list li { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 575px) {
    .rardo-form { grid-template-columns: 1fr; }
}

/* ---------- Publisher chrome ---------- */
.push-menu .nav-link.sub { font-size: clamp(34px, 5.5vh, 56px); padding-left: 40px; color: rgba(10,10,10,.75); }
.push-menu .nav-link.sub::before { content: "→"; counter-increment: none; }
.push-menu .nav-link.sub:hover { padding-left: 56px; }
a.log-item { text-decoration: none; color: inherit; }
a.log-item:hover h3 { color: var(--orange); }
.footer-cta.no-cta { padding-top: 0; }
.footer-cta.no-cta .giant-aurebesh { padding-top: 48px; }
.footer-links { background: var(--black); color: #bdb6ab; padding: 48px 0 32px; font-size: 17px; line-height: 27px; }
.footer-links b { display: block; font-family: var(--mono); font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: var(--bone); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom, .footer-bottom span { font-size: 15px; color: #a9a299; }
.hero-card .btn-punch { margin-top: 4px; }

/* ---------- Malice ---------- */
.hero-malice { position: absolute; z-index: 1; right: calc(min(34vw, 460px) + 70px); bottom: 0; height: 88vh; max-height: 820px; width: auto; pointer-events: none; filter: drop-shadow(0 0 0 transparent); }
.home .hero-card { width: min(34vw, 460px); }
.malice { position: relative; overflow: hidden; background: #140606; padding-bottom: 80px; }
.malice-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: .22; }
.malice-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #0a0a0a 25%, rgba(10,10,10,.35)), linear-gradient(0deg, #0a0a0a, transparent 40%); }
.malice .container { position: relative; }
.malice-name { font-size: clamp(110px, 18vw, 300px); line-height: .8; margin: 0 0 16px; color: #e8322a; }
.malice-name span { color: var(--orange); }
.malice-quote { font-family: var(--alt-font); font-size: clamp(32px, 3vw, 48px); line-height: 1; color: var(--bone); text-transform: uppercase; margin-bottom: 24px; max-width: 640px; }
.malice-sign { font-family: var(--mono); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); margin: 24px 0 0; }
.malice-sign b { color: var(--bone); }
.malice-figure { width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto -80px; }
.malice-panels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 80px; position: relative; z-index: 2; }
.malice-panels figure { margin: 0; border: 1px solid #3a1a14; border-radius: var(--r); overflow: hidden; background: var(--black); transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s; }
.malice-panels figure:nth-child(odd) { transform: rotate(-1.2deg); }
.malice-panels figure:nth-child(even) { transform: rotate(1.2deg) translateY(16px); }
.malice-panels figure:hover { transform: rotate(0) scale(1.04); border-color: var(--orange); z-index: 3; }
.malice-panels img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.malice-panels figcaption { padding: 8px 10px; font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--bone); border-top: 2px solid #e8322a; }
.malice-panels figcaption b { color: var(--orange); margin-right: 8px; }
.malice-note { margin: 40px 0 0; font-family: var(--mono); font-size: 13px; color: var(--muted); }
.bath { margin: 0 0 24px; background: var(--orange); border-radius: var(--r); overflow: hidden; }
.bath img { width: 100%; height: auto; display: block; }
.bath figcaption { background: var(--black); color: var(--bone); font-family: var(--mono); font-weight: 700; font-size: 13px; line-height: 20px; padding: 10px 12px; border-top: 2px solid var(--orange); }
.notfound-malice { position: absolute; right: 0; bottom: -40px; width: min(52vw, 760px); height: auto; pointer-events: none; }
.not-found .page-title .container > * { position: relative; z-index: 2; }
@media (max-width: 1199px) {
    .hero-malice { right: 0; height: 70vh; opacity: .55; }
}
@media (max-width: 991px) {
    .malice-panels { grid-template-columns: repeat(2, 1fr); }
    .malice-figure { max-width: 340px; margin-bottom: 0; }
    .notfound-malice { position: relative; width: 100%; bottom: 0; margin-top: 24px; }
}
@media (max-width: 575px) {
    .hero-malice { height: 55vh; opacity: .4; right: -60px; }
}

/* ---------- Mobile fixes: games list + featured CTA ---------- */
@media (max-width: 991px) {
    .games-index .menu-row { display: block; }
    .games-index .menu-item-text { font-size: clamp(56px, 16vw, 110px); }
}
@media (max-width: 1199px) {
    .home .hero-card { display: block; top: auto; bottom: 96px; left: 16px; right: 16px; width: auto; transform: none; text-align: left; }
    .home .hero-card img, .home .hero-card p { display: none; }
    .home .sticky-hero .hero-slides { padding-bottom: 210px; }
}

@media (max-width: 1439px) { .hero-malice { opacity: .7; } }

/* ---------- Music ---------- */
.music, .origin { background: var(--black); border-top: 1px solid var(--line); }
.origin { background: #140606; }
.spotify-embed { border: 2px solid var(--orange); border-radius: 6px; overflow: hidden; background: var(--ink); line-height: 0; }
.spotify-embed iframe { display: block; border: 0; }
.discog { list-style: none; padding: 0; margin: 24px 0 0; border-top: 2px solid var(--orange); }
.discog a { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 8px; border-bottom: 1px solid var(--line); text-decoration: none; transition: background .2s, padding .2s; }
.discog a:hover { background: var(--ink); padding-left: 16px; }
.discog b { font-family: var(--alt-font); font-weight: 400; font-size: 34px; line-height: 1; color: var(--bone); text-transform: uppercase; }
.discog a:hover b { color: var(--orange); }
.discog span { font-family: var(--mono); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); text-align: right; }

/* ---------- Legal / policy ---------- */
.legal-body { max-width: 780px; }
.legal-body .updated { font-family: var(--mono); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; }
.legal-body .intro { font-size: 21px; line-height: 33px; color: var(--bone); }
.legal-body h2 { font-family: var(--alt-font); font-weight: 400; text-transform: uppercase; color: var(--bone); font-size: clamp(34px, 4vw, 52px); line-height: 1; margin: 48px 0 12px; padding-top: 24px; border-top: 2px solid var(--orange); }
.legal-body ul { padding-left: 20px; }
.legal-body li { margin-bottom: 10px; }
.legal-body .end { font-family: var(--alt-font); font-size: 40px; color: var(--orange); margin-top: 40px; }
.legal-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.footer-cta .footer-links p { color: #bdb6ab; font-size: 16px; line-height: 26px; }

/* ---------- Everyone Expire card faces (rebuilt from the game's card data) ---------- */
.ee-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ee-card { display: flex; flex-direction: column; margin: 0; padding: 10px; border-radius: 6px; background: linear-gradient(180deg, #241428, #150b18); border: 1px solid #3a2340; border-top: 2px solid var(--type); }
.ee-card-name { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 15px; line-height: 18px; letter-spacing: .5px; text-transform: uppercase; color: #f0e6d8; text-align: center; min-height: 36px; display: flex; align-items: center; justify-content: center; }
.ee-card-art { display: block; border: 1px solid var(--type); border-radius: 4px; overflow: hidden; }
.ee-card-art img { width: 100%; display: block; }
.ee-card-stats { display: flex; justify-content: space-between; margin: 10px 0 8px; }
.ee-card-stats b { display: flex; flex-direction: column; align-items: center; width: 46px; padding: 3px 0 4px; border-radius: 4px; border: 2px solid var(--type); font-family: var(--mono); font-weight: 700; font-size: 9px; letter-spacing: 1px; color: var(--type); }
.ee-card-stats b.dmg { border-color: #bf2e1f; color: #e2503f; }
.ee-card-stats b i { font-style: normal; font-family: Georgia, serif; font-size: 20px; line-height: 1.05; color: #f0e6d8; }
.ee-card-fail { display: block; background: rgba(255,255,255,.05); border-radius: 3px; padding: 5px 6px; text-align: center; font-family: Georgia, serif; font-size: 12px; color: #cfc4b6; }
.ee-card-fail b { color: #f0e6d8; }
.ee-card-flavour { display: block; flex: 1; padding: 10px 4px; font-family: Georgia, serif; font-style: italic; font-size: 12px; line-height: 17px; color: #9b8fa4; text-align: center; }
.ee-card-type { display: block; margin-top: auto; padding: 5px; border-radius: 3px; background: var(--type); color: #12060f; font-family: var(--mono); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; text-align: center; }
.cards-note { margin-top: 24px; font-family: var(--mono); font-size: 14px; color: var(--muted); }

/* ---------- EE icon badge + Steam footer badge ---------- */
.title-badge { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.title-badge img { width: 62px; height: 62px; border-radius: 6px; border: 1px solid var(--line); display: block; }
.steam-badge { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--bone); }
.steam-badge img { width: 54px; height: 54px; border-radius: 6px; border: 1px solid var(--line); background: var(--black); display: block; transition: border-color .2s; }
.steam-badge:hover img { border-color: var(--orange); }
.steam-badge span { font-family: var(--mono); font-weight: 700; font-size: 14px; line-height: 20px; }
.steam-badge small { font-weight: 500; font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Screwed ---------- */
.shots-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.shots-row figure { margin: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--ink); }
.shots-row img { width: 100%; display: block; }
.shots-row figcaption { padding: 10px 12px; border-top: 2px solid var(--orange); font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--bone); }
.screwed-page .page-title { background: #141414; }

@media (max-width: 991px) {
    .ee-cards { grid-template-columns: repeat(3, 1fr); }
    .shots-row { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .ee-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ee-card-name { font-size: 13px; min-height: 32px; }
}

/* ---------- Cookie bar ---------- */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; background: var(--orange); color: var(--black); border-top: 3px solid var(--black); }
.cookie-inner { max-width: 1320px; margin: 0 auto; padding: 14px 16px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.cookie-bar p { margin: 0; max-width: 820px; font-size: 16px; line-height: 24px; }
.cookie-bar a { color: var(--black); text-decoration: underline; font-weight: 600; }
.cookie-bar a:hover { color: #3a1500; }
.cookie-actions { display: flex; gap: 8px; flex: none; }
.cookie-bar .btn-line { border-color: var(--black); color: var(--black) !important; }
.cookie-bar .btn-line:hover { background: var(--black); color: var(--orange) !important; }
.cookie-bar .btn-punch { background: var(--black); border-color: var(--black); color: var(--orange) !important; }
.cookie-bar .btn-punch:hover { background: var(--bone); border-color: var(--bone); color: var(--black) !important; box-shadow: 3px 3px 0 rgba(0,0,0,.35); }
@media (max-width: 575px) { .cookie-inner { padding: 12px; } .cookie-bar p { font-size: 15px; line-height: 22px; } .cookie-actions { width: 100%; } .cookie-actions button { flex: 1; justify-content: center; } }
.footer-bottom .copy { display: inline-flex; align-items: center; gap: 12px; }
.steam-icon img { width: 34px; height: 34px; border-radius: 4px; border: 1px solid var(--line); background: var(--black); display: block; opacity: .75; transition: opacity .2s, border-color .2s; }
.steam-icon:hover img { opacity: 1; border-color: var(--orange); }

/* ---------- Full-width game page title (logo over headline) ---------- */
.title-stack { display: block; }
.title-stack .logo-art { width: 100%; max-width: 760px; margin: 8px 0 20px; display: block; }
.page-title h1.full { font-size: clamp(64px, 13.5vw, 260px); line-height: .84; margin: 0 0 20px; width: 100%; }
.page-title h1.full span { display: inline; }
@media (max-width: 991px) {
    .title-stack .logo-art { max-width: 460px; margin-bottom: 12px; }
}
