/* =====================================================================
   PG Informatique · main.css — refonte 2026
   Vibe : dark + neon + terminal + IA
   ===================================================================== */

:root {
    --bg: #050807;
    --bg-2: #07100c;
    --bg-3: #0a1812;
    --surface: #0e1c16;
    --surface-2: #142820;
    --line: rgba(94, 243, 140, 0.12);
    --line-strong: rgba(94, 243, 140, 0.28);

    --text: #e8fff0;
    --text-2: #a3d4b6;
    --text-3: #5a7d6a;

    --primary: #5ef38c;        /* terminal green principal */
    --primary-2: #00d4aa;      /* vert plus sombre */
    --accent: #00ffaa;         /* vert vif d'accent */
    --accent-2: #00e0ff;       /* cyan d'accent */
    --green: #5ef38c;
    --warn: #ffd166;
    --red: #ff6b6b;

    --grad: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    --grad-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);

    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

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

    --shadow-glow: 0 0 0 1px var(--line-strong), 0 8px 40px rgba(94, 243, 140, 0.08);

    --container: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { color: var(--accent); }

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* =====================  BACKGROUND : Matrix + grid + glow  ===================== */
#bg-canvas {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}

.scanlines {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0px,
        rgba(255,255,255,0) 2px,
        rgba(255,255,255,0.018) 3px,
        rgba(255,255,255,0) 4px
    );
    mix-blend-mode: overlay;
}

.vignette {
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 0%, transparent 60%, rgba(0,0,0,.55) 100%),
        radial-gradient(circle at 20% 10%, rgba(94, 243, 140, 0.10) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 224, 255, 0.10) 0%, transparent 45%);
}

main, .topbar, .footer { position: relative; z-index: 5; }

/* =====================  TOPBAR  ===================== */
.topbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 32px;
    background: rgba(7, 9, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.brand img { width: 110px; opacity: .98; transition: opacity .2s; }
.brand:hover img { opacity: 1; filter: drop-shadow(0 0 8px rgba(0,224,255,.4)); }

.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-2);
    padding: 8px 14px;
    border-radius: 8px;
    transition: background .2s, color .2s;
}
.nav a:hover { background: var(--surface); color: var(--primary); }
.nav a.cta {
    background: var(--grad);
    color: #001016;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(94, 243, 140, 0.25);
}
.nav a.cta:hover { transform: translateY(-1px); color: #001016; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* =====================  HERO  ===================== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
}

.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,224,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,224,255,.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, transparent 80%);
    pointer-events: none;
}

.hero-inner {
    max-width: 920px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* TERMINAL */
.terminal {
    margin: 0 auto 48px;
    max-width: 620px;
    background: rgba(13, 17, 28, 0.85);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,224,255,.1) inset;
    overflow: hidden;
    text-align: left;
    backdrop-filter: blur(8px);
}
.terminal-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid var(--line);
}
.terminal-bar .dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.terminal-bar .red { background: #ff5f56; }
.terminal-bar .yellow { background: #ffbd2e; }
.terminal-bar .green { background: #27c93f; }
.terminal-title {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
    margin-left: 12px;
}
.terminal-body {
    padding: 18px 20px;
    font-family: var(--mono);
    font-size: 13.5px;
    line-height: 1.7;
}
.terminal-body p { margin: 0; }
.prompt { color: var(--green); margin-right: 6px; }
.cmd { color: var(--primary); }
.out { color: var(--text-2); padding-left: 14px; }
.blink-cursor { animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.hero-title {
    font-family: var(--mono);
    font-weight: 700;
    font-size: clamp(2rem, 5.4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-title .grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-title .grad.accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(255, 92, 213, 0.25);
}

.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-2);
    max-width: 680px;
    margin: 0 auto 36px;
}

.hero-cta {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 10px;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s, background .2s;
    cursor: pointer;
}
.btn-primary {
    background: var(--grad);
    color: #001016;
    box-shadow: 0 8px 30px rgba(94, 243, 140, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(94, 243, 140, 0.45); color: #001016; }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { display: block; width: 100%; text-align: center; }

.hero-badges {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
}
.badge {
    font-family: var(--mono);
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    color: var(--text-2);
    background: rgba(255,255,255,0.02);
}

/* =====================  SECTIONS  ===================== */
.section {
    padding: 100px 24px;
    max-width: var(--container);
    margin: 0 auto;
}
.section-alt {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 20, 34, 0.6) 50%, transparent 100%);
    max-width: 100%;
    padding-left: 24px; padding-right: 24px;
}
.section-alt > * { max-width: var(--container); margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: 60px; }
.kicker {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--primary);
    text-transform: lowercase;
    letter-spacing: .05em;
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-head h2 {
    font-family: var(--mono);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.section-head h2 .heart { color: var(--accent-2); }
.section-head h2 .check { color: var(--green); }
.section-lead {
    font-size: 1rem;
    color: var(--text-2);
    max-width: 640px;
    margin: 0 auto;
}

/* =====================  STACK GRID  ===================== */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
@media (max-width: 600px) { .stack-grid { grid-template-columns: 1fr; gap: 18px; } }

.stack-card {
    background: rgba(13, 17, 28, 0.6);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    backdrop-filter: blur(6px);
}
.stack-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-glow);
}
.stack-card header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--line);
}
.stack-icon {
    font-family: var(--mono);
    font-size: 22px;
    width: 42px; height: 42px;
    display: grid; place-items: center;
    background: var(--grad);
    color: #001016;
    border-radius: 8px;
    font-weight: 700;
}
.stack-card h3 {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 600;
}
.stack-card ul { list-style: none; }
.stack-card li {
    font-size: 14px;
    color: var(--text-2);
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}
.stack-card li::before {
    content: "▹";
    position: absolute; left: 0;
    color: var(--primary);
    font-size: 11px;
    top: 7px;
}
.stack-card li strong { color: var(--text); }

