body {
            background-color: #050505;
            color: #fff;
            font-family: 'Montserrat', sans-serif;
            /* CAMBIO CLAVE: Usar min-height y permitir scroll para textos largos */
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-x: hidden;
            /* Evitar scroll horizontal */
            overflow-y: auto;
            /* Permitir scroll vertical si el texto es largo */
            padding: 20px 0;
            /* Un poco de aire arriba y abajo */
        }

        .main-container {
            text-align: center;
            position: relative;
            z-index: 10;
            width: 100%;
            /* Asegurar que el contenedor ocupe el ancho disponible */
            padding-bottom: 30px;
            /* Espacio extra al final para el scroll */
        }

        /* --- Animación del Corazón Neón (Ligeramente escalada para móvil) --- */
        .heart-wrapper {
            position: relative;
            width: 80px;
            /* Reducido un poco para móvil */
            height: 80px;
            margin: 20px auto 40px auto;
            animation: pulse 1.5s infinite ease-in-out;
        }

        /* Media query para pantallas más grandes (Restore tamaño original) */
        @media (min-width: 768px) {
            .heart-wrapper {
                width: 100px;
                height: 100px;
                margin-bottom: 50px;
            }
        }

        .heart {
            background-color: #ff0055;
            display: inline-block;
            width: 100%;
            height: 100%;
            position: relative;
            transform: rotate(-45deg);
            box-shadow: 0 0 20px #ff0055, 0 0 40px #ff00de;
        }

        .heart::before,
        .heart::after {
            content: "";
            background-color: #ff0055;
            border-radius: 50%;
            width: 100%;
            height: 100%;
            position: absolute;
            box-shadow: 0 0 20px #ff0055, 0 0 40px #ff00de;
        }

        .heart::before {
            top: -50%;
            left: 0;
        }

        .heart::after {
            top: 0;
            left: 50%;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                filter: drop-shadow(0 0 5px #ff0055);
            }

            50% {
                transform: scale(1.1);
                filter: drop-shadow(0 0 20px #ff00de);
            }

            100% {
                transform: scale(1);
                filter: drop-shadow(0 0 5px #ff0055);
            }
        }

        /* --- Tipografía Responsiva --- */
        h1 {
            font-family: 'Sacramento', cursive;
            font-size: 2.5rem;
            /* Más pequeño por defecto para móvil */
            margin-bottom: 25px;
            color: #fff;
            text-shadow: 0 0 10px #fff, 0 0 20px #ff00de, 0 0 40px #ff00de;
            padding: 0 10px;
            /* Evitar que pegue en los bordes */
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 3.5rem;
            }
        }

        /* --- Botón Neon --- */
        .btn-neon {
            background: transparent;
            color: #fff;
            border: 2px solid #ff00de;
            padding: 10px 30px;
            font-size: 1rem;
            /* Un poco más chico en móvil */
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: 0.3s;
            box-shadow: 0 0 10px #ff00de inset, 0 0 15px #ff00de;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        @media (min-width: 768px) {
            .btn-neon {
                font-size: 1.2rem;
                box-shadow: 0 0 10px #ff00de inset, 0 0 20px #ff00de;
            }
        }

        .btn-neon:hover {
            background: #ff00de;
            color: #000;
            box-shadow: 0 0 20px #ff00de inset, 0 0 40px #ff00de;
        }

        /* --- Tarjeta de la Nota (Optimizada para mucho texto) --- */
        #note-card {
            display: none;
            background: rgba(30, 30, 30, 0.8);
            /* Un poco más oscuro para legibilidad */
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 0, 222, 0.3);

            /* RESPONSIVIDAD CLAVE AQUI */
            width: 90%;
            /* Ocupa casi todo el ancho en móvil */
            max-width: 600px;
            /* Tope en escritorio */
            padding: 25px 20px;
            /* Padding más pequeño en móvil */
            margin: 0 auto;

            border-radius: 15px;
            box-shadow: 0 0 30px rgba(255, 0, 222, 0.15);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        @media (min-width: 768px) {
            #note-card {
                padding: 40px;
            }
        }

        #note-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .note-text {
            font-size: 1rem;
            line-height: 1.7;
            text-align: left;
            /* Mejor lectura en móvil que justified */
            color: #eee;
            font-weight: 300;
        }

        .signature {
            margin-top: 25px;
            font-family: 'Sacramento', cursive;
            font-size: 1.8rem;
            color: #ff0055;
            text-align: right;
            text-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
        }