/* ═══════════════════════════════════════════════════════════
   NEBULAGON — Marketing Landing Page
   Fonts: Orbitron (headings), Rajdhani (body)
   Palette: Navy #080a0e, Blue #4488ff, Amber #ffaa44, Purple #9966dd
   ═══════════════════════════════════════════════════════════ */

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', 'Segoe UI', sans-serif;
    font-weight: 500;
    color: #d0d8e8;
    background: #080a0e;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Utilities ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ── Glow divider lines between sections ── */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(68, 136, 255, 0.25) 30%, rgba(153, 102, 221, 0.35) 50%, rgba(68, 136, 255, 0.25) 70%, transparent 95%);
    box-shadow: 0 0 12px rgba(68, 136, 255, 0.15), 0 0 40px rgba(153, 102, 221, 0.08);
    margin: 0;
}

.glow-divider--purple {
    background: linear-gradient(90deg, transparent 5%, rgba(153, 102, 221, 0.2) 30%, rgba(153, 102, 221, 0.4) 50%, rgba(153, 102, 221, 0.2) 70%, transparent 95%);
    box-shadow: 0 0 12px rgba(153, 102, 221, 0.15), 0 0 40px rgba(153, 102, 221, 0.08);
}

.glow-divider--blue {
    background: linear-gradient(90deg, transparent 5%, rgba(68, 136, 255, 0.2) 30%, rgba(88, 101, 242, 0.35) 50%, rgba(68, 136, 255, 0.2) 70%, transparent 95%);
    box-shadow: 0 0 12px rgba(88, 101, 242, 0.15), 0 0 40px rgba(88, 101, 242, 0.08);
}

.section__title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: #eef0f8;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(68, 136, 255, 0.15);
}

/* Thin accent line under section titles */
.section__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    margin: 14px auto 0;
    background: rgba(68, 136, 255, 0.4);
    box-shadow: 0 0 6px rgba(68, 136, 255, 0.2);
}

/* ═══════════════ AMBIENT PARTICLES ═══════════════ */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    will-change: transform, opacity;
}

.particle--blue {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #4488ff 0%, transparent 70%);
    box-shadow: 0 0 20px 8px rgba(68, 136, 255, 0.15);
}

.particle--amber {
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, #ffaa44 0%, transparent 70%);
    box-shadow: 0 0 18px 6px rgba(255, 170, 68, 0.12);
}

.particle--purple {
    width: 7px;
    height: 7px;
    background: radial-gradient(circle, #9966dd 0%, transparent 70%);
    box-shadow: 0 0 22px 8px rgba(153, 102, 221, 0.12);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation: pFloat1 14s ease-in-out infinite 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation: pFloat2 18s ease-in-out infinite 2s; }
.particle:nth-child(3) { left: 80%; top: 30%; animation: pFloat3 16s ease-in-out infinite 4s; }
.particle:nth-child(4) { left: 60%; top: 70%; animation: pFloat1 20s ease-in-out infinite 1s; }
.particle:nth-child(5) { left: 90%; top: 50%; animation: pFloat2 15s ease-in-out infinite 6s; }
.particle:nth-child(6) { left: 40%; top: 15%; animation: pFloat3 17s ease-in-out infinite 3s; }
.particle:nth-child(7) { left: 70%; top: 85%; animation: pFloat1 19s ease-in-out infinite 5s; }
.particle:nth-child(8) { left: 15%; top: 45%; animation: pFloat2 13s ease-in-out infinite 7s; }

@keyframes pFloat1 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
    15% { opacity: 0.6; }
    50% { opacity: 0.8; transform: translate(40px, -80px) scale(1.4); }
    85% { opacity: 0.4; }
}

@keyframes pFloat2 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.8); }
    20% { opacity: 0.5; }
    50% { opacity: 0.7; transform: translate(-60px, -50px) scale(1.2); }
    80% { opacity: 0.3; }
}

@keyframes pFloat3 {
    0%, 100% { opacity: 0; transform: translate(0, 0) scale(1.1); }
    10% { opacity: 0.4; }
    50% { opacity: 0.9; transform: translate(30px, -100px) scale(1.5); }
    90% { opacity: 0.3; }
}