/* =====================  SERVICES GRID  ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
    background: rgba(13, 17, 28, 0.6);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    backdrop-filter: blur(6px);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 14px 50px rgba(94, 243, 140, 0.12), 0 0 0 1px rgba(94, 243, 140, 0.18);
}
.service-card.featured {
    background: linear-gradient(135deg, rgba(94, 243, 140, 0.06), rgba(179, 136, 255, 0.06)), rgba(13, 17, 28, 0.7);
    border-color: rgba(94, 243, 140, 0.25);
}
.service-tag {
    position: absolute; top: 14px; right: 14px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 3px 8px;
    background: var(--grad);
    color: #001016;
    border-radius: 4px;
}
.service-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: inline-block;
    filter: drop-shadow(0 2px 12px rgba(94, 243, 140, 0.3));
}
.service-card h3 {
    font-family: var(--mono);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.65;
}
.service-card p strong { color: var(--text); }
.service-points {
    list-style: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}
.service-points li {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-2);
    padding: 3px 0;
}
.service-points li strong { color: var(--primary); }

/* =====================  WHY  ===================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 50px;
}
.why-card {
    text-align: center;
    padding: 36px 20px;
    background: rgba(13, 17, 28, 0.5);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
}
.why-num {
    font-family: var(--mono);
    font-size: 56px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 14px;
}
.why-label {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.why-label span {
    display: block;
    font-weight: 400;
    color: var(--text-3);
    font-size: 12.5px;
    margin-top: 4px;
}

.quote {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 24px;
    border-left: 2px solid var(--primary);
    background: rgba(0, 224, 255, 0.03);
    border-radius: var(--radius);
}
.quote p {
    font-family: var(--mono);
    font-size: 17px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
}

/* =====================  CONTACT FORM  ===================== */
.contact-form {
    max-width: 640px;
    margin: 0 auto;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.contact-form label {
    display: block;
    margin-bottom: 14px;
}
.label-tag {
    display: block;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(7, 9, 15, 0.6);
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--mono);
    font-size: 14px;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(94, 243, 140, 0.1);
}
.contact-form textarea {
    resize: vertical;
    font-family: var(--mono);
}
.fhp-input { display: none !important; }

.form-meta {
    text-align: center;
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--text-3);
    font-family: var(--mono);
}

