/* =============================================
   JULIEN MC THEME — main.css
   Minecraft aesthetic WordPress theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Inter:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    /* Palette Minecraft */
    --grass:        #5D9E31;
    --grass-dark:   #3E7A1E;
    --dirt:         #8B5E3C;
    --dirt-dark:    #5C3D20;
    --stone:        #898989;
    --stone-dark:   #5A5A5A;
    --stone-light:  #BCBCBC;
    --wood:         #B8845A;
    --wood-dark:    #7A5230;
    --sand:         #E8D59E;
    --sky:          #3A8CC1;
    --sky-light:    #6EB8E0;
    --diamond:      #5DECF5;
    --diamond-dark: #1BADC4;
    --gold:         #FCDB4A;
    --gold-dark:    #C8970D;
    --iron:         #D4D4D4;
    --redstone:     #C41B1B;
    --emerald:      #17DD62;
    --lapis:        #1A3EC9;
    --obsidian:     #1A0A2E;
    --coal:         #1E1E1E;
    --netherrack:   #7D2B2B;
    --creeper:      #3FA23F;

    /* UI */
    --ui-bg:        #202020;
    --ui-panel:     #2D2D2D;
    --ui-slot:      #373737;
    --ui-slot-dark: #181818;
    --ui-border:    #555555;
    --ui-border-light: #888888;
    --ui-text:      #E0E0E0;
    --ui-shadow:    rgba(0,0,0,0.6);

    /* Inventory colors */
    --inv-bg:       #C6C6C6;
    --inv-dark:     #555555;
    --inv-light:    #FFFFFF;
    --inv-slot:     #8B8B8B;

    /* Fonts */
    --font-pixel:   'Press Start 2P', monospace;
    --font-body:    'Inter', system-ui, sans-serif;

    /* Shadows */
    --shadow-block: inset -2px -4px 0 rgba(0,0,0,0.4), inset 2px 2px 0 rgba(255,255,255,0.2);
    --shadow-pixel: 2px 2px 0 rgba(0,0,0,0.8);
    --text-shadow:  2px 2px 0 #000, 3px 3px 0 rgba(0,0,0,0.5);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; image-rendering: pixelated; }

body {
    background-color: var(--coal);
    color: var(--ui-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;

    /* Stone background texture */
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(0,0,0,0.08) 15px, rgba(0,0,0,0.08) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(0,0,0,0.08) 15px, rgba(0,0,0,0.08) 16px),
        linear-gradient(135deg, #1a1a1a 0%, #222222 50%, #1a1a1a 100%);
}

a { color: var(--diamond); text-decoration: none; transition: color 0.1s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; image-rendering: pixelated; }

/* =============================================
   CUSTOM CURSOR (pickaxe shape via emoji)
   ============================================= */
.mc-cursor {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    font-size: 20px; line-height: 1;
    transform: translate(-4px, -4px);
    filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.8));
    transition: transform 0.05s;
}
.mc-cursor-block {
    position: fixed; top: 0; left: 0;
    width: 24px; height: 24px;
    pointer-events: none; z-index: 9998;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    opacity: 0;
    transition: opacity 0.2s;
}

/* =============================================
   PIXEL BORDER MIXIN (Minecraft UI style)
   ============================================= */
.pixel-border {
    border: 3px solid var(--inv-dark);
    box-shadow:
        inset 0 0 0 1px var(--inv-light),
        0 0 0 1px var(--inv-dark),
        3px 3px 0 rgba(0,0,0,0.5);
}

.block-border {
    border: 3px solid #000;
    box-shadow:
        inset -3px -3px 0 rgba(0,0,0,0.4),
        inset 3px 3px 0 rgba(255,255,255,0.25),
        3px 3px 0 rgba(0,0,0,0.6);
    image-rendering: pixelated;
}

/* =============================================
   MINECRAFT BUTTON STYLE
   ============================================= */
