/* Fondo galáctico */
body {
    margin: 0;
    padding: 0;
    background: url('84eb72ea-d1e5-4666-84f8-c018e3542c20.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Arial Black', sans-serif;
    overflow: hidden;
}

/* Centrado */
.container {
    text-align: center;
    margin-top: 20%;
}

/* Título gangster + glitch real */
.title {
    color: white;
    font-size: 80px;
    font-weight: bold;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Botón galáctico */
.enter-btn {
    margin-top: 60px;
    padding: 25px 80px;
    font-size: 35px;
    color: white;
    background: linear-gradient(45deg, #6a0dad, #00ffff, #ff00ff, #6a0dad);
    background-size: 400% 400%;
    border: 3px solid white;
    border-radius: 15px;
    cursor: pointer;
    text-shadow: 0 0 10px white;
    animation: gradientMove 4s ease infinite, pulse 1.5s infinite alternate;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff;
    transition: transform 0.2s;
}

.enter-btn:hover {
    transform: scale(1.15) rotate(-2deg);
    box-shadow: 0 0 50px #00ffff, 0 0 80px #ff00ff, 0 0 100px #ff00ff;
}

/* Animaciones del botón */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Cursor animado */
body {
    cursor: url('https://cur.cursors-4u.net/others/oth-7/oth679.cur'), auto;
}

