
/* style.css - Estilo retro 2000s para El Rincón De Roger */

body {
  background: url('fca28a8363d2941c338f452fa227b8d5.jpg') repeat;
  background-size: cover;
  font-family: "Comic Sans MS", Tahoma, Verdana, sans-serif;
  color: #000080;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

h1 {
  font-size: 36px;
  color: #ffffff;
  text-shadow: 2px 2px #000000;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  color: #fff;
  margin: 15px auto;
  max-width: 600px;
  text-shadow: 1px 1px #000;
}

nav {
  margin: 30px 0;
}

nav a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background-color: #ffe600;
  color: #000;
  text-decoration: none;
  border: 3px double #000;
  border-radius: 8px;
  box-shadow: 3px 3px #aaa;
  font-weight: bold;
}

nav a:hover {
  background-color: #ffcc00;
  color: #003399;
  box-shadow: 2px 2px #666;
}

.retro-box {
  border: 3px dashed #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  border-radius: 10px;
}

img.logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

a {
  color: #ffffff;
  text-decoration: underline;
}

a:hover {
  color: #cc0000;
  background-color: #ffffcc;
}

/* Contador de visitas estilo retro */
.counter {
  font-size: 14px;
  margin-top: 40px;
  color: #fff;
  font-family: monospace;
  text-shadow: 1px 1px #000;
}

/* Música de fondo escondida */
audio {
  display: none;
}

/* Efecto de nieve con estrellas */
.snowflake {
  position: fixed;
  top: -10px;
  color: #fff;
  font-size: 1em;
  pointer-events: none;
  animation: fall linear infinite;
  z-index: 9999;
  opacity: 0.8;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}
