/* ============================================================
   CROSSOVER X — eventarena.css  |  R4 2026/08
   ============================================================ */

/* ============================================================
   1. CUSTOM CURSOR (80px)
   ============================================================ */
.ea-page, .ea-page * { cursor: none !important; }

#ea-cursor {
    position: fixed; top: 0; left: 0;
    width: 80px; height: 80px;
    pointer-events: none;
    z-index: 99999999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
}
#ea-cursor img { width: 100%; height: 100%; object-fit: contain; }

#ea-cursor.is-dropping { animation: cursorDrop 0.3s ease-out forwards; }
@keyframes cursorDrop {
    0%   { transform: translate(-50%,-50%) scale(1.3) rotate(-15deg); }
    50%  { transform: translate(-50%,-10%) scale(0.85) rotate(5deg); }
    100% { transform: translate(-50%,-50%) scale(1) rotate(0deg); }
}

/* ============================================================
   2. PAGE BASE
   ============================================================ */
.ea-page { position: relative; background: #000; min-height: 100vh; overflow-x: hidden; }

/* ============================================================
   3. BACKGROUND
   ============================================================ */
.ea-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.ea-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ea-bg-img--mobile  { display: none; }
.ea-bg-img--desktop { display: block; }
@media (max-width: 768px) {
    .ea-bg-img--desktop { display: none; }
    .ea-bg-img--mobile  { display: block; }
}
.ea-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(180,0,0,0.18) 0%, rgba(0,0,0,0.72) 40%,
        rgba(0,0,30,0.72) 60%, rgba(0,40,180,0.18) 100%);
}
.ea-hero, .ea-arena-wrap, .ea-deko { position: relative; z-index: 1; }

/* ============================================================
   4. HERO
   ============================================================ */
.ea-hero {
    display: flex; flex-direction: column; align-items: center;
    padding: 50px 20px 30px; gap: 16px; text-align: center;
}
.ea-hero-logo {
    width: clamp(120px,18vw,280px); height: auto; object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255,40,40,0.5));
    animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
    0%,100% { filter: drop-shadow(0 0 15px rgba(255,40,40,0.4)); }
    50%      { filter: drop-shadow(0 0 35px rgba(255,40,40,0.85)); }
}
.ea-hero-title {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(42px,7vw,96px); color: #fff;
    letter-spacing: 0.08em; margin: 0; line-height: 1;
    text-shadow: 0 0 30px rgba(255,40,40,0.6), 3px 3px 0 rgba(0,0,0,0.8);
}
.ea-title-red { color: #ff2222; }
.ea-hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(10px,1.1vw,14px); font-weight: 700;
    color: rgba(255,255,255,0.55); letter-spacing: 0.25em;
    text-transform: uppercase; margin: 0;
}

/* ============================================================
   5. TABS (Mobile)
   DESKTOP: ausgeblendet
   MOBILE: Pure CSS — keine Arrow-Asset-Bilder mehr
   ============================================================ */
.ea-tabs { display: none; gap: 12px; margin-top: 8px; }

