<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset y base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Barlow', sans-serif;
    color: white;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Fondo con zoom animado */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/banner.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    transform-origin: center;
    animation: zoomLoop 20s ease-in-out infinite;
}

/* AnimaciÃ³n de zoom suave */
@keyframes zoomLoop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Navbar */
.navbar {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 25px 0;
	position: fixed;
	top: 0;
	z-index: 1000;
	background: transparent;
}

.logo img {
	display: none;
}

.nav-menu {
	display: flex;
	gap: 36px;
	align-items: center;
	background: rgba(0, 0, 0, 0.2);
	padding: 12px 24px;
	border-radius: 4px;
	backdrop-filter: blur(4px);
}

.nav-menu a {
	color: white;
	text-decoration: none;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s ease;
	padding: 6px 10px;
}

.nav-menu a:hover {
	color: #ffa726;
}

.btn-account {
	border: 1px solid #ffa726;
	padding: 7px 16px;
	border-radius: 3px;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-account:hover {
	background: #ffa726;
	color: black !important;
}

.btn-account i{
    font-size:12px;
    color:inherit;      /* usa el mismo color que el texto */
}

/* Hero */
.hero {
  height: calc(100vh - 240px);  /* sustituye 80px por la altura real de tu navbar */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
	max-width: 500px;
	margin-top: 100px;
}

.subtext {
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 15px;
	color: #ccc;
}

.hero-content h1 {
	font-size: 54px;
	font-weight: 800;
	line-height: 1.2;
}

.highlight {
	background-color: #ff8c00;
	padding: 0 12px;
	color: #1e1e1e;
	margin-left: 10px;
}

.description {
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.7;
	color: #ccc;
}

/* Card inferior izquierda */
.card-left {
	position: absolute;
	bottom: 40px;
	left: 40px;
	width: 280px;
	background: rgba(0, 0, 0, 0.4);
	padding: 20px;
	border-radius: 6px;
	font-size: 14px;
	backdrop-filter: blur(4px);
}

.card-title {
	font-weight: 700;
	margin-bottom: 5px;
	font-size: 16px;
	color: #fff;
}

.stars {
	color: #ffa726;
	margin-bottom: 5px;
}

.card-desc {
	color: #ccc;
	margin-bottom: 10px;
}

.card-button {
	background: #ff8c00;
	color: white;
	padding: 6px 16px;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
	border-radius: 2px;
	transition: background 0.3s ease;
}

.card-button:hover {
	background: #e67e00;
}


.scroll-btn {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 42px;
	height: 42px;
	background: #ff8c00;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-decoration: none;
	font-size: 20px;
	z-index: 1001;
	transition: background 0.3s ease;
}

.scroll-btn:hover {
	background: #e67e00;
}

/* -------------------------------------------------------------
   Registro â€“ bloques nuevos
   ----------------------------------------------------------- */
   .register{
	min-height:100vh;
	display:flex;
	justify-content:center;
	align-items:center;
	padding:120px 20px 40px;   
}

.reg-form{
	width:380px;
	background:rgba(0,0,0,.60);
	padding:35px 40px 45px;
	border-radius:6px;
	backdrop-filter:blur(4px);
	box-shadow:0 8px 32px rgba(0,0,0,.6);
}

.reg-form h2{
	margin:0 0 18px;
	font-weight:600;
	font-size:24px;
	text-align:center;
}

.reg-form label{
	display:block;
	margin:18px 0 6px;
	font-weight:600;
}

.reg-form input{
	width:100%;
	padding:10px 12px;
	border:none;
	border-radius:6px;
	background:#1c1c1e;
	color:#f1f1f1;
}

.reg-form input:focus{
	outline:2px solid #ffa726;
}

.btn-primary{
	width:100%;
	margin-top:26px;
	padding:12px;
	border:none;
	border-radius:6px;
	font-weight:700;
	background:linear-gradient(135deg,#ffa726,#ff8c00);
	color:#fff;
	cursor:pointer;
	transition:opacity .2s ease;
}
.btn-primary:hover{opacity:.85;}

.form-errors{
	background:#7b100d;
	border-left:4px solid #ff3a35;
	padding:12px 14px;
	border-radius:6px;
	margin-bottom:16px;
}
.form-errors p{margin:4px 0;}

/* ----------------------------------------------------------------
   Extra buttons / links for register page
-----------------------------------------------------------------*/

.btn-primary,
.btn-secondary{
    font-size:16px;
    font-weight:700;
    letter-spacing:.3px;
}

.btn-primary{
    display:block;
    width:100%;
    margin-top:14px;
    padding:12px;
    border:none;
    border-radius:6px;
    color:#fff;
    font-size:16px;
    font-weight:700;
    letter-spacing:.3px;
    text-align:center;
    text-decoration:none;
    cursor:pointer;

    background:#ffa726; 
    transition:background .25s ease;
}

.btn-primary:hover{
    background:#ff8c00;                    
    color:#fff;                          
}

.btn-secondary{
    display:block;
    width:100%;
    margin-top:14px;
    padding:12px;
    border:1px solid #ffa726;
    border-radius:6px;
    color:#fff;
    text-align:center;
    text-decoration:none;
    transition:background .2s ease,color .2s ease;
}
.btn-secondary:hover{
    background:#ffa726;
    color:#000;
}

/* boton de login */
.login-link{
    margin-top:18px;
    text-align:center;
    font-size:14px;
}
.login-link a{
    color:#ffa726;
    text-decoration:none;
}
.login-link a:hover{text-decoration:underline;}

.spinner{
    width:16px;height:16px;
    border:2px solid transparent;
    border-top-color:#fff;
    border-radius:50%;
    animation:spin .7s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}


/* Realtime requirements list */
.requirements{
    margin:10px 0 4px;
    font-size:13px;
}
.requirements p{
    margin:4px 0; display:flex; align-items:center; gap:6px;
}
.requirements p i{
    width:14px; height:14px;
}
.invalid i{color:#ff4d4d;}
.valid   i{color:#28a745;}

/* Login Page */
.spinner{width:16px;height:16px;border:2px solid transparent;border-top-color:#fff;border-radius:50%;margin-right:6px;animation:spin .7s linear infinite;display:inline-block;vertical-align:middle}
@keyframes spin{to{transform:rotate(360deg)}}

/* ERROR PAGE */
.error-wrap{
	min-height:100vh;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	gap:28px;
	padding:120px 20px 40px;
	background:rgba(0,0,0,.5);
	backdrop-filter:blur(4px);
	text-align:center;
}
.error-wrap h1{
	font-size:64px;
	font-weight:800;
	margin:0;
}
.error-wrap p{
	font-size:18px;
	color:#ccc;
	margin:0;
}

/* ACCOUNT MANAGER */
/* --- Account dropdown --------------------------------------*/
.account-wrapper{ position:relative; }

.btn-account{                   /* correcciÃ³n de colores */
    border:1px solid #ffa726;
    padding:7px 16px;
    border-radius:3px;
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:4px;
    background:transparent;
    transition:all .25s ease;
}
.btn-account:hover{
    background:#ffa726;
    color:#000;
}

.account-dropdown{
    position:absolute;
    right:0;
    top:100%;
    background:rgba(0,0,0,.9);
    border:1px solid #ffa726;
    border-radius:4px;
    width:170px;
    display:none;
    z-index:1500;
}

.account-dropdown a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    color:#fff;
    font-size:14px;
    text-decoration:none;
}
.account-dropdown a:hover{
    background:#ffa726;
    color:#000;
}

.account-wrapper:hover .account-dropdown{display:block;}

/* TEXTO DEL HOME */

.shine{
    position:relative;
    display:inline-block;
    overflow:hidden;
}

.shine::after{
    content:'';
    position:absolute;
    top:0;
    left:-25%;
    width:25%; height:100%;
    pointer-events:none;

    /* degradado estrecho y translÃºcido */
    background:linear-gradient(100deg,
        transparent 0%,
        rgba(255,255,255,.35) 45%,
        rgba(255,255,255,.55) 50%,
        rgba(255,255,255,.35) 55%,
        transparent 100%);

    mix-blend-mode:screen; 
    filter:blur(1px);

    animation:slideShine 2s ease-in-out infinite;
}

@keyframes slideShine{
    to{ left:105%; }
}

/* RectÃ¡ngulo naranja sin cambios */
.highlight{
    background:#ff8c00;
    padding:0 12px;
    color:#1e1e1e;
    display:inline-block;
}

/* CONTACT FORM */

@media (min-width:480px){
    .reg-form{
        width:660px;
        padding:45px 48px;
    }
}

.reg-form textarea{
    width:100%;
    min-height:140px;
    resize:vertical;
    padding:10px 12px;
    border:none;
    border-radius:6px;
    background:#1c1c1e;
    color:#f1f1f1;
    text-align:left;          /* â†Â&nbsp;alineaciÃ³n izquierda */
}

.reg-form label{
    font-size:15px;
}

.msg-box{
    display:flex;
    justify-content:center;   /* &lt;â”€ centrado horizontal */
    align-items:center;
    gap:10px;
    margin:20px 0;
    font-size:15px;
    text-align:center;        /* para que el texto se centre si salta de lÃ­nea */
}

/* =============================================================
   ALLâ€¯GAMES â€“Â&nbsp;catalogÂ&nbsp;+Â&nbsp;detail
   ============================================================ */

/* ---------- envoltorio general ------------------------------ */
.games-wrap{
    min-height:100vh;
    padding:140px 20px 60px;      /* hueco para la navbar fija   */
    display:flex;
    justify-content:center;
}

.games-card{
    max-width:980px;width:100%;
     height: 550px;
    background:rgba(0,0,0,.62);
    backdrop-filter:blur(6px);
    border-radius:6px;
    padding:38px 40px 42px;
    box-shadow:0 8px 32px rgba(0,0,0,.6);
}

.games-card h1{
    font:700 28px/1.1 'Barlow',sans-serif;
    text-align:center;
    margin:0 0 26px;
}

/* ---------- CATÃLOGO (grid) -------------------------------- */
.games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:24px;
}

.game-item{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:6px;
    padding:18px 20px 22px;
    cursor:pointer;
    transition:.25s;
}
.game-item:hover{
    background:rgba(255,255,255,.08);
    border-color:#ffa726;
}

.game-title{
    font:700 18px/1 'Barlow',sans-serif;
    display:flex;align-items:center;gap:8px;
}
.game-desc{font-size:14px;color:#ccc;line-height:1.45}

.badge{
    font:700 11px/1 'Barlow',sans-serif;
    padding:2px 6px;border-radius:3px;
    background:#ff8c00;color:#1e1e1e;
}

/* ---------- DETALLE ---------------------------------------- */
.game-detail{
    display:none;                    /* se muestra con JS         */
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:22px;
}

.detail-header{
    font:700 26px/1.2 'Barlow',sans-serif;
    display:inline-flex;             /* inlineâ€‘flex = se centra   */
    align-items:center;
    gap:10px;
    justify-content:center;
}

.game-detail img{
    width:100%;max-width:700px;
    height:200px;object-fit:cover;
    border-radius:6px;
}

.detail-desc{
    font-size:15px;color:#ccc;
    line-height:1.5;max-width:700px;
    margin:0;
}

/* ---------- BOTONES: apilados, mismo tamaÃ±o, centrados ------ */
.detail-actions{
    display:flex;
    flex-direction:column;           /* apilados verticalmente    */
    align-items:center;
    gap:16px;
    margin-top:22px;
}

.detail-actions .btn-primary,
.detail-actions .btn-back{
    width:200px;                     /* MISMA anchura             */
    padding:12px 0;                  /* MISMA altura              */
    display:flex;align-items:center;justify-content:center;
    font:700 15px/1 'Barlow',sans-serif;
    box-sizing:border-box;
}

/* â€œSee moreâ€ â€“ usa estilo primario global */
.detail-actions .btn-primary{
    border:1px solid transparent;    /* altura idÃ©ntica al otro   */
}

/* â€œBack to listâ€ â€“ contorneado */
.detail-actions .btn-back{
    border:1px solid #ffa726;
    background:transparent;
    color:#fff;text-decoration:none;
    transition:background .2s,color .2s;
}
.detail-actions .btn-back:hover{
    background:#ffa726;color:#000;
}

/* ---------- Fallback mÃ³vil ----------------------------------*/
@media(max-width:500px){
    .detail-actions{gap:14px}
}

/* =============================================================
   FOOTER
   ============================================================ */

.site-footer{
    width:100%;
    height:240px;                                 /* alto real de la franja */
    background:url('/assets/images/footer.png')    /* su imagen */
               center bottom/cover no-repeat;
    display:flex;
    align-items:flex-end;                         /* texto anclado abajo */
    justify-content:center;
    padding-bottom:20px;                          /* separaciÃ³n del borde */
}

.footer-inner{
    text-align:center;
    color:#fff;
    font-family:'Barlow',sans-serif;
    text-shadow:0 1px 3px rgba(0,0,0,.7);
}

.footer-inner p{
    margin:2px 0;
    font-size:14px;
    line-height:1.3;
}
</pre></body></html>