
        /* 1. FLEXBOX PARA PEGAR EL FOOTER ABAJO */
        html,
        body {
            height: 100%;
            margin: 0;
        }

        body {
            display: flex;
            flex-direction: column;
            background-color: #000;
        }

        /* 2. CORRECCIÓN DEL VIDEO DE FONDO */
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -2;
            transform: translate(-50%, -50%);
            object-fit: cover;
            opacity: 0.5;
        }

        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        header.hero {
            flex: 1 0 auto;
            /* Esto empuja el footer hacia abajo */
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }


        /* Estilos específicos para lograr el efecto de la imagen */
        .portfolio-details {
            display: flex;
            align-items: center;
            min-height: 80vh;
            /* Para que ocupe buen espacio en pantalla */
        }



        .mothkiller-float {
            width: 200px;
            /* Ajusta este valor (ej. 120px o 180px) según qué tan pequeño lo quieras */
            max-width: 100%;
            height: auto;
            animation: floating 3s ease-in-out infinite;
            /* Mantiene la animación si la quieres igual al zombie */
            transition: transform 0.3s ease;
        }

        @keyframes floating {
            0% {
                transform: translate(0, 0px);
            }

            50% {
                transform: translate(0, -20px) rotate(5deg);
            }

            100% {
                transform: translate(0, 0px);
            }
        }

        .project-description {
            text-align: left;
            color: #ffffff;
            max-width: 600px;
        }

        .game-logo {
            max-width: 300px;
            margin-bottom: 20px;



        }

        .btn-google-play img {
            width: 200px;
            margin-top: 20px;
        }

        footer {
            flex-shrink: 0;
            /* Evita que el footer se encoja */
            background: rgba(0, 0, 0, 0.9);
            padding: 0.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* ======================================================
           MEDIA QUERIES (RESPONSIVE DESIGN)
           ====================================================== */

        /* Para Pantallas Grandes (PC) */
        @media (min-width: 992px) {
            .mothkiller-float {
                max-width: 120%;
                margin-left: -150px;
                /* Desplazamiento a la izquierda */
            }

            .game-logo {
                max-width: 350px;
                margin-left: -50px;
                /* Logo hacia la izquierda */
            }

            .project-description {
                text-align: left;
            }
        }

        /* Para Pantallas Medianas y Pequeñas (Tablets/Móviles) */
        @media (max-width: 991px) {
            header.hero {
                padding-bottom: 50px;
            }

            .project-description {
                text-align: center;
                /* Centramos el texto en móviles */
                max-width: 100%;
            }

            .mothkiller-float {
                width: 100px;
            }

            .game-logo {
                margin-left: 0;
                max-width: 250px;
            }

            .parrafo3 {
                text-align: center !important;
            }
        }


/* Usamos el ID del body para aislar los estilos de Freak Planet Studios */
/* Selector principal para no romper otras páginas */
#mothkiller-page {
    background-color: #000;
    overflow-x: hidden;
}

#mothkiller-page .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* En móvil cambiaremos esto a block mediante media query */
    padding: 100px 0 60px 0; 
}

/* Video de fondo */
#mothkiller-page .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
    opacity: 0.5;
}

#mothkiller-page .hero-video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    z-index: -1;
}

/* --- ANIMACIÓN FLOTANTE (IGUAL A ZOMBIE CITY) --- */
#mothkiller-page .moth-float {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Usamos la animación floatingZ para consistencia */
    animation: floatingZ 3s ease-in-out infinite;
}

@keyframes floatingZ {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Estilos de Texto y Logo */
#mothkiller-page .game-logo {
    max-width: 320px;
    width: 90%;
    margin-bottom: 20px;
}

#mothkiller-page .game-subtitle {
    color: #ff9900;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

#mothkiller-page .description-text {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

#mothkiller-page .btn-google-play img {
    width: 200px;
    transition: transform 0.3s ease;
}

#mothkiller-page .btn-google-play:hover img {
    transform: scale(1.05);
}

/* =========================================
   RESPONSIVE (MÓVIL) - EVITA QUE SE CORTE
   ========================================= */
@media (max-width: 991px) {
    #mothkiller-page .hero {
        display: block; /* Permite que el contenido empuje hacia abajo y no se corte */
        height: auto; 
        padding-top: 130px;
    }

    #mothkiller-page .moth-float {
        max-width: 220px; /* Tamaño controlado para móvil */
        margin-bottom: 30px;
    }

    #mothkiller-page .game-logo {
        max-width: 240px;
        margin: 0 auto 20px auto;
    }

    #mothkiller-page .description-text {
        text-align: center;
        padding: 0 15px;
    }

    #mothkiller-page .btn-google-play img {
        width: 180px;
        display: block;
        margin: 0 auto;
    }
}

/* Ajuste para monitores grandes 1920x1080 */
@media (min-width: 1200px) {
    #mothkiller-page .moth-float {
        max-width: 400px; /* Tamaño ideal para PC sin verse exagerado */
    }
}