body {
    margin: 0;
    height: 100vh;
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
    background: #000;
}

#img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -4;
}


.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    transition: opacity .3s ease;
}

.overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.click-text {
    font-size: 35px;
    font-family:Georgia, 'Times New Roman', Times, serif;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#container {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    transition: filter 0.9s ease;
}

.blurred { filter: blur(2px); }


.profiles-wrapper {
    display: flex;
    flex-direction: row;
    gap: 60px;
    padding: 20px;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    border-radius: 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: max-content;
    margin: 0 auto;
    perspective: 1600px;
}

.profiles-wrapper::-webkit-scrollbar {
    display: none;
}


.profile {
    padding: 40px;
    width: 290px;
    min-height: 470px;
    border-radius: 20px;
    background: rgba(5, 5, 5, 0.034);
    transform: translateY(110px);
    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease;
    position: relative;
    flex-shrink: 0;
}


.profile:hover {
    transform: translateY(110px) scale(1.05);
    border-radius: 20px;
    background: rgba(179, 179, 179, 0.008);
}

.profile h2 {
    margin: 15px 0 4px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.75rem;
     opacity: .85;
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity))
}

.profile::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .30s ease;
    transform: scale(1);
    background-color: rgba(121, 121, 121, 0.014);
}

.profile:hover::before {
    opacity: 4;
}


.avatar {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
}


.profile .bio {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
    opacity: .85;
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity))
}

.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 10px;
    padding: 10px;
}

.badges .badge1{
    width: 28px;
    height: 30px;
    position: relative;
    top: 2px;
}


.badge {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform .2s ease, filter .2s ease;
}

.tooltip-container {
    position: relative; 
    display: inline-block; 
    cursor: default; 
    z-index: 5;
}


.tooltip-container::after {
    content: attr(data-tooltip);
    
   
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0); 
    opacity: 0; 
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0s ease;
    z-index: 9999;

    
    background-color: #111214; 
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 3px;
    white-space: nowrap; 
    font-weight: 500;
}

.tooltip-container::before {
    content: "";
    position: absolute;
    top: calc(120% - 4px); 
    left: 50%;
    margin-left: -4px;
    border-width: 4px;
    border-style: solid;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease;
    z-index: 9999;
}

.tooltip-container:hover::after,
.tooltip-container:hover::before {
    opacity: 1; 
    transform: translateX(50%) translateY(); 
}



.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.social-links img {
    width: 34px;
    margin: 15px;
    cursor: pointer;
    transition: .25s ease;
    filter: drop-shadow(0 0 4px rgb(36, 36, 36));
}

.social-links img:hover {
    transform: scale(1.10);
    filter: drop-shadow(0 0 5px rgb(58, 58, 58));
}

/* bolinhas caindo */
.caindo-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.bolinha-folha {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    animation:
        queda var(--tQueda) linear forwards,
        vento var(--tVento) ease-in-out infinite;
}

@keyframes queda {
    0% { top: -10vh; opacity: 2; }
    100% { top: 110vh; opacity: 0.2; }
}

@keyframes vento {
    0% { transform: translateX(0); }
    50% { transform: translateX(var(--amplitude)); }
    100% { transform: translateX(0); }
}


#volume-control {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 14px;
    display: flex;
    gap: 15px;
    align-items: center;
}

#volume-control i {
    font-size: 30px;
    cursor: pointer;
    transition: .2s;
}

#volume-control i:hover {
    transform: scale(1.15);
}

#volume-slider {
    width: 120px;
    opacity: 0;
    transition: .25s;
}

#volume-control:hover #volume-slider {
    opacity: 1;
}


#eye-counter {
    position: fixed;
    top: 20px;
    right: 15px;
    display: flex;
    gap: 6px;
}

#eye-counter img {
    width: 30px;
    position: relative;
    top: 4px;
}

#eye-counter span {
    font-size: 18px;
    position: relative;
    top: 8px;
    color: rgb(173, 173, 173);
}


@media (max-width: 600px) {

    body {
        overflow: hidden !important;
        height: 100vh !important;
    }

    
    .caindo-container {
        width: 100vw !important;
        height: 100vh !important;
        position: fixed;
        top: 0;
        left: 0;
        overflow: hidden !important;
        pointer-events: none;
    }

 
    #container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); 
        width: 100%;
    }

   
    .profiles-wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
        justify-items: center !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .profile {
        width: 150px !important;
        max-width: 150px !important;
        min-height: 210px !important;
        transform: none !important;
    }

    .avatar {
        width: 75px !important;
        height: 75px !important;
    }

    .profile h2 {
        font-size: 15px !important;
    }

    .profile .bio {
        font-size: 12px !important;
    }

    .badge,
    .badge1 {
        width: 18px !important;
        height: 18px !important;
    }

    .social-links img {
        width: 24px !important;
    }

    #volume-control {
        transform: scale(0.75);
        top: 12px;
        left: 6px;
    }

    #eye-counter {
        transform: scale(0.8);
        top: 20px;
        right: 6px;
    }
}