.ea-tab {
    position: relative; background: none; border: none; cursor: none;
    padding: 0; width: clamp(160px,44vw,220px); height: 64px;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.ea-tab-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: fill; border-radius: 4px;
}
.ea-tab span {
    position: relative; z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: clamp(10px,2.8vw,14px); font-weight: 800;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.7);
    text-transform: uppercase; white-space: nowrap;
}
.ea-tab--active span { color: #fff; }
.ea-tab--active { filter: brightness(1.3); }
.ea-tab:hover { transform: scale(1.04); }

@media (max-width: 900px) {
    .ea-tabs { display: flex; }

    /* FIX: Pfeil-Assets verbergen, Pure-CSS Tabs stattdessen */
    .ea-tab-bg { display: none; }

    .ea-tab {
        border-radius: 4px; overflow: hidden;
        width: clamp(140px, 43vw, 200px); height: 56px;
    }
    .ea-tab[data-tab="weekly"] {
        background: linear-gradient(135deg, rgba(0,70,130,0.85), rgba(0,160,210,0.55));
        border: 2px solid rgba(0,200,255,0.85);
        box-shadow: 0 0 14px rgba(0,200,255,0.35);
    }
    .ea-tab[data-tab="special"] {
        background: linear-gradient(135deg, rgba(130,0,0,0.85), rgba(210,40,40,0.55));
        border: 2px solid rgba(255,60,60,0.85);
        box-shadow: 0 0 14px rgba(255,40,40,0.35);
    }
    .ea-tab--active[data-tab="weekly"] {
        background: linear-gradient(135deg, rgba(0,100,190,0.95), rgba(0,210,255,0.65));
        border-color: rgba(0,220,255,1);
    }
    .ea-tab--active[data-tab="special"] {
        background: linear-gradient(135deg, rgba(180,0,0,0.95), rgba(255,60,60,0.65));
        border-color: rgba(255,70,70,1);
    }
    .ea-tab span { font-size: clamp(11px, 3.2vw, 15px); letter-spacing: 0.08em; }
}

/* ============================================================
   6. ARENA LAYOUT
   ============================================================ */
.ea-arena-wrap {
    display: grid; grid-template-columns: 1fr 1.4fr 1fr;
    gap: 0; min-height: 600px; padding: 0 0 160px;
    max-width: 1600px; margin: 0 auto; width: 100%;
}

/* ============================================================
   7. PANELS
   ============================================================ */
.ea-panel {
    display: flex; flex-direction: column; gap: 0;
    padding: 20px 16px;
    border-top: 2px solid rgba(255,255,255,0.06);
}
.ea-panel--left  { border-right: 1px solid rgba(255,40,40,0.15); }
.ea-panel--right { border-left:  1px solid rgba(0,100,255,0.15); }

.ea-panel-header {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 14px;
}

/* FIX: Blue/Red Team Label — 48px → 64px */
.ea-panel-label-img {
    height: 64px; width: auto; object-fit: contain; flex-shrink: 0;
}

/* FIX: Titel größer */
.ea-panel-title {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(26px, 2.6vw, 38px); color: #fff;
    letter-spacing: 0.12em; margin: 0;
    text-shadow: 0 0 12px rgba(255,255,255,0.3);
}

/* ============================================================
   8. SLOTS
   ============================================================ */
.ea-slots { display: flex; flex-direction: column; gap: 8px; }

.ea-slot {
    position: relative; display: flex; align-items: center;
    gap: 12px; padding: 10px 14px; cursor: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07); border-radius: 2px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    overflow: hidden;
}
.ea-slot::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg,rgba(255,40,40,0.08),transparent);
    opacity: 0; transition: opacity 0.2s ease;
}
.ea-slot:hover::before { opacity: 1; }
.ea-slot:hover { border-color: rgba(255,40,40,0.4); transform: translateX(4px); }

.ea-panel--right .ea-slot::before {
    background: linear-gradient(90deg,transparent,rgba(0,100,255,0.08));
}
.ea-panel--right .ea-slot:hover {
    border-color: rgba(0,100,255,0.4); transform: translateX(-4px);
}
.ea-slot.is-selected {
    background: rgba(255,40,40,0.12); border-color: rgba(255,40,40,0.7);
    box-shadow: 0 0 16px rgba(255,40,40,0.3), inset 0 0 20px rgba(255,40,40,0.05);
}
.ea-panel--right .ea-slot.is-selected {
    background: rgba(0,100,255,0.12); border-color: rgba(0,100,255,0.7);
    box-shadow: 0 0 16px rgba(0,100,255,0.3), inset 0 0 20px rgba(0,100,255,0.05);
}

/* COIN — 52px + Spritesheet
   FIX: overflow:hidden verhindert sichtbare Folgeframes
   Spritesheet: 1024x128px original, 8 Frames à 128px
   Bei 52px Darstellung: scale=52/128 → width=8×52=416px ✓ */
