/* Fuente personalizada */
@font-face {
  font-family: 'MiTerminal';
  src: url('fonts/terminal.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* Estilos generales */
body {
    background-color: #000000;
    background-image: url('img/pattern1.png');
    background-repeat: repeat;
    font-family: 'MiTerminal', monospace, sans-serif;
    color: #ff60c7;
    font-size: 1.2em; 
    line-height: 1.5; 
}

p, a {
    margin: 0; 
    padding: 0;
}

.merch-item p {
    margin-bottom: 20px;
}

/* Animaciones */
@keyframes movimientoHorizontal {
  0% { transform: translateX(-20px); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(-20px); }
}

@keyframes glitch {
    0%, 10%, 90%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
    20% { transform: translate(-5px, 3px) scale(1.02); opacity: 0.9; }
    30% { transform: translate(2px, -2px) scale(0.98); opacity: 1.1; }
    40% { transform: translate(-3px, 1px) scale(1.01); opacity: 0.95; }
    50% { transform: translate(1px, -4px) scale(0.99); opacity: 1.05; }
    60% { transform: translate(-2px, 2px) scale(1.01); opacity: 0.9; }
    70% { transform: translate(4px, -1px) scale(0.98); opacity: 1.1; }
    80% { transform: translate(-1px, 3px) scale(1.02); opacity: 0.95; }
}

/* Header y logo */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.header .logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 20px auto;
    animation: movimientoHorizontal 3s infinite alternate;
}

.header p {
    font-size: 1.2em;
    color: #ffffff;
}

.header .ilu {
    max-width: 30%;
    height: auto;
    display: block;
    margin: 10px auto;
    animation: glitch 0.8s infinite alternate;
}

/* Enlaces */
a {
    color: #ff60c7;
    text-decoration: none;
    text-shadow: 0 0 5px #ff60c7;
}

a:hover {
    color: #50bf00;
    text-shadow: 0 0 8px #50bf00;
}

/* Email link */
.email-link {
    text-align: center;
    margin-bottom: 10px;
}

.email-link a {
    color: #ffff00;
    text-shadow: 0 0 5px #ffff00;
}

.email-link a:hover {
    color: #ff69b4;
    text-shadow: 0 0 8px #ff69b4;
}

/* Navegación */
.nav-link {
    text-align: center;
    padding: 5px 0;
}

/* Instagram y otros contenedores */
.instagram-link {
    text-align: center;
}
