@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    background: url("Fondo280425.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}

/* Contenedor del logo y texto alineado horizontal a la derecha */
.logo-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

/* Botón debajo del logo y texto */
.logo-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    height: 60px;
    max-width: 160px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: right;
    animation: neonGlow 2s infinite alternate;
}

.btn-login {
    margin-top: 8px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-login:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    background-color: #0a0a0a;
}

/* Contenido principal */
.content {
    position: relative;
    top: 30%;
    text-align: center;
    z-index: 5;
}

.main-title {
    font-size: 50px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonGlow 3s infinite alternate;
}

.subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Botones */
.botones {
    margin-top: 20px;
}

.btn-sipare {
    padding: 15px 30px;
    font-size: 22px;
    border: 2px solid #00ffff;
    color: #00ffff;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn-sipare:hover {
    background-color: #ff00ff;
    color: #0a0a0a;
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

.proximamente {
    margin-top: 15px;
    font-size: 18px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #555555;
    z-index: 5;
}

/* Animación de glow neón */
@keyframes neonGlow {
    from {
        text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 15px #ff00ff;
    }
    to {
        text-shadow: 0 0 20px #00ffff, 0 0 30px #ff00ff, 0 0 40px #00ffff;
    }
}