.ea-slot-coin {
    position: absolute; top: 50%; left: 6px;
    width: 52px; height: 52px;
    overflow: hidden;                  /* FIX: kein halber Folgeframe sichtbar */
    background-image: url('https://crossoverxcards.com/wp-content/uploads/2026/05/coin_smash_spritesheet_animation.png');
    background-repeat: no-repeat;
    background-size: 416px 52px; background-position: 0 0;
    z-index: 5; opacity: 0;
    transform: translateY(-50%) scale(0) rotate(-180deg);
    pointer-events: none;
}
.ea-slot.is-selected .ea-slot-coin {
    animation:
        coinLand 0.4s cubic-bezier(0.175,0.885,0.32,1.275) forwards,
        coinFrameSpin 0.5s steps(8) infinite 0.4s;
}
@keyframes coinLand {
    0%   { opacity:0; transform:translateY(-50%) scale(0) rotate(-180deg); }
    70%  { opacity:1; transform:translateY(-50%) scale(1.25) rotate(12deg); }
    100% { opacity:1; transform:translateY(-50%) scale(1) rotate(0deg); }
}
@keyframes coinFrameSpin {
    from { background-position: 0 0; }
    to   { background-position: -416px 0; }
}

/* SLOT FRAME + ICONS */
.ea-slot-frame {
    position: relative;
    width: clamp(54px,5.5vw,70px); height: clamp(54px,5.5vw,70px);
    flex-shrink: 0;
}
.ea-slot-frame-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
}
.ea-slot-icon {
    position: absolute; inset: 2px;
    width: calc(100% - 4px); height: calc(100% - 4px);
    object-fit: contain; border-radius: 3px;
    transition: none; /* JS steuert Glitch direkt */
}
.ea-slot-icon--normal { opacity: 1; }
.ea-slot-icon--g1     { opacity: 0; }
.ea-slot-icon--g2     { opacity: 0; }

.ea-slot-info { flex: 1; min-width: 0; }
.ea-slot-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(11px,1.1vw,14px); font-weight: 700; color: #fff;
    margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ea-slot-time {
    font-family: 'Inter', sans-serif;
    font-size: 10px; color: rgba(255,255,255,0.45); margin: 0;
}

/* FIX: Slot-Pfeil 30 → 44px */
.ea-slot-arrow {
    width: 44px; height: auto; object-fit: contain;
    opacity: 0.55; flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
}
.ea-slot:hover .ea-slot-arrow { opacity: 1; transform: translateX(3px); }

.ea-day-separator {
    font-family: 'Bangers', sans-serif; font-size: 12px;
    color: rgba(255,255,255,0.28); letter-spacing: 0.3em;
    text-transform: uppercase; padding: 8px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.05); margin-top: 4px;
}

/* ============================================================
   9. CENTER
   ============================================================ */
.ea-center {
    position: relative; display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding: 20px 10px 40px; overflow: hidden;
}

/* CHALLENGERS */
.ea-challengers {
    position: relative; width: 100%;
    height: clamp(300px,40vw,560px);
    display: flex; align-items: flex-end; justify-content: center;
}
.ea-challenger {
    position: absolute; bottom: 0; width: 48%; height: 100%; overflow: visible;
}
.ea-challenger--left  { left: 0; }
.ea-challenger--right { right: 0; }

.ea-challenger-img {
    position: absolute; bottom: 0; width: 100%; height: 100%;
    object-fit: contain; object-position: bottom; opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
    filter: drop-shadow(0 0 20px rgba(255,40,40,0.4));
}
.ea-challenger--right .ea-challenger-img {
    filter: drop-shadow(0 0 20px rgba(0,100,255,0.4));
    transform: translateY(30px) scale(0.9) scaleX(-1);
}
.ea-challenger-img.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.ea-challenger--right .ea-challenger-img.is-visible {
    transform: translateY(0) scale(1) scaleX(-1);
}

