* {
    font-family: 'Codec Pro', sans-serif;
}

#canvas-container {
    width: 100vw;
    height: 100vh;
    display: block;
    position: relative;
    background: transparent !important;
    z-index: -0;

}

/* Camera and gesture-related styles removed */

#info {
    position: absolute;
    top: 315px;
    left: 385px;
    color: #e9e9e9;
    font-size: 13px;
    z-index: 100;
    pointer-events: none;
    text-shadow: 0 0 8px #232323;
    background: rgba(0, 20, 40, 0.4);
    padding: 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px none rgba(180, 180, 180, 0.537);
    background: #00000000;
    background: none;
    width: fit-content;
    height: fit-content;
}


#info p {
    margin-top: -1%;
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.589);
    line-height: 20px;
    border: dashed;
    border-width: 1px;
    border-radius: 10px;
    border-color: #004c63;
    padding: 10px;
    background: linear-gradient(135deg, #004c63 0%, #000000 100%);

}

#info.infot{
    top: 110px;
    left: 00px;
}

#info.info2 {
    top: 50px;
    left: 1400px;
}

#info.info3 {
    top: 315px;
    left: 1340px;
}

#info.info4 {
    top: 600px;
    left: 480px;

}

#info.info5 {
    top: 600px;
    left: 1235px;

}

#info.info1 {
    top: 50px;
    left: 250px;
}

/* Gesture status styles removed */

.gesture-hint {
    margin: 3px 0;
    opacity: 0.9;
    font-weight: 500;
}

.neural-card-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    animation: floatWave 6s ease-in-out infinite;
}

@keyframes floatWave {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(5px);
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
    }
    75% {
        transform: translateY(-20px) translateX(3px);
    }
}

/* Different animation delays for wave effect */
#info:not([class]) .neural-card-image {
    animation-delay: 0s;
}

#info.info1 .neural-card-image {
    animation-delay: 1s;
}

#info.info2 .neural-card-image {
    animation-delay: 2s;
}

#info.info3 .neural-card-image {
    animation-delay: 1.5s;
}

#info.info4 .neural-card-image {
    animation-delay: 0.5s;
}

#info.info5 .neural-card-image {
    animation-delay: 2.5s;
}

.titleNetworth {
    position: relative;
    text-align: center;
}

.networth-section {
    position: relative;
    margin-top: 0%;
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgb(6, 28, 34) 74%, rgb(0, 0, 0) 100%);
}

.networth-smoke {
    width: 500px;
    height: 500px;
    position: absolute;
    top: -200px;
    left: 45%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.networth-smoke img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
}