/* =====================  FOOTER  ===================== */
.footer {
    padding: 60px 24px 40px;
    border-top: 1px solid var(--line);
    margin-top: 60px;
    background: rgba(7, 9, 15, 0.7);
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.footer-brand img { width: 90px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: var(--text-3); }
.footer-nav {
    display: flex; gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer-nav a {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-2);
}
.footer-nav a:hover { color: var(--primary); }
.copyright {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.copyright .mono { color: var(--accent); }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 768px) {
    .topbar { padding: 12px 16px; }
    .nav { display: none; }
    .nav.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-2);
        padding: 12px;
        border-bottom: 1px solid var(--line-strong);
    }
    .nav-toggle { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-nav { justify-content: center; }
    .section { padding: 60px 20px; }
    .hero { padding: 100px 16px 60px; }
}

/* =====================  REDUCE MOTION  ===================== */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .blink-cursor { opacity: 1; }
}

/* =====================  SHOWCASE  ===================== */
.section-showcase {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 20, 34, 0.4) 50%, transparent 100%);
    max-width: 100%;
    padding: 100px 24px;
}
.section-showcase > * { max-width: var(--container); margin-left: auto; margin-right: auto; }

.showcase-card {
    background: rgba(13, 17, 28, 0.6);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(94, 243, 140, 0.1);
}

/* Browser-style mockup */
.showcase-screen {
    position: relative;
    background: linear-gradient(135deg, #050810 0%, #0d1422 100%);
    border-radius: var(--radius);
    border: 1px solid var(--line-strong);
    overflow: hidden;
    margin-bottom: 32px;
    aspect-ratio: 16 / 7;
}
.showcase-browser-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--line);
}
.showcase-url {
    margin-left: 16px;
    flex: 1;
    text-align: center;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 12px;
    border-radius: 100px;
    max-width: 320px;
}
.showcase-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 50%, rgba(94, 243, 140, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 75% 50%, rgba(179, 136, 255, 0.18) 0%, transparent 45%);
    pointer-events: none;
}
.showcase-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}
.showcase-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    background: var(--green);
    color: #001016;
    border-radius: 4px;
    margin-bottom: 14px;
    box-shadow: 0 0 20px rgba(94, 243, 140, 0.4);
    animation: pulse-tag 2s ease-in-out infinite;
}
@keyframes pulse-tag {
    0%, 100% { box-shadow: 0 0 20px rgba(94, 243, 140, 0.4); }
    50%      { box-shadow: 0 0 35px rgba(94, 243, 140, 0.7); }
}
.showcase-content h3 {
    font-family: var(--mono);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.showcase-tagline {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--text-2);
    max-width: 540px;
}

/* Features grid */
.showcase-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}
@media (max-width: 900px) { .showcase-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .showcase-features { grid-template-columns: 1fr; } }

.showcase-feature {
    background: rgba(7, 9, 15, 0.5);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color .2s, transform .2s;
}
.showcase-feature:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
}
.feat-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: inline-block;
}
.showcase-feature h4 {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.showcase-feature p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.55;
}

.showcase-cta-wrap {
    text-align: center;
    padding-top: 24px;
    border-top: 1px dashed var(--line);
}
.showcase-pitch {
    font-size: 1rem;
    color: var(--text);
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.65;
}
.showcase-pitch em {
    color: var(--primary);
    font-style: normal;
}

@media (max-width: 700px) {
    .showcase-card { padding: 20px; }
    .showcase-screen { aspect-ratio: 4 / 3; }
}

/* =====================  TEXT WRAP & TYPO FIXES  ===================== */
.hero-title, .section-head h2, .showcase-content h3 {
    text-wrap: balance;
    -webkit-text-wrap: balance;
}
.hero-sub, .section-lead, .showcase-tagline, .showcase-pitch {
    text-wrap: pretty;
}

/* Réserver la hauteur du typewriter pour stopper le reflow */
#typewriter {
    display: inline-block;
    min-height: 1.7em;
    min-width: 1ch;
}