/* Fade — minimal */
.ea-challenger-fade {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 18%; pointer-events: none; z-index: 2;
}
.ea-challenger-fade--left  { background: linear-gradient(to top, rgba(0,0,0,0.28) 0%, transparent 100%); }
.ea-challenger-fade--right { background: linear-gradient(to top, rgba(0,0,0,0.28) 0%, transparent 100%); }

/* VS LOGO */
.ea-vs-wrap {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10; width: clamp(80px,10vw,140px); pointer-events: none;
}
.ea-vs-logo {
    width: 100%; height: auto; object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.6));
    animation: vsFloat 3s ease-in-out infinite;
}
@keyframes vsFloat {
    0%,100% { transform: scale(1) rotate(-2deg); filter: drop-shadow(0 0 15px rgba(255,255,255,0.4)); }
    50%      { transform: scale(1.06) rotate(2deg); filter: drop-shadow(0 0 30px rgba(255,255,255,0.8)); }
}
.ea-vs-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: vsGlowPulse 3s ease-in-out infinite; pointer-events: none;
}
@keyframes vsGlowPulse {
    0%,100% { opacity:0.5; transform:translate(-50%,-50%) scale(1); }
    50%      { opacity:1;   transform:translate(-50%,-50%) scale(1.2); }
}

/* ============================================================
   10. INFO BOX
   FIX R3: CSS Grid Overlay statt position:absolute
   Grid-Technik: img + content im selben Grid-Slot →
   content overlay ist immer exakt deckungsgleich mit dem Bild.
   Padding steuert den Abstand zu den Frame-Rändern.
   ============================================================ */
.ea-info-box {
    width: 100%; max-width: 440px; margin-top: 20px;
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease; z-index: 5;
}
.ea-info-box.is-visible {
    opacity: 1; transform: translateY(0); pointer-events: auto;
}

/* Hinweis: Flyer-Bild erscheint jetzt nur noch im Special-Event-Modal (siehe Abschnitt 10b),
   nicht mehr direkt in der Info-Box. */

/* FIX: Grid-Overlay statt position:relative/absolute */
.ea-info-frame {
    display: grid; /* Beide Kinder teilen denselben Grid-Bereich */
}
.ea-info-frame > * {
    grid-area: 1 / 1; /* Beide im selben Slot → perfektes Overlay */
}
.ea-info-frame-img {
    width: 100%; height: auto; display: block; object-fit: contain;
    /* img definiert die Grid-Höhe, content overlay nutzt denselben Raum */
}

/* FIX: Padding-basiertes Inset — zuverlässiger als absolute %
   Padding-% in CSS ist immer relativ zur Container-BREITE (auch top/bottom).
   Frame ist quadratisch → padding-top 24% = 24% der Breite = 24% der Höhe ✓
   Visueller Screen-Bereich: ab ~20% oben, ~17% seitlich, ~18% unten */
.ea-info-content {
    display: flex; flex-direction: column; justify-content: center;
    align-items: flex-start; gap: 6px; overflow: hidden; box-sizing: border-box;
    padding: 27% 22% 20% 22%; /* FIX: mehr Innenabstand zum Frame-Rand */
}

.ea-info-game {
    font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 800;
    color: rgba(255,40,40,0.9); letter-spacing: 0.25em;
    text-transform: uppercase; margin: 0;
}
.ea-info-title {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(16px,2vw,24px); color: #fff;
    letter-spacing: 0.08em; margin: 0; line-height: 1.1;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.ea-info-time, .ea-info-location {
    font-family: 'Inter', sans-serif;
    font-size: clamp(10px,1vw,12px); color: rgba(255,255,255,0.8); margin: 0;
}
.ea-info-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(9px,0.9vw,11px); color: rgba(255,255,255,0.55); margin: 0;
    line-height: 1.5;
    max-height: 4.5em;  /* 3 Zeilen × 1.5 line-height */
    overflow: hidden;
}
.ea-info-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,40,40,0.85); color: #fff;
    font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 800;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 7px 14px; border-radius: 2px; text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    width: fit-content; margin-top: 4px;
}
.ea-info-cta:hover { background: rgba(255,40,40,1); transform: translateX(4px); }
.ea-cta-arrow { width: 14px; height: auto; object-fit: contain; filter: brightness(10); }

