:root{--bg:#0b1020;--panel:#141b31;--panel2:#1b2540;--text:#eef2ff;--muted:#9ba7c2;--accent:#7c5cff;--danger:#ff5d73;--ok:#38d39f}*{box-sizing:border-box}body{margin:0;font-family:Inter,system-ui,Arial,sans-serif;background:linear-gradient(180deg,#0b1020,#0e1426);color:var(--text);min-height:100vh}.topbar{display:flex;justify-content:space-between;align-items:center;padding:18px 5vw;background:rgba(10,15,30,.9);position:sticky;top:0;backdrop-filter:blur(12px);z-index:10;border-bottom:1px solid #25304f}.brand{font-size:1.35rem;font-weight:800}.topbar nav{display:flex;gap:14px;align-items:center;flex-wrap:wrap}a{color:inherit;text-decoration:none}.container{width:min(1180px,92vw);margin:36px auto}.hero{display:grid;grid-template-columns:1.25fr .75fr;gap:28px;align-items:center;padding:48px 0}.hero h1{font-size:clamp(2.4rem,6vw,5rem);line-height:.95;margin:0 0 20px}.hero p,.muted{color:var(--muted)}.button,button{display:inline-block;background:var(--accent);color:white;border:0;border-radius:12px;padding:12px 18px;font-weight:700;cursor:pointer}.button.secondary{background:#263354}.small{padding:9px 13px}.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:18px}.card{background:linear-gradient(180deg,var(--panel),var(--panel2));border:1px solid #2a3658;border-radius:18px;padding:22px;box-shadow:0 15px 45px rgba(0,0,0,.22)}.price{font-size:2.4rem;font-weight:800}.form{max-width:620px}.form label{display:block;margin:14px 0 6px;color:#cbd4e8}.form input,.form select,.form textarea{width:100%;padding:12px 14px;border-radius:10px;border:1px solid #354263;background:#0f1629;color:white}.table-wrap{overflow:auto}.table{width:100%;border-collapse:collapse}.table th,.table td{padding:12px;border-bottom:1px solid #2b3655;text-align:left}.badge{padding:5px 9px;border-radius:999px;background:#263354;font-size:.8rem}.badge.active{background:rgba(56,211,159,.18);color:#7af0c8}.alert{padding:12px 16px;border-radius:10px;margin-bottom:18px;background:#263354}.alert.error{background:rgba(255,93,115,.16);color:#ff9aaa}.alert.success{background:rgba(56,211,159,.16);color:#79e9c4}.admin-layout{display:grid;grid-template-columns:220px 1fr;gap:22px}.sidebar{background:var(--panel);padding:18px;border-radius:16px;height:max-content}.sidebar a{display:block;padding:10px;border-radius:9px}.sidebar a:hover{background:#263354}.cover{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:12px;background:#202b47}footer{display:flex;justify-content:space-between;padding:28px 5vw;border-top:1px solid #25304f;color:var(--muted);margin-top:60px}@media(max-width:760px){.hero,.admin-layout{grid-template-columns:1fr}.topbar{align-items:flex-start}.topbar nav{justify-content:flex-end}.hero{padding:24px 0}}

/* Reproductor universal de juegos HTML5 */
.game-page{
    position:relative;
    left:50%;
    width:min(1440px,calc(100vw - 32px));
    transform:translateX(-50%);
}
.game-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:18px;
    margin-bottom:18px;
}
.game-heading h1{margin:10px 0 0;font-size:clamp(1.8rem,4vw,3rem)}
.game-player{
    width:100%;
    min-height:560px;
    display:flex;
    flex-direction:column;
    overflow:hidden;
    background:#050812;
    border:1px solid #2a3658;
    border-radius:20px;
    box-shadow:0 24px 70px rgba(0,0,0,.42);
}
.game-player__toolbar{
    flex:0 0 auto;
    min-height:64px;
    padding:10px 14px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    background:linear-gradient(180deg,#161e35,#10172a);
    border-bottom:1px solid #2a3658;
}
.game-player__identity{display:flex;flex-direction:column;min-width:0}
.game-player__identity strong{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.game-player__identity span{font-size:.78rem;color:var(--muted);margin-top:2px}
.game-player__actions{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}
.game-control{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:9px 13px;
    border:1px solid #354263;
    border-radius:10px;
    background:#202b47;
    color:#fff;
    font:inherit;
    font-size:.9rem;
    font-weight:700;
    cursor:pointer;
    text-decoration:none;
}
.game-control:hover,.game-control:focus-visible{background:#2a385d;outline:2px solid #8f78ff;outline-offset:2px}
.game-control--exit{background:rgba(255,93,115,.12);border-color:rgba(255,93,115,.42);color:#ffb3bf}
.game-player__viewport{
    position:relative;
    flex:1 1 auto;
    width:100%;
    height:clamp(500px,72vh,900px);
    min-height:500px;
    overflow:hidden;
    background:#000;
}
.game-player__viewport iframe{
    display:block;
    width:100%!important;
    height:100%!important;
    min-width:100%;
    min-height:100%;
    border:0;
    background:#000;
    color-scheme:dark;
}
.game-start-overlay{
    position:absolute;
    inset:0;
    z-index:3;
    width:100%;
    height:100%;
    margin:0;
    padding:24px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:0;
    border-radius:0;
    background:radial-gradient(circle at 50% 42%,rgba(124,92,255,.32),rgba(5,8,18,.92) 56%,#050812);
    color:#fff;
    text-align:center;
    cursor:pointer;
}
.game-start-overlay:hover,.game-start-overlay:focus-visible{
    background:radial-gradient(circle at 50% 42%,rgba(124,92,255,.45),rgba(5,8,18,.9) 58%,#050812);
    outline:3px solid #8f78ff;
    outline-offset:-5px;
}
.game-start-overlay[hidden]{display:none!important}
.game-start-overlay__icon{
    display:grid;
    place-items:center;
    width:74px;
    height:74px;
    padding-left:5px;
    border-radius:50%;
    background:var(--accent);
    font-size:1.8rem;
    box-shadow:0 12px 42px rgba(124,92,255,.45);
}
.game-start-overlay strong{font-size:clamp(1.35rem,3vw,2.15rem)}
.game-start-overlay small{max-width:560px;color:#c4cce0;font-size:.98rem;line-height:1.5}
.game-help{text-align:center;margin:14px auto 0;font-size:.9rem}
kbd{display:inline-block;min-width:1.7em;padding:.12em .42em;border:1px solid #45516f;border-bottom-width:2px;border-radius:5px;background:#182039;color:#fff;font:inherit;font-size:.85em;text-align:center}
.game-player:fullscreen,.game-player:-webkit-full-screen{
    width:100vw;
    height:100vh;
    height:100dvh;
    min-height:0;
    border:0;
    border-radius:0;
    display:flex;
    flex-direction:column;
    background:#050812;
}
.game-player:fullscreen .game-player__viewport,.game-player:-webkit-full-screen .game-player__viewport{
    height:auto;
    min-height:0;
    flex:1 1 auto;
}
.game-player--fallback-fullscreen{
    position:fixed;
    inset:0;
    z-index:99999;
    width:100vw;
    height:100vh;
    height:100dvh;
    min-height:0;
    border:0;
    border-radius:0;
    display:flex;
    flex-direction:column;
}
.game-player--fallback-fullscreen .game-player__viewport{height:auto;min-height:0;flex:1 1 auto}
html.game-fullscreen-lock,body.game-fullscreen-lock{overflow:hidden!important}
@media(max-width:760px){
    .game-page{left:auto;width:100%;transform:none}
    .game-heading{align-items:flex-start;flex-direction:column}
    .game-player{min-height:500px;border-radius:14px}
    .game-player__toolbar{align-items:flex-start;flex-direction:column}
    .game-player__actions{width:100%;display:grid;grid-template-columns:1fr 1fr}
    .game-control--exit{grid-column:1/-1}
    .game-player__viewport{height:70vh;min-height:420px}
    .game-player:fullscreen .game-player__toolbar,
    .game-player:-webkit-full-screen .game-player__toolbar,
    .game-player--fallback-fullscreen .game-player__toolbar{
        padding-top:max(10px,env(safe-area-inset-top));
        padding-left:max(10px,env(safe-area-inset-left));
        padding-right:max(10px,env(safe-area-inset-right));
    }
}