/* =====================  GLITCH EFFECT  ===================== */
.hero-title .grad {
    position: relative;
    display: inline-block;
}
.hero-title.glitching .grad::before,
.hero-title.glitching .grad::after {
    content: attr(data-text);
    position: absolute; inset: 0;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    pointer-events: none;
}
.hero-title.glitching .grad::before {
    animation: glitch-1 0.6s steps(2) 1;
    text-shadow: 2px 0 var(--accent-2);
    clip-path: polygon(0 20%, 100% 20%, 100% 50%, 0 50%);
}
.hero-title.glitching .grad::after {
    animation: glitch-2 0.6s steps(2) 1;
    text-shadow: -2px 0 var(--primary);
    clip-path: polygon(0 60%, 100% 60%, 100% 90%, 0 90%);
}
@keyframes glitch-1 {
    0% { transform: translate(0); opacity: 0; }
    20% { transform: translate(-3px, 1px); opacity: 0.8; }
    40% { transform: translate(2px, -1px); opacity: 0.8; }
    60% { transform: translate(-1px, 0); opacity: 0.8; }
    80% { transform: translate(1px, 1px); opacity: 0.8; }
    100% { transform: translate(0); opacity: 0; }
}
@keyframes glitch-2 {
    0% { transform: translate(0); opacity: 0; }
    20% { transform: translate(3px, -1px); opacity: 0.7; }
    40% { transform: translate(-2px, 1px); opacity: 0.7; }
    60% { transform: translate(1px, 0); opacity: 0.7; }
    80% { transform: translate(-1px, -1px); opacity: 0.7; }
    100% { transform: translate(0); opacity: 0; }
}

/* =====================  TILT 3D CARDS  ===================== */
.stack-card, .service-card, .why-card, .showcase-feature {
    transform-style: preserve-3d;
    will-change: transform;
}
.tilt-inner {
    transform-style: preserve-3d;
}

/* =====================  FOOTER MOBILE FIX  ===================== */
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand img { margin-bottom: 12px; }

@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .footer-brand { align-items: center; }
    .footer-nav { justify-content: center; }
    .footer-brand img { margin-left: auto; margin-right: auto; }

    /* Hero : moins de padding latéral, plus respirant */
    .hero { padding: 90px 16px 50px; }
    .terminal { font-size: 12px; }
    .terminal-body { padding: 14px 16px; font-size: 12.5px; }

    /* Réduire animation cards sur mobile pour éviter jank */
    .stack-card:hover, .service-card:hover, .why-card:hover {
        transform: none;
    }
}

/* =====================  REDUCE ANIMATIONS ON LOW POWER  ===================== */
@media (max-width: 768px), (max-resolution: 1.5dppx) {
    /* Garder l'animation constellation mais sans le mouse-tracking sur mobile */
    /* Géré côté JS */
}

/* =====================  HERO TITLE MOBILE FIX  ===================== */
.hero-title {
    /* Permettre au titre de scaler vraiment sur mobile très étroit */
    font-size: clamp(1.4rem, 7.5vw, 4rem);
}
.hero-title .line {
    display: block;
    /* Si la ligne ne tient toujours pas, on autorise un wrap doux */
    overflow-wrap: break-word;
    word-break: keep-all;
}

/* =====================  TYPEWRITER STABLE (mobile = 2 lignes max) ===================== */
@media (max-width: 600px) {
    #typewriter {
        min-height: 3.4em; /* réserve 2 lignes pour les phrases longues */
        display: block;
    }
    /* Terminal plus contenu sur mobile */
    .terminal { max-width: 100%; }
    .terminal-body { font-size: 11.5px; line-height: 1.65; }
    .terminal-body p { word-break: break-word; }
}

/* Petit écran (320-375px) : titre encore réduit */
@media (max-width: 380px) {
    .hero-title { font-size: clamp(1.2rem, 8.5vw, 1.7rem); }
    .hero { padding: 80px 14px 40px; }
    .hero-sub { font-size: 0.92rem; }
    .badge { font-size: 11px; padding: 5px 10px; }
}

/* =====================  SOLAR BANNER  ===================== */
.solar-banner {
    position: relative;
    z-index: 5;
    padding: 0;
    margin: 60px 24px;
}
.solar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 40px;
    background:
        linear-gradient(135deg, rgba(255, 195, 0, 0.08) 0%, rgba(255, 100, 50, 0.06) 100%),
        rgba(13, 17, 28, 0.85);
    border: 1px solid rgba(255, 195, 0, 0.25);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 195, 0, 0.15),
        inset 0 0 80px rgba(255, 195, 0, 0.05);
}
.solar-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255, 195, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 80, 30, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255, 195, 0, 0.025) 0 2px, transparent 2px 12px);
    pointer-events: none;
}
.solar-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.solar-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ffd166 0%, #ff8534 100%);
    color: #1a0d00;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 0 30px rgba(255, 195, 0, 0.4);
    animation: solar-glow 3s ease-in-out infinite;
}
@keyframes solar-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 195, 0, 0.4); }
    50%      { box-shadow: 0 0 50px rgba(255, 195, 0, 0.7); }
}