.mc-btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-pixel);
    font-size: 10px;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
    background: linear-gradient(180deg, #6E6E6E 0%, #5A5A5A 45%, #4A4A4A 50%, #606060 100%);
    border: 2px solid #000;
    box-shadow:
        inset -2px -3px 0 rgba(0,0,0,0.5),
        inset 2px 2px 0 rgba(255,255,255,0.3),
        2px 2px 0 rgba(0,0,0,0.4);
    cursor: none;
    text-decoration: none;
    transition: all 0.05s;
    position: relative;
    text-transform: uppercase;
}
.mc-btn:hover {
    background: linear-gradient(180deg, #8E8EFF 0%, #7A7AEE 45%, #6A6ADE 50%, #8080FF 100%);
    color: #fff;
    box-shadow:
        inset -2px -3px 0 rgba(0,0,0,0.5),
        inset 2px 2px 0 rgba(255,255,255,0.3),
        2px 2px 0 rgba(0,0,0,0.4),
        0 0 12px rgba(100,100,255,0.4);
}
.mc-btn:active {
    background: linear-gradient(180deg, #5A5AEE 0%, #4A4ADE 45%, #3A3ACE 50%, #5050EE 100%);
    transform: translate(2px, 2px);
    box-shadow:
        inset -1px -2px 0 rgba(0,0,0,0.5),
        inset 1px 1px 0 rgba(255,255,255,0.2);
}

.mc-btn-green {
    background: linear-gradient(180deg, #4E9E2E 0%, #3A7A1E 45%, #2E6A14 50%, #4A9428 100%);
}
.mc-btn-green:hover {
    background: linear-gradient(180deg, #6ECE4E 0%, #5AAA3E 45%, #4A9A2E 50%, #64C448 100%);
    color: #fff;
    box-shadow:
        inset -2px -3px 0 rgba(0,0,0,0.5),
        inset 2px 2px 0 rgba(255,255,255,0.3),
        2px 2px 0 rgba(0,0,0,0.4),
        0 0 12px rgba(80,200,80,0.4);
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
@keyframes float-block {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
@keyframes dig {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(0.95); }
}
@keyframes creeper-blink {
    0%, 90%, 100% { opacity: 1; }
    92%, 96% { opacity: 0.3; }
}
@keyframes xp-pulse {
    0%, 100% { box-shadow: 0 0 4px rgba(130,220,50,0.6); }
    50%       { box-shadow: 0 0 12px rgba(130,220,50,1); }
}
@keyframes torch-flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    25%  { opacity: 0.85; transform: scale(0.97) rotate(-1deg); }
    50%  { opacity: 0.95; transform: scale(1.02) rotate(1deg); }
    75%  { opacity: 0.9;  transform: scale(0.98) rotate(-0.5deg); }
}
@keyframes pixel-fall {
    from { transform: translateY(-10px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
@keyframes clouds {
    from { transform: translateX(-200px); }
    to   { transform: translateX(1400px); }
}

.fade-in {
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.4s, transform 0.4s;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAV
   ============================================= */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 60px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px;

    /* Dirt/wood plank texture */
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0,0,0,0) 0px, rgba(0,0,0,0) 3px,
            rgba(0,0,0,0.15) 3px, rgba(0,0,0,0.15) 4px
        ),
        linear-gradient(180deg, #4A2E10 0%, #3A2008 50%, #4A2E10 100%);
    border-bottom: 4px solid #1A0A00;
    box-shadow: 0 4px 0 rgba(0,0,0,0.5);
}

.nav-logo {
    font-family: var(--font-pixel);
    font-size: 10px;
    color: var(--gold);
    text-shadow: 2px 2px 0 var(--gold-dark), 3px 3px 0 rgba(0,0,0,0.6);
    text-decoration: none;
    letter-spacing: 2px;
    cursor: none;
    display: flex; align-items: center; gap: 12px;
}
.nav-logo:hover { color: var(--diamond); }
.nav-logo:hover .logo-text { color: var(--diamond); text-shadow: 2px 2px 0 var(--diamond-dark), 3px 3px 0 rgba(0,0,0,0.6); }

.logo-svg {
    width: 40px; height: 40px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.7));
    transition: transform 0.3s ease;
    animation: float-block 3.5s ease-in-out infinite;
}
.nav-logo:hover .logo-svg { transform: scale(1.1) rotate(-5deg); }

.logo-text {
    color: var(--gold);
    text-shadow: 2px 2px 0 var(--gold-dark), 3px 3px 0 rgba(0,0,0,0.6);
    letter-spacing: 3px;
    transition: color 0.15s, text-shadow 0.15s;
}

.nav-links {
    display: flex; gap: 4px; list-style: none;
}
.nav-links li a {
    color: var(--ui-text);
    text-decoration: none;
    font-family: var(--font-pixel);
    font-size: 8px;
    padding: 6px 12px;
    display: block;
    text-shadow: var(--shadow-pixel);
    transition: color 0.1s;
    cursor: none;
}
.nav-links li a:hover,
.nav-links li.current-menu-item a {
    color: var(--gold);
    text-shadow: 2px 2px 0 var(--gold-dark);
}

.nav-cta {
    font-size: 7px !important;
}

/* Hamburger */
.nav-hamburger {
    display: none; background: none; border: none;
    cursor: none; padding: 8px; flex-direction: column; gap: 4px;
}
.nav-hamburger span {
    display: block; width: 22px; height: 3px;
    background: var(--gold); image-rendering: pixelated;
    transition: all 0.2s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    padding-top: 60px;
}

/* Sky background */
.hero-sky {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        #1A7AB4 0%,
        #3A9CD4 35%,
        #78C0E8 60%,
        #A8D8F0 75%,
        #D4ECF8 80%,
        /* grass line */
        #5D9E31 80%,
        #5D9E31 84%,
        /* dirt */
        #8B5E3C 84%,
        #8B5E3C 100%
    );
}

/* Pixel clouds */
.cloud {
    position: absolute;
    background: rgba(255,255,255,0.9);
    image-rendering: pixelated;
}
.cloud-1 {
    width: 96px; height: 32px; top: 15%; left: -200px;
    box-shadow: 32px -16px 0 rgba(255,255,255,0.9), 64px -16px 0 rgba(255,255,255,0.9),
                -32px 0 0 rgba(255,255,255,0.9), 96px 0 0 rgba(255,255,255,0.9),
                0 16px 0 rgba(255,255,255,0.9), 32px 16px 0 rgba(255,255,255,0.9), 64px 16px 0 rgba(255,255,255,0.9);
    animation: clouds 40s linear infinite;
}
.cloud-2 {
    width: 64px; height: 32px; top: 25%; left: -200px;
    box-shadow: 32px -16px 0 rgba(255,255,255,0.85), -16px 0 0 rgba(255,255,255,0.85),
                64px 0 0 rgba(255,255,255,0.85), 0 16px 0 rgba(255,255,255,0.85), 32px 16px 0 rgba(255,255,255,0.85);
    animation: clouds 55s linear infinite 15s;
}
.cloud-3 {
    width: 80px; height: 32px; top: 10%; left: -200px;
    box-shadow: 32px -16px 0 rgba(255,255,255,0.88), 16px -16px 0 rgba(255,255,255,0.88),
                -16px 0 0 rgba(255,255,255,0.88), 80px 0 0 rgba(255,255,255,0.88),
                0 16px 0 rgba(255,255,255,0.88), 32px 16px 0 rgba(255,255,255,0.88), 64px 16px 0 rgba(255,255,255,0.88);
    animation: clouds 48s linear infinite 8s;
}

/* Floating blocks */
.floating-blocks {
    position: absolute; inset: 0; pointer-events: none;
}
.f-block {
    position: absolute;
    width: 40px; height: 40px;
    image-rendering: pixelated;
    opacity: 0.7;
}
.f-block-grass {
    background:
        linear-gradient(180deg, var(--grass) 0%, var(--grass) 30%, var(--dirt) 30%, var(--dirt) 100%);
    box-shadow: inset -4px -4px 0 rgba(0,0,0,0.3), inset 4px 4px 0 rgba(255,255,255,0.15), 3px 3px 0 rgba(0,0,0,0.4);
    border: 2px solid rgba(0,0,0,0.5);
}
.f-block-diamond {
    background: var(--diamond);
    box-shadow: inset -4px -4px 0 rgba(0,50,80,0.4), inset 4px 4px 0 rgba(255,255,255,0.3), 3px 3px 0 rgba(0,0,0,0.4);
    border: 2px solid rgba(0,0,0,0.5);
}
.f-block-gold {
    background: var(--gold);
    box-shadow: inset -4px -4px 0 rgba(100,60,0,0.4), inset 4px 4px 0 rgba(255,255,255,0.3), 3px 3px 0 rgba(0,0,0,0.4);
    border: 2px solid rgba(0,0,0,0.5);
}
.f-block-tnt {
    background: repeating-linear-gradient(0deg, #C41B1B 0px, #C41B1B 8px, #fff 8px, #fff 16px);
    box-shadow: inset -4px -4px 0 rgba(0,0,0,0.3), 3px 3px 0 rgba(0,0,0,0.4);
    border: 2px solid rgba(0,0,0,0.5);
}

/* Hero inner */
.hero-inner {
    position: relative; z-index: 2;
    flex: 1; display: flex; align-items: center;
    padding: 60px 24px 120px;
}
.hero-content {
    max-width: 1140px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 440px; gap: 48px; align-items: center;
}

/* Hero text */
.hero-pretitle {
    font-family: var(--font-pixel);
    font-size: 9px; color: var(--grass);
    text-shadow: 1px 1px 0 var(--grass-dark), 2px 2px 0 rgba(0,0,0,0.6);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.hero-pretitle::before { content: '▶'; animation: creeper-blink 2s step-start infinite; }

.hero-title {
    font-family: var(--font-pixel);
    font-size: clamp(16px, 2.5vw, 28px);
    line-height: 1.6;
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.8), 4px 4px 0 rgba(0,0,0,0.4);
    margin-bottom: 16px;
}
.hero-title .t-grass  { color: var(--grass);   text-shadow: 2px 2px 0 var(--grass-dark), 3px 3px 0 #000; }
.hero-title .t-diamond{ color: var(--diamond);  text-shadow: 2px 2px 0 var(--diamond-dark), 3px 3px 0 #000; }
.hero-title .t-gold   { color: var(--gold);     text-shadow: 2px 2px 0 var(--gold-dark), 3px 3px 0 #000; }

.hero-desc {
    font-family: var(--font-body);
    font-size: 16px; color: #ccc;
    line-height: 1.6; max-width: 520px;
    margin-bottom: 32px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}
.hero-desc em { color: var(--diamond); font-style: normal; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* =============================================
   PLAYER CARD (Inventory style)
   ============================================= */
.player-card {
    background: var(--inv-bg);
    border: 3px solid var(--inv-dark);
    box-shadow:
        inset 0 0 0 2px var(--inv-light),
        inset 3px 3px 0 rgba(255,255,255,0.5),
        inset -3px -3px 0 rgba(0,0,0,0.3),
        6px 6px 0 rgba(0,0,0,0.5);
    padding: 16px;
    font-family: var(--font-pixel);
    image-rendering: pixelated;
}

.inv-title-bar {
    background: linear-gradient(90deg, #1849B4, #2060C8);
    padding: 8px 12px;
    margin: -16px -16px 16px -16px;
    font-size: 10px; color: #fff;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
    border-bottom: 2px solid var(--inv-dark);
    display: flex; justify-content: space-between; align-items: center;
}
.inv-title-bar .inv-close {
    width: 16px; height: 16px;
    background: var(--redstone);
    border: 2px solid #000;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: #fff; cursor: none;
    box-shadow: inset -1px -1px 0 rgba(0,0,0,0.4), inset 1px 1px 0 rgba(255,255,255,0.2);
}

/* Player avatar area */
.inv-avatar-area {
    display: flex; gap: 16px; margin-bottom: 16px;
}

.inv-avatar {
    width: 64px; height: 96px; flex-shrink: 0;
    position: relative;
    image-rendering: pixelated;
}
/* avatar drawn via SVG in front-page.php */






/* Player stats */
.inv-stats { flex: 1; }
.inv-name {
    font-family: var(--font-pixel); font-size: 11px; color: #2A1000;
    text-shadow: 1px 1px 0 rgba(255,200,0,0.3);
    margin-bottom: 6px;
}
.inv-class {
    font-family: var(--font-body); font-size: 12px; color: #444444;
    margin-bottom: 12px; font-weight: 500;
}

/* Health bar */
.inv-bar-wrap {
    margin-bottom: 8px;
}
.inv-bar-label {
    font-family: var(--font-body); font-size: 11px; font-weight: 600; color: #333333;
    display: flex; justify-content: space-between;
    margin-bottom: 4px;
}
.inv-bar-label .hearts { color: #B00000; letter-spacing: 1px; font-weight: 700; }

.inv-bar-bg {
    height: 10px;
    background: var(--inv-slot-dark);
    border: 2px solid #000;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,0.5);
    position: relative; overflow: hidden;
}
.inv-bar-fill {
    height: 100%; position: relative;
    transition: width 1.5s ease;
    image-rendering: pixelated;
}
.bar-health {
    background: repeating-linear-gradient(90deg, #E02020 0px, #E02020 3px, #C01010 3px, #C01010 6px);
}
.bar-xp {
    background: repeating-linear-gradient(90deg, #80DC20 0px, #80DC20 3px, #60B810 3px, #60B810 6px);
    animation: xp-pulse 2s ease-in-out infinite;
}
.bar-food {
    background: repeating-linear-gradient(90deg, #D89020 0px, #D89020 3px, #B07010 3px, #B07010 6px);
}
.bar-armor {
    background: repeating-linear-gradient(90deg, var(--diamond) 0px, var(--diamond) 3px, var(--diamond-dark) 3px, var(--diamond-dark) 6px);
}
.bar-diamond {
    background: repeating-linear-gradient(90deg, var(--diamond) 0px, var(--diamond) 3px, var(--diamond-dark) 3px, var(--diamond-dark) 6px);
}

/* Inventory slots grid */
.inv-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 3px;
    margin-top: 12px;
    padding: 8px;
    background: var(--inv-slot);
    border: 2px solid var(--inv-dark);
    box-shadow: inset 2px 2px 0 rgba(0,0,0,0.3);
}
.inv-row-label {
    grid-column: 1 / -1;
    font-family: var(--font-pixel); font-size: 7px; color: #444;
    margin-bottom: 4px; margin-top: 8px; letter-spacing: 1px;
}
.inv-row-label:first-child { margin-top: 0; }

.inv-slot-item {
    aspect-ratio: 1;
    background: var(--ui-slot-dark);
    border: 2px solid #000;
    box-shadow:
        inset -1px -1px 0 rgba(255,255,255,0.15),
        inset 1px 1px 0 rgba(0,0,0,0.6);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; font-size: 16px;
    cursor: none; transition: background 0.1s;
    overflow: hidden;
}
.inv-slot-item:hover {
    background: var(--ui-slot);
    box-shadow:
        inset -1px -1px 0 rgba(255,255,255,0.25),
        inset 1px 1px 0 rgba(0,0,0,0.4),
        0 0 0 2px rgba(255,255,255,0.2);
}
.inv-slot-item.active {
    background: var(--lapis);
    box-shadow: inset -1px -1px 0 rgba(255,255,255,0.2), inset 1px 1px 0 rgba(0,0,0,0.4);
}
.inv-slot-item .slot-count {
    position: absolute; bottom: 1px; right: 2px;
    font-size: 10px; color: #fff; text-shadow: 1px 1px 0 #000;
    font-family: var(--font-pixel);
    line-height: 1;
}
.inv-slot-empty { opacity: 0.15; }

/* Hotbar (bottom of inventory) */
.inv-hotbar {
    display: flex; gap: 3px; margin-top: 3px;
    padding: 4px 8px;
    background: var(--inv-slot);
    border: 2px solid var(--inv-dark);
    box-shadow: inset 2px 2px 0 rgba(0,0,0,0.3);
}
.hotbar-slot {
    flex: 1; aspect-ratio: 1;
    background: var(--ui-slot-dark);
    border: 2px solid #000;
    box-shadow: inset -1px -1px 0 rgba(255,255,255,0.1), inset 1px 1px 0 rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    position: relative;
}
.hotbar-slot.selected {
    border-color: #fff;
    box-shadow: inset -1px -1px 0 rgba(255,255,255,0.2), inset 1px 1px 0 rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.4);
}
.hotbar-slot .slot-count {
    position: absolute; bottom: 1px; right: 2px;
    font-size: 9px; color: #fff; text-shadow: 1px 1px 0 #000;
    font-family: var(--font-pixel); line-height: 1;
}

/* =============================================
   HOTBAR BAR (bottom fixed)
   ============================================= */
.mc-hotbar-fixed {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 50; display: flex; gap: 3px;
    background: rgba(139,94,60,0.9);
    border: 3px solid #000;
    box-shadow: inset -2px -2px 0 rgba(0,0,0,0.4), inset 2px 2px 0 rgba(255,255,255,0.2), 3px 3px 0 rgba(0,0,0,0.5);
    padding: 4px;
    backdrop-filter: blur(4px);
}
.hb-slot {
    width: 44px; height: 44px;
    background: var(--ui-slot-dark);
    border: 2px solid rgba(0,0,0,0.8);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; cursor: none; position: relative;
    transition: background 0.1s;
    box-shadow: inset -1px -1px 0 rgba(255,255,255,0.1), inset 1px 1px 0 rgba(0,0,0,0.5);
}
.hb-slot.selected {
    border-color: #fff;
    box-shadow: inset -1px -1px 0 rgba(255,255,255,0.2), 0 0 0 1px rgba(255,255,255,0.5);
}
.hb-slot:hover { background: var(--ui-slot); }
.hb-tooltip {
    position: absolute; bottom: 52px; left: 50%;
    transform: translateX(-50%);
    background: var(--obsidian); color: var(--diamond);
    border: 1px solid var(--lapis);
    padding: 4px 8px; font-size: 8px;
    white-space: nowrap; pointer-events: none; opacity: 0;
    font-family: var(--font-pixel);
    text-shadow: 1px 1px 0 rgba(0,0,255,0.3);
    transition: opacity 0.1s;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}
.hb-slot:hover .hb-tooltip { opacity: 1; }

/* =============================================
   XP BAR
   ============================================= */
.xp-bar-fixed {
    position: fixed; bottom: 74px; left: 50%; transform: translateX(-50%);
    z-index: 50;
    width: 320px; height: 8px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(0,0,0,0.8);
    overflow: hidden;
}
.xp-bar-fill {
    height: 100%; width: 68%;
    background: repeating-linear-gradient(90deg, #80DC20 0px, #80DC20 4px, #60B810 4px, #60B810 8px);
    animation: xp-pulse 2s ease-in-out infinite;
}
.xp-bar-level {
    position: absolute; top: -18px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-pixel); font-size: 8px;
    color: var(--grass); text-shadow: 1px 1px 0 rgba(0,0,0,0.8);
}

/* =============================================
   GRASS DIVIDER
   ============================================= */
.grass-divider {
    height: 32px; position: relative;
    overflow: hidden;
}
.grass-top {
    height: 16px;
    background: repeating-linear-gradient(
        90deg,
        var(--grass) 0px, var(--grass) 15px,
        var(--grass-dark) 15px, var(--grass-dark) 16px
    );
    box-shadow: 0 2px 0 rgba(0,0,0,0.3);
}
.grass-dirt {
    height: 16px;
    background: repeating-linear-gradient(
        90deg,
        var(--dirt) 0px, var(--dirt) 15px,
        var(--dirt-dark) 15px, var(--dirt-dark) 16px
    );
}

/* =============================================
   SECTION BASE
   ============================================= */
section { padding: 80px 24px; }

.section-tag {
    font-family: var(--font-pixel);
    font-size: 9px; color: var(--grass);
    text-shadow: 1px 1px 0 var(--grass-dark);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}
.section-tag::before {
    content: '⛏';
    font-size: 16px;
}

.section-title {
    font-family: var(--font-pixel);
    font-size: clamp(14px, 2vw, 22px);
    color: #fff;
    text-shadow: var(--text-shadow);
    margin-bottom: 12px; line-height: 1.5;
}
.section-title .t-gold    { color: var(--gold);    text-shadow: 2px 2px 0 var(--gold-dark), 3px 3px 0 #000; }
.section-title .t-diamond { color: var(--diamond); text-shadow: 2px 2px 0 var(--diamond-dark), 3px 3px 0 #000; }
.section-title .t-grass   { color: var(--grass);   text-shadow: 2px 2px 0 var(--grass-dark), 3px 3px 0 #000; }
.section-title .t-emerald { color: var(--emerald);  text-shadow: 1px 1px 0 #006030, 2px 2px 0 #000; }

.section-sub {
    font-family: var(--font-body);
    font-size: 15px; color: #aaa;
    max-width: 560px; margin-bottom: 48px;
    line-height: 1.5;
}

/* =============================================
   SERVICES — CRAFTING TABLE GRID
   ============================================= */
.section-services {
    background:
        repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(0,0,0,0.12) 31px, rgba(0,0,0,0.12) 32px),
        repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(0,0,0,0.12) 31px, rgba(0,0,0,0.12) 32px),
        linear-gradient(135deg, #1C1208 0%, #251810 100%);
    border-top: 4px solid rgba(0,0,0,0.5);
    border-bottom: 4px solid rgba(0,0,0,0.5);
}

.crafting-table {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px;
    margin-top: 32px;
    background: var(--wood-dark);
    border: 4px solid var(--wood-dark);
    box-shadow: inset -4px -4px 0 rgba(0,0,0,0.4), inset 4px 4px 0 rgba(255,255,255,0.1), 4px 4px 0 rgba(0,0,0,0.5);
}

.craft-slot {
    background:
        repeating-linear-gradient(
            0deg, transparent, transparent 7px, rgba(0,0,0,0.15) 7px, rgba(0,0,0,0.15) 8px
        ),
        repeating-linear-gradient(
            90deg, transparent, transparent 7px, rgba(0,0,0,0.15) 7px, rgba(0,0,0,0.15) 8px
        ),
        linear-gradient(135deg, #A0703A 0%, #885A28 100%);
    border: 2px solid rgba(0,0,0,0.4);
    padding: 32px;
    position: relative; overflow: hidden;
    transition: filter 0.2s; cursor: none;
}
.craft-slot:hover { filter: brightness(1.15); }
.craft-slot::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
}

.craft-slot-num {
    font-family: var(--font-pixel); font-size: 8px; color: rgba(0,0,0,0.4);
    margin-bottom: 12px; display: block;
}
.craft-slot-icon { font-size: 36px; margin-bottom: 12px; display: block; line-height: 1; }
.craft-slot-title {
    font-family: var(--font-pixel); font-size: 12px; color: #fff;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.7);
    margin-bottom: 10px; line-height: 1.4;
}
.craft-slot-desc {
    font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.75); letter-spacing: 0;
    line-height: 1.5; margin-bottom: 16px;
}
.craft-slot-tags {
    display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px;
}
.craft-tag {
    font-family: var(--font-body); font-size: 11px; font-weight: 500;
    color: var(--gold); background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,210,70,0.35); padding: 3px 8px;
}
.craft-link {
    font-family: var(--font-pixel); font-size: 8px;
    color: var(--diamond); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color 0.1s; cursor: none;
    text-shadow: 1px 1px 0 rgba(0,50,100,0.5);
}
.craft-link:hover { color: var(--gold); }

/* =============================================
   SKILLS — ENCHANTMENT TABLE style
   ============================================= */
.section-skills {
    background:
        repeating-linear-gradient(
            135deg, transparent, transparent 14px, rgba(0,0,0,0.06) 14px, rgba(0,0,0,0.06) 15px
        ),
        linear-gradient(180deg, #100820 0%, #0A0514 100%);
    border-bottom: 4px solid rgba(0,0,0,0.5);
}

.skills-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

.enchant-panel {
    background: var(--obsidian);
    border: 3px solid var(--lapis);
    box-shadow:
        inset 0 0 20px rgba(26,62,201,0.2),
        inset -3px -3px 0 rgba(0,0,0,0.5),
        inset 3px 3px 0 rgba(100,120,255,0.15),
        4px 4px 0 rgba(0,0,0,0.6),
        0 0 30px rgba(26,62,201,0.15);
    padding: 24px;
}
.enchant-title {
    font-family: var(--font-pixel); font-size: 10px; color: var(--diamond);
    text-shadow: 1px 1px 0 var(--diamond-dark), 0 0 8px rgba(93,236,245,0.4);
    margin-bottom: 24px; text-align: center;
    padding-bottom: 12px; border-bottom: 1px solid rgba(26,62,201,0.4);
}

.skill-row { margin-bottom: 20px; }
.skill-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 6px;
}
.skill-name {
    font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--ui-text);
    display: flex; align-items: center; gap: 8px;
}
.skill-name .skill-icon { font-size: 14px; }
.skill-pct {
    font-family: var(--font-pixel); font-size: 9px; color: var(--grass);
    text-shadow: 1px 1px 0 var(--grass-dark);
}

.skill-bar-bg {
    height: 12px;
    background: var(--ui-slot-dark);
    border: 2px solid #000;
    box-shadow: inset 1px 1px 0 rgba(0,0,0,0.5);
    position: relative; overflow: hidden;
}
.skill-bar-fill {
    height: 100%; transition: width 2s ease;
    position: relative;
}
.skill-bar-fill::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 5px, rgba(0,0,0,0.25) 5px, rgba(0,0,0,0.25) 6px);
}

/* Colors */
.fill-grass    { background: linear-gradient(90deg, var(--grass), var(--emerald)); }
.fill-diamond  { background: linear-gradient(90deg, var(--diamond), #9FFAFF); }
.fill-gold     { background: linear-gradient(90deg, var(--gold), #FFE87A); }
.fill-redstone { background: linear-gradient(90deg, var(--redstone), #FF4040); }
.fill-lapis    { background: linear-gradient(90deg, var(--lapis), #4060EE); }

/* Project blocks */
.project-blocks {
    display: flex; flex-direction: column; gap: 8px;
}
.project-block {
    display: flex; align-items: center; gap: 12px;
    padding: 12px;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 7px, rgba(0,0,0,0.1) 7px, rgba(0,0,0,0.1) 8px),
        linear-gradient(180deg, var(--wood) 0%, var(--wood-dark) 100%);
    border: 2px solid rgba(0,0,0,0.5);
    box-shadow: inset -2px -2px 0 rgba(0,0,0,0.3), inset 2px 2px 0 rgba(255,255,255,0.1);
    cursor: none; transition: filter 0.1s;
}
.project-block:hover { filter: brightness(1.15); }
.project-block-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    background: var(--ui-slot-dark);
    border: 2px solid #000;
    box-shadow: inset -1px -1px 0 rgba(255,255,255,0.1), inset 1px 1px 0 rgba(0,0,0,0.5);
}
.project-info { flex: 1; }
.project-name {
    font-family: var(--font-body); font-size: 13px; font-weight: 500; color: #fff;
    margin-bottom: 6px;
}
.project-name a { color: #fff; text-decoration: none; }
.project-name a:hover { color: var(--gold); }
.project-bar-bg {
    height: 8px; background: var(--ui-slot-dark);
    border: 1px solid rgba(0,0,0,0.6);
    overflow: hidden;
}
.project-bar-fill {
    height: 100%; transition: width 2s ease;
    background: repeating-linear-gradient(90deg, var(--grass) 0px, var(--grass) 4px, var(--grass-dark) 4px, var(--grass-dark) 8px);
}
.project-xp {
    font-family: var(--font-pixel); font-size: 8px;
    width: 48px; text-align: right; flex-shrink: 0;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.6);
}

/* =============================================
   PROCESS — Quest / Achievement style
   ============================================= */
.section-process {
    background:
        linear-gradient(135deg, #1A1208 0%, #1E160A 100%);
    border-top: 4px solid rgba(0,0,0,0.5);
    border-bottom: 4px solid rgba(0,0,0,0.5);
}

.quest-log {
    margin-top: 40px;
    background: var(--coal);
    border: 3px solid var(--stone-dark);
    box-shadow: inset -3px -3px 0 rgba(0,0,0,0.4), inset 3px 3px 0 rgba(255,255,255,0.05), 4px 4px 0 rgba(0,0,0,0.5);
    overflow: hidden;
}
.quest-header {
    background: linear-gradient(180deg, #5D3A00 0%, #4A2A00 100%);
    padding: 12px 20px;
    border-bottom: 2px solid rgba(0,0,0,0.4);
    font-family: var(--font-pixel); font-size: 9px; color: var(--gold);
    text-shadow: 1px 1px 0 var(--gold-dark);
    display: flex; align-items: center; gap: 10px;
}

.quest-steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.quest-step {
    padding: 24px 16px; text-align: center;
    border-right: 2px solid rgba(255,255,255,0.05);
    position: relative; cursor: none; transition: background 0.2s;
}
.quest-step:last-child { border-right: none; }
.quest-step:hover { background: rgba(255,255,255,0.03); }

.quest-step-num {
    width: 48px; height: 48px;
    background: var(--ui-slot);
    border: 3px solid #000;
    box-shadow: inset -2px -2px 0 rgba(0,0,0,0.5), inset 2px 2px 0 rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-pixel); font-size: 12px; color: var(--gold);
    text-shadow: 1px 1px 0 var(--gold-dark);
    margin: 0 auto 16px;
    transition: all 0.2s;
}
.quest-step:hover .quest-step-num {
    background: var(--grass);
    color: #fff; text-shadow: 1px 1px 0 var(--grass-dark);
}

.quest-step-title {
    font-family: var(--font-pixel); font-size: 9px; color: #fff;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.7); margin-bottom: 8px;
}
.quest-step-desc {
    font-family: var(--font-body); font-size: 13px; color: var(--stone-light);
    line-height: 1.5;
}

/* Connector arrows */
.quest-step:not(:last-child)::after {
    content: '▶';
    position: absolute; right: -10px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-pixel); font-size: 8px;
    color: rgba(255,255,255,0.2); z-index: 1;
}

/* =============================================
   TESTIMONIALS — Book & Quill style
   ============================================= */
.section-testi {
    background:
        repeating-linear-gradient(
            45deg, transparent, transparent 20px, rgba(0,0,0,0.04) 20px, rgba(0,0,0,0.04) 21px
        ),
        linear-gradient(135deg, #1A1010 0%, #140808 100%);
}

.testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.testi-book {
    background:
        repeating-linear-gradient(
            0deg, transparent, transparent 23px, rgba(100,50,20,0.15) 23px, rgba(100,50,20,0.15) 24px
        ),
        linear-gradient(180deg, #C8965A 0%, #A87040 100%);
    border: 3px solid rgba(0,0,0,0.6);
    box-shadow: inset -3px -4px 0 rgba(0,0,0,0.3), inset 3px 3px 0 rgba(255,255,255,0.15), 4px 4px 0 rgba(0,0,0,0.5);
    padding: 20px;
    position: relative; cursor: none; transition: filter 0.2s;
}
.testi-book:hover { filter: brightness(1.1); }
.testi-book::before {
    content: '';
    position: absolute; left: 0; top: 8px; bottom: 8px; width: 8px;
    background: linear-gradient(180deg, #7A4A20 0%, #5A3010 50%, #7A4A20 100%);
    border-right: 2px solid rgba(0,0,0,0.3);
}

.book-stars {
    font-size: 16px; color: var(--gold);
    margin-bottom: 12px; padding-left: 12px; letter-spacing: 2px;
}
.book-text {
    font-family: var(--font-body); font-size: 14px;
    color: #2A1A0A; line-height: 1.7;
    margin-bottom: 16px; padding-left: 12px;
    font-style: italic;
}
.book-author {
    display: flex; align-items: center; gap: 10px; padding-left: 12px;
    border-top: 1px solid rgba(0,0,0,0.2); padding-top: 12px;
}
.book-avatar {
    width: 32px; height: 32px;
    background: var(--ui-slot-dark);
    border: 2px solid rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.book-name {
    font-family: var(--font-pixel); font-size: 9px;
    color: #2A1A0A; text-shadow: none;
}
.book-company {
    font-family: var(--font-body); font-size: 13px; color: #5A4030;
}

/* =============================================
   FAQ — Signs style
   ============================================= */
.section-faq {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(60,40,10,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(30,20,5,0.3) 0%, transparent 60%),
        linear-gradient(180deg, #1A1208 0%, #0E0A04 100%);
}

/* ── Panneau global (le poteau + les planches) ── */
.faq-board {
    max-width: 760px;
    position: relative;
    padding: 0 0 0 36px; /* espace pour le poteau */
}

/* Poteau vertical */
.faq-board::before {
    content: '';
    position: absolute;
    left: 12px; top: 0; bottom: -20px;
    width: 20px;
    background:
        repeating-linear-gradient(
            0deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px,
            transparent 1px, transparent 8px
        ),
        linear-gradient(90deg, #5A3510 0%, #7A4A20 40%, #6A3E18 100%);
    border: 2px solid rgba(0,0,0,0.6);
    box-shadow: inset -2px 0 0 rgba(0,0,0,0.3), inset 2px 0 0 rgba(255,255,255,0.08), 2px 0 0 rgba(0,0,0,0.3);
}

/* Crochets de fixation sur le poteau */
.faq-board::after {
    content: '';
    position: absolute;
    left: 4px; top: 24px;
    width: 36px; height: 8px;
    background: #3A2010;
    border: 2px solid rgba(0,0,0,0.7);
    box-shadow: 0 120px 0 #3A2010, 0 240px 0 #3A2010, 0 360px 0 #3A2010;
    border-radius: 0;
    z-index: 1;
}

/* Chaque panneau = une planche de bois */
.faq-sign {
    position: relative;
    margin-bottom: 10px;
    /* Clou de fixation à gauche */
}

/* Clou de fixation */
.faq-sign::before {
    content: '●';
    position: absolute;
    left: -24px; top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #888;
    text-shadow: 0 0 2px rgba(0,0,0,0.8);
    z-index: 2;
}

/* Planche de bois principale */
.faq-sign-inner {
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0px, transparent 7px,
            rgba(0,0,0,0.08) 7px, rgba(0,0,0,0.08) 8px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px, transparent 40px,
            rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px
        ),
        linear-gradient(180deg, #C8905A 0%, #A87040 50%, #B87848 100%);
    border: 3px solid rgba(0,0,0,0.65);
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,0.2),
        inset 0 -2px 0 rgba(0,0,0,0.3),
        inset 2px 0 0 rgba(255,255,255,0.1),
        inset -2px 0 0 rgba(0,0,0,0.2),
        4px 4px 0 rgba(0,0,0,0.5);
    overflow: hidden;
    /* Légère rotation aléatoire via nth-child */
    transform: rotate(0deg);
    transition: filter 0.15s, transform 0.15s;
}
.faq-sign:nth-child(2n) .faq-sign-inner { transform: rotate(0.4deg); }
.faq-sign:nth-child(3n) .faq-sign-inner { transform: rotate(-0.3deg); }
.faq-sign:nth-child(4n) .faq-sign-inner { transform: rotate(0.5deg); }

.faq-sign-inner:hover { filter: brightness(1.12); }

/* Ligne de grain du bois (décorative) */
.faq-sign-inner::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        88deg,
        transparent 0%, transparent 30%,
        rgba(100,60,20,0.06) 30%, rgba(100,60,20,0.06) 31%,
        transparent 31%, transparent 60%,
        rgba(80,40,10,0.04) 60%, rgba(80,40,10,0.04) 61%
    );
    pointer-events: none;
}

.sign-q {
    padding: 16px 20px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; cursor: none; position: relative;
}
.sign-q-text {
    font-family: var(--font-body); font-size: 14px; font-weight: 700;
    color: #1A0800;
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
    line-height: 1.5;
}
.sign-icon {
    font-family: var(--font-pixel); font-size: 13px;
    color: #4A2800; flex-shrink: 0; margin-left: 16px;
    background: rgba(0,0,0,0.15);
    border: 2px solid rgba(0,0,0,0.3);
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset -1px -1px 0 rgba(0,0,0,0.3), inset 1px 1px 0 rgba(255,255,255,0.2);
    transition: transform 0.25s;
    font-style: normal;
}
.faq-sign.open .sign-icon { transform: rotate(45deg); }

.sign-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-sign.open .sign-a { max-height: 240px; }

.sign-a-inner {
    padding: 0 20px 16px;
    /* papier parchemin sous la planche */
    background:
        repeating-linear-gradient(
            0deg, transparent, transparent 23px,
            rgba(100,60,0,0.12) 23px, rgba(100,60,0,0.12) 24px
        ),
        linear-gradient(180deg, #F5E8C8 0%, #EDD89A 100%);
    border-top: 3px solid rgba(0,0,0,0.25);
    font-family: var(--font-body); font-size: 14px;
    color: #2A1400; line-height: 1.75;
    padding-top: 14px;
}

/* =============================================
   BLOG — Chest/Barrel style
   ============================================= */
.section-blog {
    background: linear-gradient(135deg, #080C18 0%, #0C1020 100%);
    border-top: 4px solid rgba(0,0,0,0.5);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.blog-chest {
    background:
        repeating-linear-gradient(
            0deg, transparent, transparent 7px, rgba(0,0,0,0.1) 7px, rgba(0,0,0,0.1) 8px
        ),
        linear-gradient(180deg, #A06030 0%, #804A20 100%);
    border: 3px solid rgba(0,0,0,0.6);
    box-shadow: inset -3px -4px 0 rgba(0,0,0,0.35), inset 3px 3px 0 rgba(255,255,255,0.15), 3px 3px 0 rgba(0,0,0,0.5);
    overflow: hidden; cursor: none; transition: filter 0.2s;
}
.blog-chest:hover { filter: brightness(1.15); }

/* Chest "latch" */
.chest-latch {
    height: 6px;
    background: linear-gradient(90deg, transparent 42%, var(--gold) 42%, var(--gold) 58%, transparent 58%);
    border-bottom: 2px solid rgba(0,0,0,0.3);
}

.blog-thumb {
    display: block; overflow: hidden;
    aspect-ratio: 16/9;
    border-bottom: 3px solid rgba(0,0,0,0.4);
    position: relative;
}
.blog-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s; image-rendering: auto;
}
.blog-chest:hover .blog-thumb img { transform: scale(1.05); }
.blog-no-thumb {
    aspect-ratio: 16/9;
    background: var(--ui-slot-dark);
    border-bottom: 3px solid rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px;
}

.blog-body { padding: 16px; }
.blog-date {
    font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,0.45);
    margin-bottom: 8px; letter-spacing: 0.5px;
}
.blog-title {
    font-family: var(--font-pixel); font-size: 10px; color: #fff;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.7); line-height: 1.6;
    margin-bottom: 10px;
}
.blog-title a { color: #fff; text-decoration: none; transition: color 0.1s; }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.blog-read-more {
    font-family: var(--font-pixel); font-size: 9px; color: var(--diamond);
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    cursor: none; transition: color 0.1s;
}
.blog-read-more:hover { color: var(--gold); }

/* =============================================
   CTA — End Portal / Nether Portal style
   ============================================= */
.section-cta {
    padding: 100px 24px;
    background:
        repeating-linear-gradient(
            45deg, rgba(26,10,46,0.8) 0px, rgba(26,10,46,0.8) 10px,
            rgba(20,8,36,0.8) 10px, rgba(20,8,36,0.8) 20px
        ),
        linear-gradient(135deg, #0A0018 0%, #150030 50%, #0A0018 100%);
    border-top: 4px solid rgba(26,10,46,0.8);
    text-align: center; position: relative; overflow: hidden;
}

/* Portal particles */
.cta-section::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(80,0,200,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 30% 60%, rgba(0,200,80,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 30% 40% at 70% 40%, rgba(200,80,0,0.08) 0%, transparent 60%);
}

.cta-portal-title {
    font-family: var(--font-pixel);
    font-size: 8px; color: var(--emerald);
    text-shadow: 1px 1px 0 #006030, 0 0 10px rgba(23,221,98,0.4);
    letter-spacing: 4px; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.cta-portal-title::before, .cta-portal-title::after {
    content: '◆'; font-size: 12px; opacity: 0.6;
}

.cta-title {
    font-family: var(--font-pixel);
    font-size: clamp(14px, 2.5vw, 22px);
    color: #fff; text-shadow: var(--text-shadow);
    line-height: 1.6; margin-bottom: 20px;
}
.cta-title .t-gold    { color: var(--gold);    text-shadow: 2px 2px 0 var(--gold-dark), 0 0 12px rgba(252,219,74,0.3); }
.cta-title .t-diamond { color: var(--diamond); text-shadow: 2px 2px 0 var(--diamond-dark), 0 0 12px rgba(93,236,245,0.3); }

.cta-sub {
    font-family: var(--font-body); font-size: 16px; color: #999;
    max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
}

.cta-checks {
    display: flex; justify-content: center; gap: 24px;
    margin-top: 32px; flex-wrap: wrap;
}
.cta-check {
    font-family: var(--font-body); font-size: 13px; color: #888;
    display: flex; align-items: center; gap: 8px;
}
.cta-check::before { content: '✓'; color: var(--grass); font-size: 12px; }

.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background:
        repeating-linear-gradient(
            0deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 3px, rgba(0,0,0,0.2) 3px, rgba(0,0,0,0.2) 4px
        ),
        linear-gradient(180deg, #1A0A00 0%, #120600 100%);
    border-top: 4px solid rgba(0,0,0,0.5);
    padding: 40px 32px 100px; /* bottom padding for hotbar */
}
.footer-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.footer-logo {
    font-family: var(--font-pixel); font-size: 10px;
    color: var(--gold); text-shadow: 2px 2px 0 var(--gold-dark);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    letter-spacing: 2px;
}
.footer-logo .logo-svg {
    width: 24px; height: 24px;
    image-rendering: pixelated;
    filter: drop-shadow(1px 1px 0 rgba(0,0,0,0.6));
}
.footer-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.footer-links a {
    font-family: var(--font-body); font-size: 13px;
    color: var(--stone-light);
    text-decoration: none; transition: color 0.1s; cursor: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
    font-family: var(--font-body); font-size: 13px; color: var(--stone-dark);
}

/* =============================================
   BLOG / SINGLE POST CONTENT
   ============================================= */
.main-content { min-height: 80vh; }
.entry-content {
    font-family: var(--font-body); font-size: 16px; color: var(--ui-text); line-height: 1.85;
}
.entry-content h1, .entry-content h2, .entry-content h3 {
    font-family: var(--font-pixel); color: #fff;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.7); margin: 1.8em 0 .7em; line-height: 1.5;
}
.entry-content h2 { font-size: 16px; color: var(--gold); text-shadow: 1px 1px 0 var(--gold-dark), 2px 2px 0 #000; }
.entry-content h3 { font-size: 13px; color: var(--diamond); text-shadow: 1px 1px 0 var(--diamond-dark), 2px 2px 0 #000; }
.entry-content p { margin-bottom: 1.2em; }
.entry-content ul, .entry-content ol { padding-left: 28px; margin-bottom: 1.2em; }
.entry-content li { margin-bottom: .4em; }
.entry-content li::marker { color: var(--grass); }
.entry-content strong { color: var(--gold); font-style: normal; }
.entry-content em { color: var(--diamond); font-style: normal; }
.entry-content code {
    background: var(--ui-slot-dark); color: var(--grass);
    padding: 2px 6px; font-family: var(--font-pixel); font-size: 10px;
    border: 1px solid rgba(0,0,0,0.5);
}
.entry-content pre {
    background: var(--ui-panel); border: 2px solid var(--stone-dark);
    padding: 16px; overflow-x: auto; margin-bottom: 1.4em;
}
.entry-content blockquote {
    border-left: 4px solid var(--grass);
    background: var(--ui-panel); padding: 12px 16px;
    margin: 1.4em 0; color: var(--ui-text); font-style: italic;
}
.entry-content a { color: var(--diamond); }
.entry-content a:hover { color: var(--gold); }
.entry-content img { border: 3px solid rgba(0,0,0,0.5); margin: 1.4em 0; image-rendering: auto; }

/* =============================================
   404
   ============================================= */
.page-404 {
    min-height: 80vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 100px 20px;
    background: var(--netherrack);
}

/* =============================================
   ADMIN BAR FIX
   ============================================= */
.admin-bar .site-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-nav { top: 46px; } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .player-card { max-width: 480px; }
    .skills-inner { grid-template-columns: 1fr; gap: 40px; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .crafting-table { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .mc-cursor, .mc-cursor-block { display: none; }

    /* ── Nav bar ── */
    .site-nav {
        padding: 0 16px;
        height: 56px;
        display: flex; align-items: center; justify-content: space-between;
    }
    .logo-text { font-size: 10px; }

    /* ── Burger button ── */
    .nav-hamburger {
        display: flex;
        width: 40px; height: 40px;
        align-items: center; justify-content: center;
        border-radius: 4px;
        background: rgba(255,255,255,0.06);
        border: 2px solid rgba(255,255,255,0.12) !important;
        cursor: pointer; z-index: 200;
    }
    .nav-hamburger span {
        width: 20px; height: 2px;
        background: #FCDB4A;
        transition: transform 0.2s, opacity 0.2s;
        border-radius: 1px;
    }
    /* Burger → X animation */
    .nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* ── Dropdown menu ── */
    .nav-links {
        display: none;
        position: fixed;
        top: 56px; left: 0; right: 0;
        background: #1a0f00;
        border-top: 2px solid #FCDB4A;
        border-bottom: 2px solid rgba(0,0,0,0.6);
        flex-direction: column;
        padding: 8px 0;
        gap: 0;
        z-index: 150;
        box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    }
    .nav-links.nav-open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links li a {
        font-size: 9px !important;
        padding: 14px 20px !important;
        display: block;
        letter-spacing: 1px;
    }
    .nav-links li a:hover { background: rgba(252,219,74,0.08); }

    .nav-cta { display: none; }
    .hero-inner { padding: 40px 16px 140px; }
    .quest-steps { grid-template-columns: 1fr 1fr; }
    .quest-step::after { display: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    section { padding: 60px 16px; }
    .inv-grid { grid-template-columns: repeat(5, 1fr); }
    .mc-hotbar-fixed { width: calc(100% - 32px); }
    .xp-bar-fixed { width: calc(100% - 32px); }
    .cta-checks { gap: 16px; }
    .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 14px; }
    .inv-grid { grid-template-columns: repeat(4, 1fr); }
    .quest-steps { grid-template-columns: 1fr; }
    .inv-hotbar { grid-template-columns: repeat(5, 1fr); }
}

/* =============================================
   MINI-JEU — Mine & Rank
   ============================================= */
.section-minigame {
    background:
        repeating-linear-gradient(
            0deg, transparent, transparent 31px,
            rgba(0,0,0,0.1) 31px, rgba(0,0,0,0.1) 32px
        ),
        repeating-linear-gradient(
            90deg, transparent, transparent 31px,
            rgba(0,0,0,0.1) 31px, rgba(0,0,0,0.1) 32px
        ),
        linear-gradient(180deg, #0A0E1A 0%, #0E1420 100%);
    border-top: 4px solid rgba(0,0,0,0.5);
    border-bottom: 4px solid rgba(0,0,0,0.5);
}

.minigame-wrap {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 24px;
    align-items: start;
    margin-top: 32px;
}

/* Canvas container */
.minigame-container {
    position: relative;
    width: 100%;
    border: 4px solid #000;
    box-shadow:
        inset -4px -4px 0 rgba(0,0,0,0.5),
        inset 4px 4px 0 rgba(255,255,255,0.08),
        6px 6px 0 rgba(0,0,0,0.6),
        0 0 0 2px rgba(255,255,255,0.05);
    background: #1A0A00;
    cursor: crosshair;
}

#rankcraft-minigame {
    display: block;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* Overlay */
.minigame-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.overlay-inner {
    text-align: center;
    padding: 32px 24px;
    max-width: 360px;
}

.overlay-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 16px;
    animation: float-block 3s ease-in-out infinite;
}

.overlay-title {
    font-family: var(--font-pixel);
    font-size: 14px;
    color: #fff;
    text-shadow: var(--text-shadow);
    margin-bottom: 16px;
    line-height: 1.6;
}

.overlay-sub {
    font-family: var(--font-body);
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 8px;
}

.overlay-score {
    font-family: var(--font-pixel);
    font-size: 12px;
    color: var(--gold);
    text-shadow: 1px 1px 0 var(--gold-dark);
    margin-bottom: 24px;
    min-height: 20px;
}

/* Legend panel */
.minigame-legend {
    background:
        repeating-linear-gradient(
            90deg, transparent, transparent 7px,
            rgba(0,0,0,0.12) 7px, rgba(0,0,0,0.12) 8px
        ),
        linear-gradient(180deg, #B8845A 0%, #9A6840 100%);
    border: 3px solid rgba(0,0,0,0.6);
    box-shadow:
        inset -2px -3px 0 rgba(0,0,0,0.35),
        inset 2px 2px 0 rgba(255,255,255,0.15),
        3px 3px 0 rgba(0,0,0,0.4);
    padding: 16px;
    align-self: start;
}

.legend-title {
    font-family: var(--font-pixel);
    font-size: 8px;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.6);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 4px;
}

.legend-item {
    font-family: var(--font-body);
    font-size: 12px;
    color: #1A0A00;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}

.legend-block {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
    border: 2px solid rgba(0,0,0,0.5);
    box-shadow: inset -1px -1px 0 rgba(0,0,0,0.3), inset 1px 1px 0 rgba(255,255,255,0.2);
}

.legend-controls p {
    font-family: var(--font-body);
    font-size: 12px;
    color: #2A1A0A;
    margin-bottom: 4px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .minigame-wrap {
        grid-template-columns: 1fr;
    }
    .minigame-legend {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .minigame-legend {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   DÉCORS SECTION — pixel blocks subtils
   ============================================= */

/* Bloc pixel générique réutilisable */
.section-decor {
    position: absolute; pointer-events: none; overflow: hidden;
    inset: 0; z-index: 0;
}
.section-services, .section-skills, .section-process,
.section-testi, .section-faq, .section-blog, .section-cta,
.section-minigame { position: relative; }

/* Petits blocs flottants SVG en coin via pseudo */
.section-services::before {
    content: '';
    position: absolute; top: 16px; right: 24px;
    width: 80px; height: 80px; z-index: 0;
    opacity: 0.07;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect width='8' height='8' fill='%235D9E31'/%3E%3Crect x='8' width='8' height='8' fill='%234A7E28'/%3E%3Crect y='8' width='8' height='8' fill='%238B5E3C'/%3E%3Crect x='8' y='8' width='8' height='8' fill='%23704A2E'/%3E%3C/svg%3E");
    background-size: 40px 40px; background-repeat: repeat;
}
.section-services::after {
    content: '';
    position: absolute; bottom: 20px; left: 20px;
    width: 48px; height: 48px; z-index: 0; opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect width='16' height='16' fill='%235DECF5'/%3E%3Crect x='2' y='2' width='12' height='12' fill='%234AB8C0'/%3E%3Crect x='4' y='4' width='4' height='4' fill='%23A0F4FF'/%3E%3C/svg%3E");
    background-size: 48px 48px;
}

.section-skills::after {
    content: '';
    position: absolute; top: 30px; right: 30px;
    width: 60px; height: 120px; z-index: 0; opacity: 0.05;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Crect width='8' height='8' fill='%23FCDB4A'/%3E%3Crect x='1' y='1' width='6' height='6' fill='%23C8970D'/%3E%3Crect x='2' y='2' width='4' height='4' fill='%23FFE040'/%3E%3C/svg%3E");
    background-size: 60px 60px; background-repeat: repeat;
}

.section-process::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 100%; z-index: 0;
    opacity: 0.035;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect width='32' height='32' fill='none'/%3E%3Crect x='2' y='2' width='12' height='12' fill='%238B5E3C'/%3E%3Crect x='18' y='18' width='12' height='12' fill='%235D9E31'/%3E%3C/svg%3E");
    background-size: 80px 80px; background-repeat: repeat;
}

.section-testi::before {
    content: '';
    position: absolute; top: 0; right: 0; width: 120px; height: 100%; z-index: 0;
    opacity: 0.04;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect width='16' height='8' fill='%23C8965A'/%3E%3Crect y='8' width='16' height='8' fill='%23A87040'/%3E%3Crect x='1' y='1' width='14' height='1' fill='%23DDA870' opacity='.5'/%3E%3C/svg%3E");
    background-size: 48px 48px; background-repeat: repeat;
}

.section-faq::before {
    content: '';
    position: absolute; bottom: 0; left: 0; width: 80px; height: 200px; z-index: 0;
    opacity: 0.05;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect width='16' height='16' fill='%23898989'/%3E%3Crect x='1' y='1' width='14' height='1' fill='%23BCBCBC' opacity='.6'/%3E%3Crect x='1' y='1' width='1' height='14' fill='%23BCBCBC' opacity='.3'/%3E%3C/svg%3E");
    background-size: 40px 40px; background-repeat: repeat;
}

.section-blog::before {
    content: '';
    position: absolute; top: 20px; left: 20px;
    width: 56px; height: 56px; z-index: 0; opacity: 0.06;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Crect width='8' height='8' fill='%235D9E31'/%3E%3Crect x='1' y='1' width='6' height='3' fill='%234A7E28'/%3E%3Crect x='1' y='5' width='6' height='2' fill='%238B5E3C'/%3E%3C/svg%3E");
    background-size: 56px 56px;
}

.section-cta::before {
    content: '';
    position: absolute; inset: 0; z-index: 0; opacity: 0.04;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='12' height='12' fill='%235DECF5'/%3E%3Crect x='12' y='12' width='12' height='12' fill='%2317DD62'/%3E%3C/svg%3E");
    background-size: 48px 48px; background-repeat: repeat;
}

/* Contenu section au-dessus du décor */
.section-services > .container,
.section-skills > .container,
.section-process > .container,
.section-testi > .container,
.section-faq > .container,
.section-blog > .container,
.section-cta > .container,
.section-minigame > .container { position: relative; z-index: 1; }

/* =============================================
   ZONES D'INTERVENTION — footer section
   ============================================= */
.footer-zones {
    background:
        repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(255,255,255,0.03) 31px, rgba(255,255,255,0.03) 32px),
        repeating-linear-gradient(90deg, transparent, transparent 31px, rgba(255,255,255,0.03) 31px, rgba(255,255,255,0.03) 32px),
        linear-gradient(180deg, #0A0E18 0%, #060A12 100%);
    border-top: 4px solid rgba(0,0,0,0.6);
    border-bottom: 3px solid rgba(93,236,245,0.15);
    padding: 48px 0 40px;
}

.footer-zones-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}

.footer-zones-header { text-align: center; margin-bottom: 36px; }
.footer-zones-tag {
    font-family: var(--font-pixel); font-size: 9px; color: var(--diamond);
    letter-spacing: 2px; display: block; margin-bottom: 10px;
    text-shadow: 1px 1px 0 var(--diamond-dark), 0 0 8px rgba(93,236,245,0.3);
}
.footer-zones-title {
    font-family: var(--font-pixel); font-size: 14px; color: #fff;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.7); margin: 0;
}

.footer-zones-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-zones-group-title {
    font-family: var(--font-pixel); font-size: 8px; color: var(--gold);
    text-shadow: 1px 1px 0 var(--gold-dark);
    margin-bottom: 14px; padding-bottom: 8px;
    border-bottom: 2px solid rgba(252,219,74,0.2);
    letter-spacing: 1px;
}

.footer-zones-links {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px;
}
.footer-zones-links a {
    font-family: var(--font-body); font-size: 12px;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3px 8px;
    transition: color 0.1s, background 0.1s;
    white-space: nowrap;
}
.footer-zones-links a:hover {
    color: var(--diamond); background: rgba(93,236,245,0.08);
    border-color: rgba(93,236,245,0.25);
}

.footer-zones-more a {
    font-family: var(--font-pixel); font-size: 8px;
    color: var(--grass); text-shadow: 1px 1px 0 var(--grass-dark);
    text-decoration: none; transition: color 0.1s;
}
.footer-zones-more a:hover { color: var(--gold); }

.footer-zones-services {
    display: flex; flex-direction: column; gap: 8px;
}
.fz-service {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border: 2px solid rgba(255,255,255,0.08);
    font-family: var(--font-body); font-size: 13px;
    color: rgba(255,255,255,0.7);
    transition: border-color 0.1s, color 0.1s, background 0.1s;
}
.fz-service:hover { color: #fff; background: rgba(255,255,255,0.04); }
.fz-s1 { border-left-color: var(--grass); }
.fz-s2 { border-left-color: var(--diamond); }
.fz-s3 { border-left-color: var(--gold); }
.fz-s4 { border-left-color: var(--redstone); }
.fz-service:hover.fz-s1 { border-color: var(--grass); }
.fz-service:hover.fz-s2 { border-color: var(--diamond); }
.fz-service:hover.fz-s3 { border-color: var(--gold); }
.fz-service:hover.fz-s4 { border-color: var(--redstone); }

@media (max-width: 900px) {
    .footer-zones-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-zones-cols { grid-template-columns: 1fr; }
    .footer-zones-links a { font-size: 11px; }
}

/* Downgrade hero-title visuellement (était h1, maintenant h2) */
h2.hero-title { font-size: inherit; }