/* ============================================================
   10b. SPECIAL EVENT MODAL
   ============================================================ */
.ea-modal-overlay {
    position: fixed; inset: 0; z-index: 100000000;
    background: rgba(0,0,0,0.86);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; cursor: default !important;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease;
}
.ea-modal-overlay * { cursor: default !important; }
.ea-modal-overlay.is-visible { opacity: 1; pointer-events: auto; }

body.ea-modal-open { overflow: hidden; }

.ea-modal {
    position: relative; width: 100%; max-width: 460px;
    max-height: 88vh; overflow-y: auto;
    background: #0a0a0c;
    border: 2px solid rgba(255,40,40,0.5);
    border-radius: 6px;
    box-shadow: 0 0 50px rgba(255,40,40,0.25), 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.92) translateY(10px);
    transition: transform 0.25s cubic-bezier(0.175,0.885,0.32,1.275);
}
.ea-modal-overlay.is-visible .ea-modal { transform: scale(1) translateY(0); }

.ea-modal-close {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 20px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.ea-modal-close:hover { background: rgba(255,40,40,0.8); transform: scale(1.08); }

.ea-modal-flyer { width: 100%; line-height: 0; }
.ea-modal-flyer img { width: 100%; height: auto; display: block; }

.ea-modal-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 8px; }

.ea-modal-badge {
    display: inline-block; width: fit-content;
    background: #c8a84b; color: #fff;
    font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 800;
    letter-spacing: 0.15em; padding: 3px 10px; border-radius: 2px;
    margin-bottom: 4px;
}
.ea-modal-game {
    font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 800;
    color: rgba(255,40,40,0.9); letter-spacing: 0.25em;
    text-transform: uppercase; margin: 0;
}
.ea-modal-title {
    font-family: 'Bangers', sans-serif;
    font-size: clamp(24px,5vw,32px); color: #fff;
    letter-spacing: 0.06em; margin: 2px 0 6px; line-height: 1.1;
}
.ea-modal-time, .ea-modal-location {
    font-family: 'Inter', sans-serif; font-size: 13px;
    color: rgba(255,255,255,0.85); margin: 0;
}
.ea-modal-desc {
    font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.6;
    color: rgba(255,255,255,0.65); margin: 10px 0 4px; white-space: pre-line;
}
.ea-modal-cta {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,40,40,0.9); color: #fff;
    font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 12px 20px; border-radius: 3px; text-decoration: none;
    margin-top: 10px; transition: background 0.2s ease, transform 0.15s ease;
}
.ea-modal-cta:hover { background: rgba(255,40,40,1); transform: translateY(-2px); }

@media (max-width: 480px) {
    .ea-modal-body { padding: 20px 18px 22px; }
    .ea-modal-title { font-size: clamp(20px,6vw,26px); }
}

/* ============================================================
   11. PLACEHOLDER
   ============================================================ */
.ea-center-placeholder {
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; padding: 40px 20px; transition: opacity 0.3s ease;
}
.ea-center-placeholder.is-hidden {
    opacity: 0; pointer-events: none; position: absolute;
}
.ea-placeholder-logo {
    width: clamp(120px,16vw,220px); height: auto; object-fit: contain; opacity: 0.6;
    animation: placeholderFloat 4s ease-in-out infinite;
}
@keyframes placeholderFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-12px) scale(1.03); }
}
.ea-placeholder-text {
    font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
    color: rgba(255,255,255,0.25); letter-spacing: 0.25em;
    text-transform: uppercase; text-align: center; margin: 0;
}

/* ============================================================
   12. DEKO
   ============================================================ */
