/* style.css — retro 00s: neon, pixel font, scanlines, beveled buttons */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rubik:wght@300;400;700&display=swap');

:root{
  --bg-dark: #05060b;
  --panel: rgba(250,250,251,0.96);
  --neon-pink: #ff3ec5;
  --neon-cyan: #33e0ff;
  --muted: #333;
  --accent-2: #ffd166;
  --glass: rgba(255,255,255,0.04);
}

/* RESET */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Rubik', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:  url('fondo.jpg') center top / cover no-repeat fixed;
  color:#0b0b0b;
  -webkit-font-smoothing:antialiased;
  display:flex;
  justify-content:center;
  padding:28px 12px;
  background-attachment: fixed;
  overflow-y:auto;
}

/* subtle animated gradient overlay (gives that glow + movement) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background: linear-gradient(120deg, transparent 0%, rgba(51,224,255,0.03) 20%, rgba(255,62,197,0.03) 50%, transparent 80%);
  pointer-events:none;
  mix-blend-mode:screen;
  animation: slowpan 18s linear infinite;
}
@keyframes slowpan{ 0%{transform:translateX(-12%)} 50%{transform:translateX(12%)} 100%{transform:translateX(-12%)} }

/* scanlines to feel CRT-ish */
.site::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image: repeating-linear-gradient(transparent 0 3px, rgba(0,0,0,0.03) 3px 4px);
  mix-blend-mode: overlay;
  opacity:0.6;
}

/* container */
.site{
  width:980px;
  max-width:98%;
  min-height:640px;
  padding:18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,250,0.92));
  border:6px solid #c9c9c9;
  box-shadow: 0 20px 60px rgba(2,6,12,0.7);
  position:relative;
  overflow:hidden;
  border-radius:6px;
}

/* header */
.header{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:10px;
}
.logo{
  width:96px;
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Press Start 2P', monospace;
  font-size:14px;
  color:white;
  border:3px solid #000;
  background: linear-gradient(180deg, var(--neon-pink), #ff80da);
  box-shadow: 0 8px 30px rgba(255,62,197,0.12), inset 0 -8px 20px rgba(0,0,0,0.15);
  transform:translateZ(0);
}

/* title area */
.title{
  font-size:20px;
  letter-spacing:1px;
  color:#0a2540;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7), 0 6px 28px rgba(3,17,35,0.12);
}
.title small{ display:block; font-size:11px; color:var(--muted); margin-top:4px; }

/* layout columns */
.layout{ display:grid; grid-template-columns:250px 1fr; gap:18px; align-items:start; }

/* NAV */
.nav{
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,245,245,0.96));
  padding:12px;
  border:3px solid #9b9b9b;
  height:520px;
  overflow:auto;
}
.nav h3{ font-size:12px; margin:6px 0 10px 0; text-transform:uppercase; letter-spacing:1px; color:#222; }
.nav ul{ list-style:none; padding:0; margin:0; }
.nav li{ margin:8px 0; }

/* pixel / beveled buttons like 00s buttons */
.btn{
  display:block;
  padding:10px 12px;
  text-decoration:none;
  font-weight:700;
  font-size:12px;
  border:3px solid #fff;
  border-bottom-color:#999;
  border-right-color:#999;
  background: linear-gradient(180deg,#fff,#eee);
  color: #102a5a;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.18);
  border-radius:6px;
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:active{ transform: translateY(2px);}
.btn:hover{
  transform: translateY(-3px);
  box-shadow: 8px 12px 30px rgba(3,17,35,0.18);
}

/* tiny decorative badges to emulate "site buttons" */
.site-button{
  display:inline-block;
  padding:6px 8px;
  border-radius:4px;
  font-size:11px;
  margin:6px 6px 0 0;
  background: linear-gradient(180deg,#0b2335,#073246);
  color:white;
  font-weight:700;
  font-family: 'Press Start 2P', monospace;
  letter-spacing:0.6px;
  box-shadow: inset 0 -6px 18px rgba(0,0,0,0.25);
}

/* main content card */
.maincard{
  background: linear-gradient(180deg, var(--panel), #f6f7fb);
  border:2px solid #bdbdbd;
  padding:16px;
  min-height:520px;
  position:relative;
}
.h1{ font-size:20px; margin:0 0 8px 0; font-family:'Press Start 2P', monospace; color:#12263d; }

/* neon accent headings */
.section{
  margin-bottom:12px;
  padding:12px;
  border:2px dashed rgba(0,0,0,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(250,250,250,0.7));
  box-shadow: 0 6px 18px rgba(3,17,35,0.04);
}
.section h4{
  margin:0 0 8px 0;
  font-size:13px;
  color:#0b2a45;
  text-transform:uppercase;
  letter-spacing:0.8px;
  position:relative;
}
.glow-title{
  display:inline-block;
  padding:4px 8px;
  border-radius:4px;
  color:white;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  font-weight:700;
  font-family:'Rubik',sans-serif;
  box-shadow: 0 8px 32px rgba(51,224,255,0.12), 0 0 28px rgba(255,62,197,0.08);
  transform:translateZ(0);
}

/* retro link style */
a{ color:var(--neon-cyan); text-decoration:none; }
a:hover{ text-decoration:underline; }

/* "return" button styled like a small badge with neon border */
.return{
  display:inline-block;
  margin-top:10px;
  padding:8px 10px;
  border-radius:6px;
  background: linear-gradient(180deg,#fff,#eee);
  border:2px solid #d2d2d2;
  color:#0b2540;
  font-weight:700;
  text-decoration:none;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.12);
}

/* footer */
.footer{ margin-top:14px; font-size:12px; color:var(--muted); text-align:center; padding-top:10px; border-top:1px dashed #e0e0e0; }

/* floating neon corner graphic (pure CSS) */
.neon-corner{
  position:absolute;
  right:18px;
  top:18px;
  width:120px;
  height:120px;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 20%, rgba(51,224,255,0.18), transparent 12%),
    radial-gradient(circle at 80% 80%, rgba(255,62,197,0.12), transparent 12%);
  filter: blur(6px);
  mix-blend-mode: screen;
  opacity:0.95;
}

/* small responsive tune */
@media (max-width:980px){
  .layout{ grid-template-columns: 1fr; }
  .nav{ order:2; height:auto; }
  .site{ padding:12px; }
}
