/* ─────────────────────────────────────────────────────────────────────────
   "Made with EscapeMaker" showcase — hero billboard + CTA bands.

   Intentionally uses EscapeMaker's own brand palette (dark navy + amber accent)
   regardless of the visitor's M-M theme, so the band reads as a distinct
   "this is EscapeMaker" zone — co-branding, not a theme element.
   ───────────────────────────────────────────────────────────────────────── */

.em-hero {
    margin: 0 0 2rem;
    border-radius: 18px;
    background:
        radial-gradient(1200px 400px at 50% -10%, rgba(74,142,197,0.22), transparent 60%),
        linear-gradient(160deg, #14142a 0%, #0f0f1a 60%, #161226 100%);
    border: 1px solid rgba(229,165,58,0.28);
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    overflow: hidden;
}
.em-hero-inner {
    padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.em-hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a8ab0;
    margin-bottom: 0.85rem;
}
.em-wordmark { color: #ffffff; letter-spacing: 0; text-transform: none; font-size: 0.95rem; }
.em-dot { color: #e5a53a; }

.em-hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.85rem;
}
.em-hero-sub {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.65;
    color: #c7c7dd;
    margin: 0 auto 1.5rem;
    max-width: 620px;
}

/* Primary call-to-action button (amber, EscapeMaker accent) */
.em-cta-btn {
    display: inline-block;
    background: linear-gradient(180deg, #f0b347 0%, #e5a53a 100%);
    color: #1a1206;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    padding: 0.85rem 1.9rem;
    border-radius: 11px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 22px rgba(229,165,58,0.35);
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.em-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(229,165,58,0.45);
    filter: brightness(1.04);
    color: #1a1206;
}
.em-cta-btn:active { transform: translateY(0); }
.em-cta-btn-lg { font-size: 1.15rem; padding: 1rem 2.3rem; }

.em-hero-badges {
    list-style: none;
    margin: 1.4rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.4rem;
}
.em-hero-badges li {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9fe7b6;
}

/* Closing CTA band below the game grid */
.em-foot {
    margin: 2.5rem 0 0.5rem;
    padding: clamp(1.75rem, 4vw, 2.75rem) 1.5rem;
    text-align: center;
    border-radius: 18px;
    background: linear-gradient(160deg, #161226 0%, #0f0f1a 100%);
    border: 1px solid rgba(74,142,197,0.25);
}
.em-foot-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.65rem;
}
.em-foot-sub {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.6;
    color: #c7c7dd;
    max-width: 560px;
    margin: 0 auto 1.4rem;
}

@media (max-width: 520px) {
    .em-cta-btn { display: block; }
    .em-hero-badges { gap: 0.4rem 1rem; }
}