.ea-deko { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.ea-deko-stars { position: absolute; width: clamp(60px,8vw,120px); height: auto; opacity: 0.25; }
.ea-deko-stars--1 { top:15%; left:3%; animation: dekoSpin1 12s linear infinite; }
.ea-deko-stars--2 { top:25%; right:3%; animation: dekoSpin2 15s linear infinite reverse; }
@keyframes dekoSpin1 { from{transform:rotate(0deg) scale(1);} 50%{transform:rotate(180deg) scale(1.2);} to{transform:rotate(360deg) scale(1);} }
@keyframes dekoSpin2 { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }

/* ============================================================
   13. MOBILE — alles größer, kompakter
   ============================================================ */
@media (max-width: 900px) {
    /* FIX: Custom-Cursor ist unter 900px deaktiviert (siehe #ea-cursor { display:none }
       weiter unten) — ohne diese Zeile bleibt cursor:none von Abschnitt 1 aktiv und es ist
       gar kein Cursor mehr sichtbar (Bug bei Fenster-Verkleinerung am PC / Geräten mit Maus). */
    .ea-page, .ea-page * { cursor: auto !important; }

    .ea-arena-wrap {
        grid-template-columns: 1fr; grid-template-rows: auto; padding-bottom: 60px;
    }
    .ea-panel--left  { order: 2; display: none; }
    .ea-center       { order: 3; }
    .ea-panel--right { order: 2; display: none; }
    .ea-panel--right.is-active, .ea-panel--left.is-active { display: flex; }

    /* FIX: Panel-Header Mobile größer + zentriert */
    .ea-panel-label-img { height: 52px; }
    .ea-panel-title { font-size: clamp(26px,6vw,36px); }
    .ea-panel-header { gap: 12px; padding-bottom: 12px; margin-bottom: 10px; justify-content: center; }
    .ea-panel { align-items: stretch; }

    /* FIX: Slots auf Mobile — Frame + Text + Pfeil größer */
    .ea-slot { padding: 14px 18px; gap: 16px; }
    .ea-slot-frame { width: 66px; height: 66px; }
    .ea-slot-name  { font-size: clamp(14px,4vw,17px); font-weight: 700; white-space: normal; }
    .ea-slot-time  { font-size: 12px; }
    .ea-slot-arrow { width: 48px; }  /* FIX: noch größer */

    /* FIX: Coin Mobile — 48px + overflow:hidden */
    .ea-slot-coin { width: 48px; height: 48px; background-size: 384px 48px; overflow: hidden; }
    @keyframes coinFrameSpin { from{background-position:0 0;} to{background-position:-384px 0;} }

    /* Day Separator größer */
    .ea-day-separator { font-size: 13px; letter-spacing: 0.25em; }

    /* Challengers */
    .ea-challengers { height: clamp(200px,55vw,380px); }

    /* FIX: Info Box Mobile — volle Breite + Grid-Padding angepasst */
    .ea-info-box { max-width: 92vw; margin-top: 16px; }
    .ea-info-content { padding: 19% 20% 17% 20%; gap: 5px; } /* FIX: top weniger, links/rechts gut */
    .ea-info-title   { font-size: clamp(17px,4.5vw,24px); }
    .ea-info-time, .ea-info-location { font-size: clamp(11px,2.8vw,13px); }
    .ea-info-desc    { font-size: clamp(10px,2.5vw,12px); max-height: 4.5em; }
    .ea-info-game    { font-size: 10px; }
    .ea-info-cta     { font-size: 11px; padding: 8px 16px; }

    /* Cursor ausblenden */
    #ea-cursor { display: none; }
}

@media (max-width: 480px) {
    .ea-hero { padding: 30px 16px 20px; }
    .ea-slot { padding: 10px 12px; gap: 12px; }
    .ea-slot-frame { width: 54px; height: 54px; }
    .ea-slot-coin  { width: 42px; height: 42px; background-size: 336px 42px; }
}