/* Fuente personalizada */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap');

/* Estilos generales */
body {
    font-family: 'Outfit', sans-serif;
     background: #000; 
    color: #eee;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Títulos */
h1 {
    color: #ff0000;
    font-size: 2.5rem;
    margin: 20px 0;
    text-shadow: 0 0 6px #ff0000aa;
}

/* Contenedor principal */
.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.logo-link {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    text-shadow: none !important;
}


.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
  width: 120px;
  height: auto;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
}



/* Contenedores de imagen */
.image-container img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px auto;
    border: 2px solid #ff0000;
    box-shadow: 0 0 15px #ff000088;
}

/* Texto bajo imagen */
.text-container p {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 0 0 6px #ff1affaa;
}

/* Botones */
button {
    background-color: #ff0000;
    color: #000;
    font-size: 1rem;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 15px 8px;
    box-shadow: 0 0 15px #ff0000aa;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover:not(:disabled) {
    background-color: #d40000;
    box-shadow: 0 0 20px #d40000dd;
}

button:disabled {
    background: #555;
    color: #aaa;
    cursor: not-allowed;
    box-shadow: none;
}

/* Enlaces */
a {
    text-decoration: none;
    color: #ff0000;
    background-color: transparent;
    border: 1px solid #ff0000;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    margin: 20px 0;
    text-shadow: 0 0 6px #ff0000aa;
}

a:hover {
    background-color: #ff0000;
    color: #000;
}

.user-link {
  color: white !important;
  text-decoration: none !important;
  font-weight: bold;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
  cursor: pointer;
}

/* Sección de retos completados */
#completados {
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
    background: #1a1a28cc;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 0 15px #ff000088;
}

#completados h2 {
    color: #ff0000;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 8px #ff0000aa;
}

/* Elementos individuales completados */
.reto-completado {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    background-color: #2a2a3a;
    border-radius: 8px;
    box-shadow: 0 2px 6px #00000066;
}

.reto-completado img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    border: 2px solid #ff0000aa;
}

.reto-completado span {
    color: #eee;
    font-weight: 600;
}

/* Instrucciones o texto guía */
#galleryInstructions {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
}

/* Volver link */
.volver-container {
    margin: 30px 0;
}

.volver-container a {
    text-decoration: none;
    color: #ff0000;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 6px #ff0000bb;
}

.volver-container a:hover {
    text-decoration: underline;
}
#user-info a {
  border: none !important;
}




