:root{
  --bg:#0b141a;
  --accent:#00eaff;
  --accent2:#0088ff;
  --muted:#a6c4d0;
  --panel:rgba(9,22,30,0.55);
}

body{
  margin:0;
  font-family:'Orbitron', sans-serif;
  background:linear-gradient(180deg,#00141c,#0a1116);
  color:#e7faff;
}

.container{
  width:95%;
  max-width:1200px;
  margin:auto;
  padding:18px;
}

.header{
  background:rgba(0,0,0,0.4);
  padding:20px;
  border-radius:10px;
  border:1px solid rgba(0,200,255,0.15);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:55px;
  height:55px;
}

.glow{
  text-shadow:0 0 10px var(--accent);
}

.subtitle{
  color:var(--muted);
  margin-bottom:12px;
}

.banner{
  position:relative;
  height:330px;
  overflow:hidden;
  border-radius:12px;
  margin-top:15px;
}

.banner-img{
  width:100%;
  height:330px;
  object-fit:cover;
  object-position:center;
  display:none;
  transition:transform 3s ease;
}

.banner-img:hover{
  transform:scale(1.05);
}

.section-title{
  margin-top:28px;
  font-size:24px;
  color:var(--accent);
  position:relative;
}

.section-title::after{
  content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  width:70px;
  height:3px;
  background:var(--accent);
  border-radius:3px;
}

.main-grid{
  display:grid;
  grid-template-columns:1fr 1fr 300px;
  gap:20px;
  margin-top:20px;
}

.column{
  background:var(--panel);
  padding:14px;
  border-radius:10px;
}

.card{
  background:rgba(255,255,255,0.03);
  padding:12px;
  border-radius:10px;
  margin-bottom:15px;
  border:1px solid rgba(255,255,255,0.05);
  transition:0.2s;
}

.card:hover{
  transform:scale(1.02);
}

.card.highlight{
  border:1px solid var(--accent);
}

.thumb{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:8px;
}

.desc{
  font-size:13px;
  color:var(--muted);
}

.classified{
  background:rgba(255,50,50,0.08);
  border:1px dashed rgba(255,80,80,0.4);
  padding:10px;
  border-radius:10px;
}

.registro input,
.registro select,
.registro button{
  width:100%;
  padding:10px;
  margin-top:10px;
  border-radius:6px;
  border:none;
  background:rgba(255,255,255,0.05);
  color:white;
}

.registro button{
  background:linear-gradient(90deg,var(--accent), var(--accent2));
  font-weight:bold;
  cursor:pointer;
}

.icons{
  display:flex;
  gap:15px;
  margin-top:15px;
}

.icons i{
  font-size:30px;
  color:var(--accent);
  transition:0.3s;
}

.icons i:hover{
  color:var(--accent2);
  transform:scale(1.15);
}

.footer{
  text-align:center;
  color:var(--muted);
  margin-top:20px;
}

.jaegers-principales article:nth-child(1){
  border-left:4px solid var(--accent2);
}

.icons i:nth-child(3){
  text-shadow:0 0 8px rgba(255,0,0,0.4);
}


@media(max-width:900px){
  .main-grid{
    grid-template-columns:1fr;
  }
  .banner{
    height:250px;
  }
  .banner-img{
    height:250px;
  }
}
.mapa iframe{
    width:100%;
    height:190px;
    border-radius:10px;
    margin-top:15px;
    border:1px solid rgba(255,255,255,0.1);
}
.flicker-text {
    color: var(--accent);
    animation: flick 2s infinite;
}

@keyframes flick {
    0% { opacity: 1; }
    40% { opacity: 0.7; }
    50% { opacity: 0.3; }
    60% { opacity: 0.7; }
    100% { opacity: 1; }
}