/* ═══════════════ HERO BANNER ═══════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../assets/hero-bg.webp') center 40%/cover no-repeat;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(8, 10, 14, 0.3) 0%,
            rgba(8, 10, 14, 0.1) 40%,
            rgba(8, 10, 14, 0.6) 80%,
            rgba(8, 10, 14, 1) 100%
        );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
}

/* ── Logo Treatment ── */
.logo-group {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes logoEntrance {
    from { opacity: 0; transform: scale(0.9) translateY(20px); filter: blur(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    white-space: nowrap;
    -webkit-text-stroke: 1.5px rgba(10, 5, 30, 0.55);
    paint-order: stroke fill;
    background: linear-gradient(180deg, #ffffff 0%, #f0f0ff 35%, #dde0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.95))
        drop-shadow(0 0 10px rgba(0, 0, 0, 0.6))
        drop-shadow(0 0 25px rgba(136, 85, 204, 0.4));
    letter-spacing: 4px;
}

.logo-agon {
    -webkit-text-fill-color: #d4bdff;
}

.logo-img {
    width: clamp(50px, 7vw, 80px);
    height: auto;
    margin: 0 -2px;
    margin-top: 4px;
    filter:
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 12px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 22px rgba(153, 102, 221, 0.4));
}

.hero__subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    letter-spacing: 0.5em;
    color: rgba(200, 210, 230, 0.75);
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.9),
        0 0 12px rgba(153, 102, 221, 0.4);
    animation: subtitleShimmer 4s ease-in-out infinite;
}

@keyframes subtitleShimmer {
    0%, 100% { color: rgba(200, 210, 230, 0.6); text-shadow: 0 1px 4px rgba(0,0,0,.9), 0 0 12px rgba(153,102,221,.3); }
    50% { color: rgba(200, 210, 230, 0.9); text-shadow: 0 1px 4px rgba(0,0,0,.9), 0 0 24px rgba(153,102,221,.55); }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn--steam {
    background: linear-gradient(135deg, #ffaa44, #ff8822);
    color: #1a1000;
    box-shadow:
        0 2px 12px rgba(255, 170, 68, 0.3),
        0 0 30px rgba(255, 170, 68, 0.1);
}

.btn--steam:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 6px 24px rgba(255, 170, 68, 0.5),
        0 0 50px rgba(255, 170, 68, 0.25);
}

/* Shine sweep on hover */
.btn--glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn--glow:hover::before {
    left: 100%;
}

.btn--large {
    font-size: 1.1rem;
    padding: 18px 40px;
}

.btn__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn--steam .btn__icon {
    width: 26px;
    height: 26px;
    filter: brightness(0);
}

.btn--discord .btn__icon {
    filter: brightness(0) invert(1);
}

/* ── Hero Links ── */
.hero__links {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero__socials {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #7888aa;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #eef0f8;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
    text-align: center;
    padding: 80px 0 60px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(68, 136, 255, 0.08) 0%, transparent 60%),
        #080a0e;
}

.about__text {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #a0aac0;
}

.about__text strong {
    color: #d0d8f0;
    font-weight: 700;
}

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

.pill {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 100px;
    color: #8899bb;
    transition: all 0.3s ease;
    cursor: default;
}

.pill[data-color="blue"] {
    border: 1px solid rgba(68, 136, 255, 0.3);
    background: rgba(68, 136, 255, 0.05);
}
.pill[data-color="blue"]:hover {
    border-color: rgba(68, 136, 255, 0.7);
    color: #bbccee;
    background: rgba(68, 136, 255, 0.12);
    box-shadow: 0 0 16px rgba(68, 136, 255, 0.15);
}

.pill[data-color="amber"] {
    border: 1px solid rgba(255, 170, 68, 0.3);
    background: rgba(255, 170, 68, 0.05);
}
.pill[data-color="amber"]:hover {
    border-color: rgba(255, 170, 68, 0.7);
    color: #ffddaa;
    background: rgba(255, 170, 68, 0.12);
    box-shadow: 0 0 16px rgba(255, 170, 68, 0.15);
}

.pill[data-color="purple"] {
    border: 1px solid rgba(153, 102, 221, 0.3);
    background: rgba(153, 102, 221, 0.05);
}
.pill[data-color="purple"]:hover {
    border-color: rgba(153, 102, 221, 0.7);
    color: #ccaaff;
    background: rgba(153, 102, 221, 0.12);
    box-shadow: 0 0 16px rgba(153, 102, 221, 0.15);
}

/* ═══════════════ HEROES ═══════════════ */
.heroes {
    position: relative;
    overflow: hidden;
}

.heroes__bg {
    position: absolute;
    inset: 0;
    background: url('../assets/charselect2.webp') center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
}

.heroes .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hero-card {
    background: rgba(12, 14, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    will-change: transform;
    cursor: pointer;
}

/* Top glow accent bar */
.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Background glow on hover */
.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, rgba(var(--accent-rgb), 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-card.is-hovered {
    transform: translateY(-6px);
    border-color: rgba(var(--accent-rgb), 0.3);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(var(--accent-rgb), 0.12);
}

.hero-card.is-hovered::before { opacity: 1; }
.hero-card.is-hovered::after { opacity: 1; }

/* Avatar — charselect2 backdrop behind transparent avatars */
.hero-card__avatar-wrap {
    position: relative;
    overflow: hidden;
    background: url('../assets/charselect2.webp') no-repeat;
    background-size: 400% 400%;
    background-position: var(--bg-pos, 50% 50%);
}

.hero-card__avatar {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 0;
}

.hero-card.is-hovered .hero-card__avatar {
    transform: scale(1.16);
}

.hero-card__avatar-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 3px 12px rgba(var(--accent-rgb), 0.6), 0 6px 24px rgba(var(--accent-rgb), 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.hero-card.is-hovered .hero-card__avatar-wrap::after {
    opacity: 0.7;
}

/* Sprite animation on hover — runs across card */
.hero-card__sprite {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 160px;
    height: 160px;
    background-repeat: no-repeat;
    background-size: 600% 100%;
    background-position: 0 0;
    image-rendering: pixelated;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    will-change: transform, opacity;
    transition: opacity 0.4s ease;
}

.hero-card.is-hovered .hero-card__sprite {
    opacity: 0.85;
    animation:
        spriteRun 0.5s steps(6) infinite,
        spriteAcross 2s linear infinite;
}

/* Override for cards with wave — run to center then stop */
.hero-card.is-hovered.has-wave .hero-card__sprite {
    animation:
        spriteRun 0.5s steps(6) infinite,
        spriteToCenter 0.8s ease-out forwards;
}

.hero-card.is-waving .hero-card__sprite {
    opacity: 0;
}

/* Safari: JS drives animation instead of CSS keyframes */
.is-safari .hero-card.is-hovered .hero-card__sprite,
.is-safari .hero-card.is-hovered.has-wave .hero-card__sprite {
    animation: none;
}

@keyframes spriteRun { to { background-position: -960px 0; } }

@keyframes spriteAcross {
    from { transform: translateX(-160px); }
    to   { transform: translateX(var(--card-w, 260px)); }
}

@keyframes spriteToCenter {
    from { transform: translateX(-160px); }
    to   { transform: translateX(calc(var(--card-w, 260px) / 2 - 80px)); }
}

/* Wave gif — hidden until sprite reaches center */
.hero-card__wave {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 168px;
    height: 168px;
    image-rendering: pixelated;
    opacity: 0;
    pointer-events: none;
    z-index: 6;
    transition: opacity 0.12s ease;
}

.hero-card.is-waving .hero-card__wave {
    opacity: 0.85;
}

/* Crunk's wave is already correctly sized at 160px */
.hero-card:has([data-hero="crunk"]) .hero-card__wave {
    width: 160px;
    height: 160px;
}


/* Platform ground strip — fades in on hover beneath the running sprite */
.hero-card__platform {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: url('../assets/charselect2.webp') 50% 46% / 280% auto no-repeat;
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    transition: opacity 0.4s ease;
    -webkit-mask-image:
        linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 40%, transparent 85%),
        radial-gradient(ellipse at 50% 80%, rgba(0,0,0,1) 20%, transparent 70%);
    mask-image:
        linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 40%, transparent 85%),
        radial-gradient(ellipse at 50% 80%, rgba(0,0,0,1) 20%, transparent 70%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}


.hero-card.is-hovered .hero-card__platform {
    opacity: 1;
}

/* Per-hero sprite sheets */
.hero-card__sprite[data-hero="crunk"]  { background-image: url('../assets/sprite_crunk.png'); }
.hero-card__sprite[data-hero="pebble"] { background-image: url('../assets/sprite_pebble.png'); }
.hero-card__sprite[data-hero="boo"]    { background-image: url('../assets/sprite_boo.png'); }
.hero-card__sprite[data-hero="tracey"] { background-image: url('../assets/sprite_tracey.png'); }
.hero-card__sprite[data-hero="elly"]   { background-image: url('../assets/sprite_elly.png'); }
.hero-card__sprite[data-hero="ken"]    { background-image: url('../assets/sprite_ken.png'); }
.hero-card__sprite[data-hero="monk"]   { background-image: url('../assets/sprite_monk.png'); }
.hero-card__sprite[data-hero="hex"]    { background-image: url('../assets/sprite_hex.png'); }



/* Info slides down on hover */
.hero-card.is-hovered .hero-card__info {
    opacity: 0;
}

.hero-card__info {
    padding: 14px 18px 18px;
    flex: 1 0 auto;
    transition: opacity 0.4s ease;
    position: relative;
    z-index: 2;
}

.hero-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.hero-card__name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #eef0f8;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.hero-card.is-hovered .hero-card__name {
    color: var(--accent);
}

.hero-card__role {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.role--tank { background: rgba(255, 102, 51, 0.15); color: #ff8855; }
.role--ranged { background: rgba(68, 170, 221, 0.15); color: #66ccee; }
.role--assassin { background: rgba(136, 85, 204, 0.15); color: #aa88dd; }
.role--support { background: rgba(68, 204, 102, 0.15); color: #66dd88; }

.hero-card__element {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

.hero-card__desc {
    font-size: 0.85rem;
    color: #7888aa;
    line-height: 1.5;
}

/* ═══════════════ TRAILER ═══════════════ */
.trailer {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(68, 136, 255, 0.04) 0%, transparent 50%),
        #080a0e;
}

.trailer__wrapper {
    max-width: 900px;
    margin: 32px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.trailer__wrapper:hover {
    box-shadow:
        0 8px 50px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(68, 136, 255, 0.2),
        0 0 30px rgba(68, 136, 255, 0.08);
    transform: translateY(-3px);
}

.trailer__placeholder {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.trailer__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(1.2);
    transition: all 0.5s ease;
}

.trailer__wrapper:hover .trailer__img {
    filter: brightness(0.55) saturate(1.3);
    transform: scale(1.03);
}

.trailer__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.trailer__play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
}

.trailer__wrapper:hover .trailer__play {
    border-color: rgba(255, 170, 68, 0.7);
    color: #ffaa44;
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 170, 68, 0.2);
}

.trailer__overlay p {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: rgba(200, 210, 230, 0.6);
}

/* ═══════════════ FEATURES ═══════════════ */
.features {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(255, 170, 68, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 0%, rgba(68, 136, 255, 0.04) 0%, transparent 40%),
        #080a0e;
}

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

.feature-card {
    --card-color: #4488ff;
    text-align: center;
    padding: 44px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient top edge */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--card-color);
    opacity: 0.3;
    transition: all 0.3s ease;
    border-radius: 0 0 2px 2px;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    left: 10%;
    right: 10%;
    opacity: 0.7;
    box-shadow: 0 0 20px var(--card-color);
}

.feature-card__icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--card-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon-wrap {
    border-color: var(--card-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.feature-card__svg {
    width: 28px;
    height: 28px;
}

.feature-card__title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #eef0f8;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: #7888aa;
    line-height: 1.6;
}

/* ═══════════════ ARENA NOT A MOBA ═══════════════ */
.notamoba {
    background:
        radial-gradient(ellipse at 30% 0%, rgba(255, 170, 68, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 100%, rgba(68, 136, 255, 0.06) 0%, transparent 40%),
        #0a0d12;
    padding: 80px 0;
}

.notamoba__lead {
    text-align: center;
    max-width: 560px;
    margin: -24px auto 48px;
    font-size: 1.05rem;
    color: #8899bb;
    line-height: 1.8;
}

.notamoba__contrasts {
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.notamoba__vs {
    display: flex;
    align-items: center;
    gap: 16px;
}

.notamoba__old {
    flex: 1;
    text-align: right;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #4a5570;
    letter-spacing: 0.5px;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 80, 80, 0.3);
}

.notamoba__arrow {
    flex: 0 0 auto;
    font-size: 1rem;
    color: rgba(255, 170, 68, 0.5);
}

.notamoba__new {
    flex: 1;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #c0c8e0;
    letter-spacing: 0.5px;
}

/* ═══════════════ STORY ═══════════════ */
.story {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(153, 102, 221, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(68, 136, 255, 0.05) 0%, transparent 40%),
        #0a0d12;
}

.story__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.story__letter {
    text-align: left;
    margin-top: 8px;
    background:
        /* Paper fiber noise — tiny repeating speckle pattern */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
        /* Ruled lines */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 31px,
            rgba(120, 100, 80, 0.07) 31px,
            rgba(120, 100, 80, 0.07) 32px
        ),
        /* Base parchment */
        linear-gradient(168deg,
            #e8e0d0 0%,
            #e2d9c8 25%,
            #ddd4c2 50%,
            #d8cfbd 75%,
            #d4cab6 100%
        );
    border: none;
    border-radius: 2px;
    padding: 44px 48px 40px;
    position: relative;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.25),
        inset 0 0 80px rgba(80, 60, 30, 0.05),
        inset 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Aged paper edge stain + vignette */
.story__letter::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px;
    background:
        /* Edge darkening / vignette */
        radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(80, 60, 30, 0.08) 100%),
        /* Corner stains */
        radial-gradient(ellipse at 0% 0%, rgba(160, 130, 90, 0.18), transparent 40%),
        radial-gradient(ellipse at 100% 100%, rgba(140, 110, 70, 0.15), transparent 35%),
        radial-gradient(ellipse at 100% 0%, rgba(130, 100, 60, 0.08), transparent 30%),
        radial-gradient(ellipse at 0% 100%, rgba(150, 120, 70, 0.10), transparent 35%);
    pointer-events: none;
}

/* Dog-ear fold */
.story__letter::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(225deg, #080a0e 48%, #c8bfae 50%, #bfb5a3 60%, #b8ae9c 100%);
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 4px;
}

.story__letter p {
    font-family: 'Handlee', cursive;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #0e2240;
    text-shadow: 0.5px 0.5px 0 rgba(10, 25, 60, 0.12), 0 0 2px rgba(15, 30, 70, 0.06);
    margin-bottom: 16px;
}

.story__greeting {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.story__letter p:last-of-type {
    margin-bottom: 28px;
}

.story__letter strong {
    color: #081a38;
    font-weight: 700;
}

.story__signature {
    font-family: 'Herr Von Muellerhoff', cursive;
    font-weight: 400;
    font-size: 3.2rem;
    color: #0e2240;
    display: block;
    text-align: right;
    margin-top: 4px;
    letter-spacing: 1px;
    transform: rotate(-3deg);
    transform-origin: right center;
    text-shadow: 1px 1px 0 rgba(10, 25, 60, 0.15), 0 0 3px rgba(15, 30, 70, 0.1);
    position: relative;
}

/* Ink underline flourish */
.story__signature::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 34, 64, 0.35) 30%, rgba(14, 34, 64, 0.45) 70%, rgba(14, 34, 64, 0.25));
    border-radius: 1px;
    transform: rotate(-1deg);
}

/* ═══════════════ COMMUNITY ═══════════════ */
.community {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(88, 101, 242, 0.1) 0%, transparent 50%),
        #0a0d12;
}

.community__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.community__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #8899bb;
    margin-bottom: 32px;
}

.community__links {
    margin-bottom: 48px;
}

.btn--discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: #fff;
    box-shadow:
        0 2px 12px rgba(88, 101, 242, 0.3),
        0 0 30px rgba(88, 101, 242, 0.1);
}

