      body {
            margin: 0;
            padding: 0;
            background: #000000;
            color: white;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            overflow: hidden;
        }

        @keyframes blink {
            0% {
                transform: scaleY(1);
            }

            95% {
                transform: scaleY(1);
            }

            97% {
                transform: scaleY(0.1);
            }

            100% {
                transform: scaleY(1);
            }
        }

        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/wallpaper.jpg') center/cover no-repeat;
            filter: brightness(0.45) saturate(1);
            z-index: -1;
        }

        .profile {
            text-align: center;
            margin: 20px;
            font-family: Arial, sans-serif;
        }

        .avatar-container {
            position: relative;
            display: inline-block;
            width: 100px;
            height: 100px;
        }

        .avatar-container img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
        }

        .perfil {
            position: relative;
            width: 300px;
            height: 400px;
            background-color: #ff0000;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .perfil img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .js-tilt-glare {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            border-radius: inherit;
            overflow: hidden;
        }

       .js-tilt-glare-inner {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
            transform: rotate(180deg) translate(-50%, -50%);
            opacity: 0.05; /* corrigido de 5 para valor válido */
            transition: opacity 0.3s ease;
        }

        .js-tilt-glare-inner {
            transition: opacity 0.3s ease;
        }

        [data-tilt] {
            transform-style: preserve-3d;
            transition: transform 0.2s cubic-bezier(0.03, 0.98, 0.52, 0.99);
        }

        [data-tilt].tilt {
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
        }

        [data-tilt].tilt-reset {
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
        }

        [data-tilt] .js-tilt-glare-inner {
            transition: opacity 0.3s ease-in-out;
        }

        .emoji-overlay {
            position: absolute;
            bottom: -5px;
            right: -5px;
            background: rgba(255, 255, 255, 0);
            border-radius: 50%;
            padding: 3px;
            font-size: 18px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0);
        }

        .container {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            display: none;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .card {
            background: #ffffff00;
            padding: 20px;
            margin: 10px;
            border-radius: 15px;
            text-align: center;
            width: 250px;
            box-shadow: 0 0 15px rgb(37, 37, 37);
            transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
            opacity: 5;
            transform: translateY(1px);
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin-bottom: 15px;
            cursor: pointer;
            transition: transform 0.3s ease, border 0.3s ease;
        }

        .card:hover img {
            border: 1px solid #525252;
            transform: scale(1.20);
            transition: filter 0.6s ease, transform 0.6s ease, outline-color 0.6s ease, filter 0.6s ease;
            transform: scale(1.08);
            outline-color: #c9c9c9;
            align-items: center;
            transition: filter 0.6s ease, transform 0.6s ease, outline-color 0.6s ease, filter 0.6s ease;
        }

        .card h3 {
            color: #9b9b9bce;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
        }

        .card p {
            color: #363636;
            font-family: Montserrat, sans-serif;
            font-size: 1rem;
        }

        .card .button {
            background-color: transparent;
            color: white;
            padding: 5px 10px;
            border: 1px solid white;
            border-radius: 5px;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
        }

        .card .button:hover {
            background-color: transparent;
            color: rgba(255, 255, 255, 0);
            border: 0px solid rgba(255, 255, 255, 0);
        }

        .emoji {
            width: 20px;
            height: 20px;
            vertical-align: middle;
        }

        #clickImage {
            cursor: pointer;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            width: 120px;
            height: 120px;
        }

        .badges {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .badge {
            width: 24px;
            height: 24px;
            margin: 0 5px;
            border-radius: 50%;
            cursor: pointer;
        }

        .badge:hover {
            opacity: 0.8;
        }

        .profile,
        .profile .flag-icon:hover,
        .profile .name-container:hover,
        html {
            cursor: url("cursor.cur"), auto;
        }

        .particles-js-canvas-el {
            position: fixed;
        }