.solar-title {
    font-family: var(--mono);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    text-wrap: balance;
}
.solar-num {
    display: block;
    font-size: clamp(2.4rem, 7vw, 5rem);
    background: linear-gradient(135deg, #ffd166 0%, #ff8534 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 60px rgba(255, 195, 0, 0.3);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.solar-sub {
    display: block;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: var(--text);
    font-weight: 500;
    max-width: 720px;
    margin: 0 auto;
}

.solar-lead {
    font-size: 1rem;
    color: var(--text-2);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.65;
}
.solar-lead strong {
    color: #ffd166;
    font-weight: 600;
}

.solar-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 880px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 195, 0, 0.25);
}
@media (max-width: 760px) { .solar-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .solar-stats { grid-template-columns: 1fr; } }
.solar-stat {
    text-align: center;
}
.solar-stat .stat-num {
    display: block;
    font-family: var(--mono);
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    font-weight: 700;
    color: #ffd166;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.solar-stat .stat-unit {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .solar-banner { margin: 40px 16px; }
    .solar-inner { padding: 40px 22px; }
}

/* =====================  PIERREGOFFART.BE — extras  ===================== */

/* Topbar : nom textuel à la place du logo image */
.brand-text {
    display: flex;
    align-items: center;
    height: 100%;
}
.brand-name {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    letter-spacing: -0.01em;
    transition: color .2s;
}
.brand-text:hover .brand-name { color: var(--primary); }

/* Hero perso : photo de profil */
.hero-perso .profile-photo-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 32px;
}
.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow:
        0 0 0 6px rgba(94, 243, 140, 0.15),
        0 12px 50px rgba(94, 243, 140, 0.25),
        0 0 0 1px rgba(255,255,255,0.05);
    background: var(--surface);
}
.status-dot {
    position: absolute;
    bottom: 8px; right: 8px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid var(--bg);
    box-shadow: 0 0 12px rgba(94, 243, 140, 0.6);
    animation: pulse-status 2.5s ease-in-out infinite;
}
@keyframes pulse-status {
    0%, 100% { box-shadow: 0 0 12px rgba(94, 243, 140, 0.6); }
    50%      { box-shadow: 0 0 20px rgba(94, 243, 140, 1); }
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.4rem) !important;
    font-weight: 400;
    color: var(--text-2);
    letter-spacing: 0.02em;
    margin-top: 8px;
}

/* About grid (2 cards) */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
    background: rgba(13, 17, 28, 0.6);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    backdrop-filter: blur(6px);
    transition: border-color .2s, transform .2s;
}
.about-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
}
.about-card header {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--line);
}
.about-card h3 {
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 600;
}
.about-card p {
    font-size: 14.5px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 12px;
}
.about-card p:last-child { margin-bottom: 0; }
.about-card p strong { color: var(--text); }

/* Work card (activité pro) — réutilise styles showcase mais adapté */
.work-card {
    background: rgba(13, 17, 28, 0.6);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(94, 243, 140, 0.1);
}

.work-screen {
    position: relative;
    background: linear-gradient(135deg, #050810 0%, #0d1422 100%);
    border-radius: var(--radius);
    border: 1px solid var(--line-strong);
    overflow: hidden;
    margin-bottom: 32px;
    aspect-ratio: 16 / 7;
}
.work-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 50%, rgba(94, 243, 140, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 75% 50%, rgba(179, 136, 255, 0.18) 0%, transparent 45%);
    pointer-events: none;
}
.work-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    text-align: center;
}
.work-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    background: var(--grad);
    color: #001016;
    border-radius: 4px;
    margin-bottom: 14px;
    box-shadow: 0 0 20px rgba(94, 243, 140, 0.4);
}
.work-content h3 {
    font-family: var(--mono);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.work-tagline {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: var(--text-2);
    max-width: 540px;
}

.work-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}
@media (max-width: 760px) { .work-features { grid-template-columns: 1fr; } }

