.pag-404-theme {
        --background-dark: #190e2d;
        --neon-green: #12E58B;
        --text-white: #FFFFFF;

        background-color: var(--background-dark);
        font-family: 'Oxanium', sans-serif;
        color: var(--text-white);
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .container-pag-404 {
        text-align: center;
        position: relative;
        z-index: 2;
        padding: 20px;
        border-radius: 15px;
        max-width: 90%;
    }

    .logo-area-pag-404 {
        margin-bottom: 25px;
        opacity: 0;
        animation: fadeIn 1.5s ease-out forwards;
        animation-delay: 0.5s;
    }

    .logo-pag-404 {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 1px solid var(--neon-green);
        box-shadow: 0 0 15px var(--neon-green), 0 0 25px var(--neon-green) inset;
        animation: pulseGlow 2s infinite alternate;
    }

    .logo-text-pag-404 {
        font-size: 1em;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-white);
        margin-top: 10px;
        text-shadow: 0 0 5px var(--neon-green);
    }

    .error-code-pag-404 {
     font-family: 'Oxanium', sans-serif;
        font-size: 10em;
        font-weight: 700;
        color: var(--neon-green);
        text-shadow: 0 0 5px var(--neon-green), 0 0 15px var(--neon-green), 0 0 30px var(--neon-green);
        animation: glitch 1.5s infinite alternate;
        margin: 0;
        line-height: 1;
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
        animation-delay: 0.8s;
    }

    .message-pag-404 {
     font-family: 'Oxanium', sans-serif;
        font-size: 1.5em;
        margin: 20px 0 40px 0;
        line-height: 1.4;
        color: var(--text-white);
        opacity: 0;
        animation: fadeIn 1.5s ease-out forwards;
        animation-delay: 1.2s;
    }

    .glitch-text-pag-404 {
        text-shadow: 0 0 5px var(--neon-green);
    }

    .home-button-pag-404 {
        display: inline-block;
        padding: 15px 35px;
        background: var(--neon-green);
        color: var(--background-dark);
        text-decoration: none;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: 700;
        letter-spacing: 1px;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        box-shadow: 0 0 20px var(--neon-green);
        opacity: 0;
        animation: fadeIn 1.5s ease-out forwards;
        animation-delay: 1.5s;
    }

    .home-button-pag-404:hover {
        transform: translateY(-5px) scale(1.02);
        background-color: var(--neon-green);
        box-shadow: 0 0 30px var(--neon-green), 0 0 50px var(--neon-green);
    }


    @keyframes glitch {
        0% {
            text-shadow: 0 0 15px var(--neon-green), 0 0 30px var(--neon-green), 0 0 45px var(--neon-green);
            transform: translate(0, 0);
        }
        15% {
            text-shadow: 2px -2px 10px var(--neon-green), -2px 2px 20px var(--neon-green), 4px -4px 30px var(--neon-green);
            transform: translate(-3px, 3px);
        }
        30% {
            text-shadow: -3px 3px 10px var(--neon-green), 3px -3px 20px var(--neon-green), -5px 5px 30px var(--neon-green);
            transform: translate(4px, -4px);
        }
        45% {
            text-shadow: 1px 1px 10px var(--neon-green), -1px -1px 20px var(--neon-green), 2px 2px 30px var(--neon-green);
            transform: translate(-2px, -2px);
        }
        60% {
            text-shadow: -2px 4px 10px var(--neon-green), 2px -4px 20px var(--neon-green), -3px 6px 30px var(--neon-green);
            transform: translate(3px, -5px);
        }
        75% {
            text-shadow: 4px -1px 10px var(--neon-green), -4px 1px 20px var(--neon-green), 6px -2px 30px var(--neon-green);
            transform: translate(-4px, 2px);
        }
        100% {
            text-shadow: 0 0 15px var(--neon-green), 0 0 30px var(--neon-green), 0 0 45px var(--neon-green);
            transform: translate(0, 0);
        }
    }


    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulseGlow {
        0% {
            box-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green) inset;
        }
        50% {
            box-shadow: 0 0 25px var(--neon-green), 0 0 40px var(--neon-green) inset;
        }
        100% {
            box-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green) inset;
        }
    }

    .p__particle {
        position: absolute;
        background-color: var(--neon-green);
        border-radius: 50%;
        filter: blur(1px);
        animation: floatAndFade 10s infinite ease-in-out;
        z-index: 1;
        opacity: 0;
    }

    @keyframes floatAndFade {
        0% { opacity: 0; transform: translateY(100vh) scale(0.5); }
        20% { opacity: 0.5; }
        80% { opacity: 0.8; }
        100% { opacity: 0; transform: translateY(-20vh) scale(1.5); }
    }


    .particle-1 { top: 10%; left: 5%; width: 2px; height: 2px; animation-delay: 0.2s; animation-duration: 9s;}
    .particle-2 { top: 20%; left: 15%; width: 3px; height: 3px; animation-delay: 1.5s; animation-duration: 12s;}
    .particle-3 { top: 30%; left: 25%; width: 2.5px; height: 2.5px; animation-delay: 0.8s; animation-duration: 11s;}
    .particle-4 { top: 40%; left: 35%; width: 4px; height: 4px; animation-delay: 2.1s; animation-duration: 10s;}
    .particle-5 { top: 50%; left: 45%; width: 3.5px; height: 3.5px; animation-delay: 0.5s; animation-duration: 13s;}
    .particle-6 { top: 60%; left: 55%; width: 2px; height: 2px; animation-delay: 1.8s; animation-duration: 9.5s;}
    .particle-7 { top: 70%; left: 65%; width: 3px; height: 3px; animation-delay: 0.3s; animation-duration: 11.5s;}
    .particle-8 { top: 80%; left: 75%; width: 2.5px; height: 2.5px; animation-delay: 2.4s; animation-duration: 10.5s;}
    .particle-9 { top: 90%; left: 85%; width: 4px; height: 4px; animation-delay: 1.0s; animation-duration: 14s;}
    .particle-10 { top: 5%; left: 95%; width: 3.5px; height: 3.5px; animation-delay: 0.7s; animation-duration: 8.5s;}
    .particle-11 { top: 15%; left: 10%; width: 2.2px; height: 2.2px; animation-delay: 2.8s; animation-duration: 9.2s;}
    .particle-12 { top: 25%; left: 20%; width: 3.2px; height: 3.2px; animation-delay: 0.9s; animation-duration: 11.8s;}
    .particle-13 { top: 35%; left: 30%; width: 2.7px; height: 2.7px; animation-delay: 1.4s; animation-duration: 10.3s;}
    .particle-14 { top: 45%; left: 40%; width: 4.2px; height: 4.2px; animation-delay: 2.6s; animation-duration: 12.5s;}
    .particle-15 { top: 55%; left: 50%; width: 3.7px; height: 3.7px; animation-delay: 0.6s; animation-duration: 9.8s;}
    .particle-16 { top: 65%; left: 60%; width: 2.3px; height: 2.3px; animation-delay: 1.9s; animation-duration: 11.2s;}
    .particle-17 { top: 75%; left: 70%; width: 3.3px; height: 3.3px; animation-delay: 0.4s; animation-duration: 10.7s;}
    .particle-18 { top: 85%; left: 80%; width: 2.8px; height: 2.8px; animation-delay: 2.0s; animation-duration: 13.5s;}
    .particle-19 { top: 95%; left: 90%; width: 4.3px; height: 4.3px; animation-delay: 1.1s; animation-duration: 8.9s;}
    .particle-20 { top: 8%; left: 2%; width: 3.8px; height: 3.8px; animation-delay: 2.3s; animation-duration: 9.3s;}
    .particle-21 { top: 18%; left: 12%; width: 2.1px; height: 2.1px; animation-delay: 0.7s; animation-duration: 10.9s;}
    .particle-22 { top: 28%; left: 22%; width: 3.1px; height: 3.1px; animation-delay: 1.6s; animation-duration: 12.1s;}
    .particle-23 { top: 38%; left: 32%; width: 2.6px; height: 2.6px; animation-delay: 0.5s; animation-duration: 9.7s;}
    .particle-24 { top: 48%; left: 42%; width: 4.1px; height: 4.1px; animation-delay: 2.7s; animation-duration: 11.6s;}
    .particle-25 { top: 58%; left: 52%; width: 3.6px; height: 3.6px; animation-delay: 1.2s; animation-duration: 10.1s;}
    .particle-26 { top: 68%; left: 62%; width: 2.4px; height: 2.4px; animation-delay: 0.3s; animation-duration: 13.1s;}
    .particle-27 { top: 78%; left: 72%; width: 3.4px; height: 3.4px; animation-delay: 2.5s; animation-duration: 11.3s;}
    .particle-28 { top: 88%; left: 82%; width: 2.9px; height: 2.9px; animation-delay: 0.8s; animation-duration: 9.9s;}
    .particle-29 { top: 98%; left: 92%; width: 4.4px; height: 4.4px; animation-delay: 1.7s; animation-duration: 12.8s;}
    .particle-30 { top: 12%; left: 7%; width: 3.9px; height: 3.9px; animation-delay: 0.6s; animation-duration: 10.2s;}
    .particle-31 { top: 22%; left: 17%; width: 2.0px; height: 2.0px; animation-delay: 2.9s; animation-duration: 9.4s;}
    .particle-32 { top: 32%; left: 27%; width: 3.0px; height: 3.0px; animation-delay: 1.0s; animation-duration: 11.9s;}
    .particle-33 { top: 42%; left: 37%; width: 2.5px; height: 2.5px; animation-delay: 0.4s; animation-duration: 10.6s;}
    .particle-34 { top: 52%; left: 47%; width: 4.0px; height: 4.0px; animation-delay: 2.2s; animation-duration: 12.3s;}
    .particle-35 { top: 62%; left: 57%; width: 3.5px; height: 3.5px; animation-delay: 1.3s; animation-duration: 9.6s;}
    .particle-36 { top: 72%; left: 67%; width: 2.1px; height: 2.1px; animation-delay: 0.7s; animation-duration: 13.2s;}
    .particle-37 { top: 82%; left: 77%; width: 3.1px; height: 3.1px; animation-delay: 2.8s; animation-duration: 11.1s;}
    .particle-38 { top: 92%; left: 87%; width: 2.6px; height: 2.6px; animation-delay: 0.9s; animation-duration: 10.4s;}
    .particle-39 { top: 7%; left: 97%; width: 4.1px; height: 4.1px; animation-delay: 1.8s; animation-duration: 13.9s;}
    .particle-40 { top: 17%; left: 3%; width: 3.6px; height: 3.6px; animation-delay: 0.5s; animation-duration: 8.8s;}
    .particle-41 { top: 27%; left: 13%; width: 2.2px; height: 2.2px; animation-delay: 2.1s; animation-duration: 10.0s;}
    .particle-42 { top: 37%; left: 23%; width: 3.2px; height: 3.2px; animation-delay: 1.1s; animation-duration: 12.6s;}
    .particle-43 { top: 47%; left: 33%; width: 2.7px; height: 2.7px; animation-delay: 0.6s; animation-duration: 9.1s;}
    .particle-44 { top: 57%; left: 43%; width: 4.2px; height: 4.2px; animation-delay: 2.4s; animation-duration: 11.4s;}
    .particle-45 { top: 67%; left: 53%; width: 3.7px; height: 3.7px; animation-delay: 1.5s; animation-duration: 10.8s;}
    .particle-46 { top: 77%; left: 63%; width: 2.3px; height: 2.3px; animation-delay: 0.2s; animation-duration: 13.0s;}
    .particle-47 { top: 87%; left: 73%; width: 3.3px; height: 3.3px; animation-delay: 2.6s; animation-duration: 12.2s;}
    .particle-48 { top: 97%; left: 83%; width: 2.8px; height: 2.8px; animation-delay: 0.7s; animation-duration: 9.5s;}
    .particle-49 { top: 10%; left: 93%; width: 4.3px; height: 4.3px; animation-delay: 1.9s; animation-duration: 13.7s;}
    .particle-50 { top: 20%; left: 8%; width: 3.8px; height: 3.8px; animation-delay: 0.8s; animation-duration: 9.0s;}
    .particle-51 { top: 13%; left: 18%; width: 2.5px; height: 2.5px; animation-delay: 1.6s; animation-duration: 11.0s;}
    .particle-52 { top: 23%; left: 28%; width: 3.5px; height: 3.5px; animation-delay: 0.4s; animation-duration: 10.5s;}
    .particle-53 { top: 33%; left: 38%; width: 2.0px; height: 2.0px; animation-delay: 2.5s; animation-duration: 12.0s;}
    .particle-54 { top: 43%; left: 48%; width: 4.0px; height: 4.0px; animation-delay: 1.1s; animation-duration: 9.2s;}
    .particle-55 { top: 53%; left: 58%; width: 3.0px; height: 3.0px; animation-delay: 0.9s; animation-duration: 13.5s;}
    .particle-56 { top: 63%; left: 68%; width: 2.8px; height: 2.8px; animation-delay: 2.3s; animation-duration: 11.7s;}
    .particle-57 { top: 73%; left: 78%; width: 3.8px; height: 3.8px; animation-delay: 0.6s; animation-duration: 10.0s;}
    .particle-58 { top: 83%; left: 88%; width: 2.2px; height: 2.2px; animation-delay: 1.4s; animation-duration: 9.8s;}
    .particle-59 { top: 93%; left: 98%; width: 4.2px; height: 4.2px; animation-delay: 2.0s; animation-duration: 12.9s;}
    .particle-60 { top: 6%; left: 1%; width: 3.2px; height: 3.2px; animation-delay: 0.3s; animation-duration: 11.5s;}
    .particle-61 { top: 16%; left: 11%; width: 2.6px; height: 2.6px; animation-delay: 1.7s; animation-duration: 10.7s;}
    .particle-62 { top: 26%; left: 21%; width: 3.6px; height: 3.6px; animation-delay: 0.5s; animation-duration: 9.9s;}
    .particle-63 { top: 36%; left: 31%; width: 2.1px; height: 2.1px; animation-delay: 2.8s; animation-duration: 13.3s;}
    .particle-64 { top: 46%; left: 41%; width: 4.1px; height: 4.1px; animation-delay: 1.3s; animation-duration: 11.2s;}
    .particle-65 { top: 56%; left: 51%; width: 3.1px; height: 3.1px; animation-delay: 0.7s; animation-duration: 10.8s;}
    .particle-66 { top: 66%; left: 61%; width: 2.9px; height: 2.9px; animation-delay: 2.2s; animation-duration: 9.6s;}
    .particle-67 { top: 76%; left: 71%; width: 3.9px; height: 3.9px; animation-delay: 1.0s; animation-duration: 12.4s;}
    .particle-68 { top: 86%; left: 81%; width: 2.4px; height: 2.4px; animation-delay: 0.4s; animation-duration: 8.7s;}
    .particle-69 { top: 96%; left: 91%; width: 4.4px; height: 4.4px; animation-delay: 2.5s; animation-duration: 13.8s;}
    .particle-70 { top: 9%; left: 4%; width: 3.4px; height: 3.4px; animation-delay: 0.8s; animation-duration: 10.1s;}
    .particle-71 { top: 19%; left: 14%; width: 2.7px; height: 2.7px; animation-delay: 1.9s; animation-duration: 9.3s;}
    .particle-72 { top: 29%; left: 24%; width: 3.7px; height: 3.7px; animation-delay: 0.6s; animation-duration: 11.6s;}
    .particle-73 { top: 39%; left: 34%; width: 2.2px; height: 2.2px; animation-delay: 2.1s; animation-duration: 10.4s;}
    .particle-74 { top: 49%; left: 44%; width: 4.2px; height: 4.2px; animation-delay: 1.2s; animation-duration: 13.0s;}
    .particle-75 { top: 59%; left: 54%; width: 3.2px; height: 3.2px; animation-delay: 0.5s; animation-duration: 9.7s;}
    .particle-76 { top: 69%; left: 64%; width: 2.0px; height: 2.0px; animation-delay: 2.4s; animation-duration: 12.7s;}
    .particle-77 { top: 79%; left: 74%; width: 3.0px; height: 3.0px; animation-delay: 1.0s; animation-duration: 11.0s;}
    .particle-78 { top: 89%; left: 84%; width: 2.5px; height: 2.5px; animation-delay: 0.7s; animation-duration: 9.0s;}
    .particle-79 { top: 99%; left: 94%; width: 4.0px; height: 4.0px; animation-delay: 1.8s; animation-duration: 13.6s;}
    .particle-80 { top: 11%; left: 6%; width: 3.5px; height: 3.5px; animation-delay: 0.9s; animation-duration: 10.5s;}

    @media (max-width: 768px) {
        .error-code-pag-404 {
            font-size: 7em;
        }
        .message-pag-404 {
            font-size: 1.2em;
        }
        .home-button-pag-404 {
            font-size: 1em;
            padding: 12px 25px;
        }
        .logo-pag-404 {
            width: 80px;
            height: 80px;
        }
        .logo-text-pag-404 {
            font-size: 0.8em;
        }
    }

    @media (max-width: 480px) {
        .error-code-pag-404 {
            font-size: 5em;
        }
        .message-pag-404 {
            font-size: 1em;
        }
        .container-pag-404 {
            padding: 15px;
        }
    }