.btn--discord:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 6px 24px rgba(88, 101, 242, 0.5),
        0 0 50px rgba(88, 101, 242, 0.25);
}

.community__socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.community__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(136, 153, 204, 0.2);
    color: #8899cc;
    transition: all 0.3s ease;
}

.community__social:hover {
    color: #eef0f8;
    border-color: rgba(136, 153, 204, 0.5);
    background: rgba(136, 153, 204, 0.1);
    transform: translateY(-2px);
}

.community__perks {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.community__perk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.community__perk-label {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #5865F2;
    text-transform: uppercase;
}

.community__perk-desc {
    font-size: 0.82rem;
    color: #6677aa;
    max-width: 180px;
}

/* ═══════════════ ROADMAP ═══════════════ */
.roadmap {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(68, 136, 255, 0.05) 0%, transparent 40%),
        #080a0e;
    padding: 80px 0;
}

.roadmap__timeline {
    display: flex;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

/* Horizontal line */
.roadmap__timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 1px;
    background: linear-gradient(to right, rgba(68, 204, 102, 0.3), rgba(68, 136, 255, 0.3) 30%, rgba(153, 102, 221, 0.15) 60%, rgba(255, 255, 255, 0.04));
}

.roadmap__phase {
    flex: 1;
    position: relative;
    padding-top: 24px;
    padding-right: 16px;
    min-width: 0;
}

