/* Estilo base */
body {
    margin: 0; padding: 0;
    background: #000 url('images/home.png') repeat;
    color: #fff;
    font-family: Arial, sans-serif;
}
header {
    text-align: center;
    padding: 20px;
}
nav a {
    display: inline-block;
    margin: 0 10px;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
nav a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255,255,255,0.7);
}
main {
    text-align: center;
    padding: 40px;
}

/* Estilo para logos de mods */
.mod-logo {
    width: 500px;
    margin: 20px auto;
    display: block;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Fondo fijo blur */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: url('home.png') no-repeat center center / cover;
  filter: blur(6px);
  z-index: -1;
}

/* Contenedor principal con fondo fijo */
body {
    background-attachment: fixed;
}

/* Card de contenido */
.content-card {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
    color: white;
    position: relative;
    z-index: 1;
}
