/* Abstract Hands CSS */
.hands-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    margin-top: 30px;
}

.hand {
    position: relative;
    width: 200px;
    height: 160px;
}

.finger {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    bottom: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 6px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.15s ease;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.finger.active {
    background: currentColor;
    color: #000;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px currentColor;
    z-index: 10;
}

/* Left Hand */
.l-pinky { width: 26px; height: 75px; left: 20px; color: #ec4899; }
.l-ring { width: 26px; height: 95px; left: 55px; color: #8b5cf6; }
.l-middle { width: 26px; height: 105px; left: 90px; color: #3b82f6; }
.l-index { width: 26px; height: 95px; left: 125px; color: #10b981; }
.l-thumb {
    position: absolute;
    width: 26px;
    height: 70px;
    left: 165px;
    bottom: 35px;
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #f59e0b;
    transition: all 0.15s;
}
.l-thumb.active {
    background: currentColor;
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 10px 20px currentColor;
    z-index: 10;
}
.l-palm {
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 140px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

/* Right Hand */
.r-thumb {
    position: absolute;
    width: 26px;
    height: 70px;
    right: 165px;
    bottom: 35px;
    transform: rotate(-45deg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #f59e0b;
    transition: all 0.15s;
}
.r-thumb.active {
    background: currentColor;
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 10px 20px currentColor;
    z-index: 10;
}
.r-index { width: 26px; height: 95px; right: 125px; color: #10b981; }
.r-middle { width: 26px; height: 105px; right: 90px; color: #3b82f6; }
.r-ring { width: 26px; height: 95px; right: 55px; color: #8b5cf6; }
.r-pinky { width: 26px; height: 75px; right: 20px; color: #ec4899; }
.r-palm {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 140px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}