.roadmap__phase:last-child {
    padding-right: 0;
}

.roadmap__marker {
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #1a1e2a;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    z-index: 1;
}

.roadmap__phase--done .roadmap__marker {
    border-color: #44cc66;
    background: #44cc66;
    box-shadow: 0 0 6px rgba(68, 204, 102, 0.4);
}

.roadmap__phase--active .roadmap__marker {
    border-color: #4488ff;
    background: #4488ff;
    box-shadow: 0 0 8px rgba(68, 136, 255, 0.5);
    animation: markerPulse 2.5s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(68, 136, 255, 0.4); }
    50% { box-shadow: 0 0 14px rgba(68, 136, 255, 0.7); }
}

.roadmap__content {
    padding: 0;
}

.roadmap__phase-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #eef0f8;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.roadmap__phase-desc {
    font-size: 0.78rem;
    color: #7888aa;
    line-height: 1.5;
    margin-bottom: 8px;
}

.roadmap__status {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4a5570;
    padding: 2px 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.roadmap__status--done {
    color: #44cc66;
    border-color: rgba(68, 204, 102, 0.3);
    background: rgba(68, 204, 102, 0.08);
}

.roadmap__status--active {
    color: #4488ff;
    border-color: rgba(68, 136, 255, 0.3);
    background: rgba(68, 136, 255, 0.08);
}

/* ═══════════════ FAQ ═══════════════ */
.faq {
    background:
        radial-gradient(ellipse at 50% 100%, rgba(153, 102, 221, 0.05) 0%, transparent 40%),
        #080a0e;
}

.faq__list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq__item[open] {
    border-color: rgba(68, 136, 255, 0.2);
}

.faq__question {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #c0c8e0;
    letter-spacing: 0.5px;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.3s ease;
}

.faq__question::-webkit-details-marker { display: none; }

/* Chevron indicator */
.faq__question::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: #4a5570;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq__item[open] .faq__question::after {
    content: '−';
    color: #4488ff;
}