.work-feature {
    background: rgba(7, 9, 15, 0.5);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    transition: border-color .2s, transform .2s;
}
.work-feature:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
}
.work-feature h4 {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}
.work-feature p {
    font-size: 13.5px;
    color: var(--text-2);
    line-height: 1.55;
}

.work-cta-wrap {
    text-align: center;
    padding-top: 24px;
    border-top: 1px dashed var(--line);
}
.work-pitch {
    font-size: 1rem;
    color: var(--text);
    margin: 0 auto 20px;
}

/* Social links bottom contact */
.social-links {
    text-align: center;
    margin-top: 40px;
    font-family: var(--mono);
    font-size: 14px;
    color: var(--text-3);
}
.social-links a {
    color: var(--primary);
}
.social-links span { margin: 0 8px; }

/* Footer perso simple */
.footer-name {
    font-family: var(--mono);
    font-size: 16px;
    color: var(--text);
    margin-bottom: 6px;
}

@media (max-width: 700px) {
    .work-card { padding: 20px; }
    .work-screen { aspect-ratio: 4 / 3; }
}

/* === FIX WRAPS sauts de ligne moches dans les listes === */
.stack-card li, .about-card p, .service-card p {
    text-wrap: pretty;
    -webkit-text-wrap: pretty;
}
.stack-card li {
    /* Évite que des mots seuls passent à la ligne en orphelins */
    text-wrap: pretty;
    overflow-wrap: anywhere;
}


/* ============ TIMELINE (parcours) ============ */
.timeline {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    padding-left: 24px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    opacity: 0.35;
}
.timeline-item {
    position: relative;
    padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -22px;
    top: 6px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
    box-shadow: 0 0 12px rgba(94, 243, 140, 0.6);
}
.timeline-content {
    background: rgba(13, 17, 28, 0.6);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 22px;
    backdrop-filter: blur(6px);
    transition: border-color .2s, transform .2s;
}
.timeline-content:hover {
    border-color: var(--line-strong);
    transform: translateX(2px);
}
.timeline-date {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: rgba(94, 243, 140, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.timeline-content h3 {
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.timeline-content p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.55;
    margin: 0;
}
.parcours-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============ SKILLS GRID (compétences) ============ */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 900px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .skills-grid { grid-template-columns: 1fr; } }

/* ============ Passions (about) ============ */
.passions-list { list-style: none; margin: 0; padding: 0; }
.passions-list li {
    font-size: 14px;
    color: var(--text-2);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
}
.passions-list li::before {
    content: "▹";
    position: absolute; left: 0;
    color: var(--primary);
    font-size: 11px;
    top: 9px;
}
.passions-list li strong { color: var(--text); }
.about-passions header { margin-bottom: 14px; }

/* =====================================================================
   MICRO-ANIMATIONS (vibe vivante — palette verte)
   ===================================================================== */

/* === 1. BOUTONS PRIMAIRES : gradient shimmer en continu === */
/* === Bouton primaire : shine sweep discret === */
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.30) 50%,
        transparent 100%);
    animation: shine-sweep 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shine-sweep {
    0%, 65%, 100% { left: -100%; }
    85%           { left: 100%; }
}

/* === 2. TITRES EN GRADIENT : shimmer text continu === */
/* === Titres en gradient : pulse glow subtil (sans bande visible) === */
.hero-title .grad,
.hero-title .grad.accent,
.section-head h2 .grad {
    animation: title-glow 6s ease-in-out infinite;
}
@keyframes title-glow {
    0%, 100% { filter: brightness(1)    drop-shadow(0 0 0   rgba(94, 243, 140, 0)); }
    50%      { filter: brightness(1.08) drop-shadow(0 0 14px rgba(94, 243, 140, 0.40)); }
}

/* === 3. STACK-ICON : pulse glow au hover === */
.stack-icon {
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
    box-shadow: 0 0 0 0 rgba(94, 243, 140, 0);
}
.stack-card:hover .stack-icon,
.about-card:hover .stack-icon {
    transform: scale(1.15) rotate(-6deg);
    box-shadow: 0 0 24px 0 rgba(94, 243, 140, 0.5);
}

