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

.main-container {
    height: 100vh;
    background: linear-gradient(135deg, 
        #b695c0 0%, 
        #7bc7d4 25%, 
        #f4a261 50%, 
        #e76f51 75%, 
        #e9c46a 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Efecto pixelado opcional (si quieres simular el PNG) */
.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    pointer-events: none;
}

/* Si tienes una imagen PNG de fondo, descomenta esta línea y comenta el background gradient */
/*
.main-container {
    background-image: url('fondo/tu-imagen-fondo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
*/

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-comenzar {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border: 4px solid #333;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    box-shadow: 6px 6px 0px #333;
    transition: all 0.2s ease;
    font-family: 'Press Start 2P', monospace;
    image-rendering: pixelated;
}

.btn-comenzar:hover {
    background-color: #333;
    color: white;
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px #666;
}

.btn-comenzar:active {
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px #333;
}

.title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 32px;
    font-weight: normal;
    text-shadow: 4px 4px 0px #333, 8px 8px 0px rgba(0,0,0,0.3);
    font-family: 'Press Start 2P', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    image-rendering: pixelated;
}

@media (max-width: 768px) {
    .title {
        font-size: 20px;
        letter-spacing: 1px;
        text-shadow: 3px 3px 0px #333, 6px 6px 0px rgba(0,0,0,0.3);
    }
    
    .btn-comenzar {
        font-size: 12px;
        padding: 15px 35px;
        letter-spacing: 1px;
        box-shadow: 4px 4px 0px #333;
    }
    
    .btn-comenzar:hover {
        box-shadow: 3px 3px 0px #666;
    }
    
    .btn-comenzar:active {
        transform: translate(4px, 4px);
    }
}