.faq__question:hover {
    color: #eef0f8;
}

.faq__answer {
    padding: 0 24px 18px;
    font-size: 0.92rem;
    color: #7888aa;
    line-height: 1.7;
}

/* ═══════════════ CTA ═══════════════ */
.cta {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(153, 102, 221, 0.1) 0%, transparent 60%),
        #080a0e;
}

.cta__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cta__links .hero__socials {
    width: 100%;
    margin-top: 8px;
}

.cta .section__title {
    margin-bottom: 12px;
}

.cta__tagline {
    font-size: 1rem;
    color: #8899bb;
    margin-bottom: 28px;
}

/* ── Newsletter form ── */
.newsletter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    width: 100%;
    max-width: 460px;
}

.newsletter__input {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #eef0f8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 6px;
    flex: 1;
    min-width: 200px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter__input::placeholder {
    color: #4a5570;
}

.newsletter__input:focus {
    outline: none;
    border-color: rgba(68, 136, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(68, 136, 255, 0.12);
}

.newsletter__btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1000;
    background: linear-gradient(135deg, #ffaa44, #ff8822);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 12px rgba(255, 170, 68, 0.3);
}

.newsletter__btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 24px rgba(255, 170, 68, 0.5),
        0 0 40px rgba(255, 170, 68, 0.2);
}

.newsletter__btn:active {
    transform: scale(0.98);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer__logo {
    width: 28px;
    height: auto;
    opacity: 0.15;
    margin-bottom: 4px;
    transition: opacity 0.3s ease;
}

.footer__logo:hover {
    opacity: 0.35;
}

.footer__credit {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #7888aa;
    letter-spacing: 1px;
}

.footer__copy {
    font-size: 0.75rem;
    color: #3a4455;
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(6px); }
    60% { transform: rotate(45deg) translateY(3px); }
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero cards get a scale too */
.hero-card.reveal {
    transform: translateY(40px) scale(0.97);
}
.hero-card.reveal.visible {
    transform: translateY(0) scale(1);
}

/* ═══════════════ RESPONSIVE ═══════════════ */

/* ── Tablet (768–1199px) ── */
@media (max-width: 1199px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .notamoba__contrasts {
        max-width: 520px;
    }
}

/* ── Mobile (< 768px) ── */
@media (max-width: 767px) {
    .section { padding: 60px 0; }
    .container { padding: 0 16px; }

    /* Hero banner */
    .hero__links {
        bottom: 24px;
        gap: 10px;
        padding: 0 16px;
    }

    .btn {
        font-size: 0.82rem;
        padding: 12px 24px;
    }

    .logo-text {
        letter-spacing: 2px;
    }

    .hero__subtitle {
        letter-spacing: 0.3em;
    }

    /* About */
    .about { padding: 60px 0 40px; }

    .about__text {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .pills { gap: 8px; }

    .pill {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .trailer__wrapper {
        margin: 24px auto;
        border-radius: 8px;
    }

    /* Heroes */
    .hero-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .hero-card__sprite {
        width: 130px;
        height: 130px;
        bottom: 6px;
    }

    .hero-card__wave {
        width: 138px;
        height: 138px;
        bottom: 0;
    }

    .hero-card:has([data-hero="crunk"]) .hero-card__wave {
        width: 130px;
        height: 130px;
    }

    /* Roadmap — vertical timeline */
    .roadmap { padding: 60px 0; }

    .roadmap__timeline {
        flex-direction: column;
        padding-left: 28px;
    }

    .roadmap__timeline::before {
        top: 0;
        bottom: 0;
        left: 5px;
        right: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(to bottom, rgba(68, 204, 102, 0.3), rgba(68, 136, 255, 0.3) 30%, rgba(255, 255, 255, 0.04));
    }

    .roadmap__phase {
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 28px;
    }

    .roadmap__marker {
        top: 2px;
        left: -28px;
    }

    .roadmap__phase-title { font-size: 0.8rem; }

    /* Not a MOBA — stack on narrow screens */
    .notamoba { padding: 60px 0; }

    .notamoba__vs {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 12px 0;
    }

    .notamoba__old {
        text-align: center;
        font-size: 0.85rem;
    }

    .notamoba__arrow {
        transform: rotate(90deg);
        font-size: 0.85rem;
    }

    .notamoba__new {
        font-size: 0.9rem;
    }

    /* Story letter */
    .story__letter {
        padding: 28px 24px 24px;
    }

    .story__letter p {
        font-size: 1.05rem;
    }

    .story__signature {
        font-size: 2.6rem;
    }

    /* FAQ */
    .faq__question {
        font-size: 0.78rem;
        padding: 16px 20px;
    }

    .faq__answer {
        padding: 0 20px 16px;
        font-size: 0.85rem;
    }

    /* CTA + Newsletter */
    .cta { padding: 60px 0; }

    .newsletter {
        max-width: 100%;
        padding: 0 16px;
    }

    .cta__links {
        gap: 10px;
        padding: 0 16px;
    }

    /* Particles — hide on mobile for perf */
    .particles {
        display: none;
    }
}

/* ── Small mobile (< 480px) ── */
@media (max-width: 479px) {
    .section { padding: 48px 0; }

    .section__title {
        margin-bottom: 28px;
    }

    .hero__links {
        bottom: 20px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .hero__links .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .hero__socials {
        margin-top: 4px;
    }

    .about__text {
        font-size: 0.95rem;
    }

    .hero-grid {
        max-width: 300px;
    }

    .hero-card__desc {
        font-size: 0.8rem;
    }

    .notamoba__lead {
        font-size: 0.95rem;
    }

    .story__letter {
        padding: 24px 18px 20px;
    }

    .story__letter p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .story__signature {
        font-size: 2.2rem;
    }

    .story__signature::after {
        width: 80px;
    }

    .cta__links {
        flex-direction: column;
        align-items: center;
    }

    .cta__links .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    /* Keep sprite + card hover transitions smooth even with reduced motion */
    .hero-card.is-hovered .hero-card__sprite {
        animation-duration: 0.5s, 2s !important;
    }
    .hero-card__sprite,
    .hero-card__platform,
    .hero-card__info,
    .hero-card {
        transition-duration: 0.4s !important;
    }
    .particles { display: none; }
}