@import url('https://fonts.googleapis.com/css2?family=Almendra+Display&display=swap');

body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

#container {
  max-width: 600px;
  margin: 20px auto;
  padding: 0 10px;
  text-align: center;
}

.banner-box {
  position: relative;
  width: 100%;
  border: 4px dashed #333333;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.banner {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  opacity: 0.8;
}

.banner-overlay {
  position: absolute;
  width: 100%;
  text-align: center;
}

.banner-overlay h1 {
  font-family: 'Almendra Display', cursive;
  font-size: 3.5rem;
  color: #ffffff;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 
    -3px -3px 0 #000,  
     3px -3px 0 #000,
    -3px  3px 0 #000,
     3px  3px 0 #000,
     0px 5px 15px rgba(0,0,0,1);
}

.banner-overlay .tagline {
  color: #ffff00;
  font-family: Impact, sans-serif;
  font-size: 1.5rem;
  margin-top: 5px;
  text-shadow: 2px 2px 0 #000;
}

.raya {
  border: none;
  border-top: 2px solid #555;
  margin: 30px 0;
}

.chatarra-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 20px 0;
}

.boton-chatarra {
  display: inline-block;
  text-decoration: none;
  box-sizing: border-box;
  width: 80%;
  max-width: 280px;
  background: linear-gradient(135deg, #555, #222);
  color: #ff9900;
  padding: 14px 24px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  border: 4px solid #333;
  border-style: outset;
  cursor: pointer;
  box-shadow: 3px 3px 0px #000;
  transition: all 0.1s ease;
  text-align: center;
  font-size: 1.1rem;
}

.boton-chatarra:active {
  border-style: inset;
  box-shadow: 1px 1px 0px #000;
  transform: translate(2px, 2px);
}

h2 {
  font-size: 1.5rem;
  color: #aaaaaa;
  margin-bottom: 15px;
}

.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.links li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.links a {
  font-size: 1.5rem;
  font-weight: bold;
}

.icon-link img {
  width: 24px;
  height: 24px;
}

footer {
  margin-top: 40px;
  font-size: 1rem;
  color: #555555;
}

@media (max-width: 600px) {
  #container {
    max-width: 100%;
    margin: 10px auto;
  }
  .banner {
    height: 200px;
  }
  .banner-overlay h1 {
    font-size: 2.6rem;
  }
  .links a {
    font-size: 1.8rem;
  }
  .icon-link img {
    width: 28px;
    height: 28px;
  }
  .boton-chatarra {
    width: 90%;
  }
}