/* === 4. PROFILE PHOTO : halo qui respire === */
.profile-photo {
    animation: photo-glow 4s ease-in-out infinite;
}
@keyframes photo-glow {
    0%, 100% {
        box-shadow:
            0 0 0 6px rgba(94, 243, 140, 0.15),
            0 12px 50px rgba(94, 243, 140, 0.25),
            0 0 0 1px rgba(255,255,255,0.05);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(94, 243, 140, 0.22),
            0 16px 60px rgba(94, 243, 140, 0.40),
            0 0 0 1px rgba(255,255,255,0.05);
    }
}

/* === 5. TIMELINE DOTS : pulse léger === */
.timeline-dot {
    animation: timeline-pulse 3s ease-in-out infinite;
}
.timeline-item:nth-child(2) .timeline-dot { animation-delay: 1s; }
.timeline-item:nth-child(3) .timeline-dot { animation-delay: 2s; }
@keyframes timeline-pulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(94, 243, 140, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 22px rgba(94, 243, 140, 0.9);
        transform: scale(1.18);
    }
}

/* === 6. HEART ♡ : heartbeat === */
.heart {
    display: inline-block;
    animation: heartbeat 1.8s ease-in-out infinite;
    transform-origin: center;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.22); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.14); }
    70%      { transform: scale(1); }
}

/* === 7. KICKER `// 01 — about` : underline qui slide === */
.kicker {
    position: relative;
    overflow: hidden;
}
.kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: kicker-shimmer 3.5s ease-in-out infinite;
}
@keyframes kicker-shimmer {
    0%, 80%, 100% { transform: translateX(-100%); }
    40%           { transform: translateX(100%); }
}

/* === 8. NAV LINKS : underline animé au hover === */
.nav a:not(.cta), .footer-nav a {
    position: relative;
}
.nav a:not(.cta)::after, .footer-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.nav a:not(.cta):hover::after, .footer-nav a:hover::after {
    transform: scaleX(1);
}

/* === 9. PASSIONS-LIST : ▹ qui slide à droite au survol === */
.passions-list li {
    transition: transform .25s ease, color .25s ease;
}
.passions-list li::before {
    transition: transform .25s ease;
}
.passions-list li:hover {
    color: var(--text);
}
.passions-list li:hover::before {
    transform: translateX(4px);
    color: var(--accent);
}

/* === 10. TIMELINE-CONTENT : glow au hover === */
.timeline-content {
    transition: border-color .25s, transform .25s, box-shadow .35s;
}
.timeline-content:hover {
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(94, 243, 140, 0.18);
}

/* === REDUCE MOTION === */
@media (prefers-reduced-motion: reduce) {
    .btn-primary,
    .hero-title .grad, .hero-title .grad.accent, .section-head h2 .grad,
    .heart, .timeline-dot, .profile-photo, .kicker::after {
        animation: none !important;
    }
    .stack-icon, .passions-list li, .timeline-content {
        transition: none !important;
    }
}

/* =====================================================================
   STEAM — Mes jeux du moment
   ===================================================================== */
.steam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) { .steam-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steam-grid { grid-template-columns: 1fr; } }

.steam-grid[data-loading="true"] {
    grid-template-columns: 1fr;
    min-height: 200px;
    place-items: center;
}
.steam-loading {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--text-2);
    padding: 60px 0;
}

.game-card {
    display: block;
    background: rgba(13, 17, 28, 0.65);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
}
.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 14px 40px rgba(94, 243, 140, 0.18);
}

.game-cover {
    position: relative;
    aspect-ratio: 460 / 215;
    overflow: hidden;
    background: linear-gradient(135deg, #050807 0%, #0a1812 100%);
}
.game-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.game-card:hover .game-cover img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 10px; right: 10px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 8px;
    background: var(--green);
    color: #001016;
    border-radius: 4px;
    box-shadow: 0 0 14px rgba(94, 243, 140, 0.6);
    text-transform: uppercase;
}

.game-info {
    padding: 14px 16px;
}
.game-info h3 {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.game-stats {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
}
.game-hours {
    color: var(--primary);
    font-weight: 600;
}
.game-2w {
    color: var(--text-2);
}
.game-2w::before {
    content: "·";
    margin-right: 6px;
    color: var(--text-3);
}

.steam-meta {
    text-align: center;
    margin-top: 32px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
}

.steam-empty {
    text-align: center;
    color: var(--text-2);
    font-family: var(--mono);
    padding: 40px;
    grid-column: 1 / -1;
}
