.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #0500FF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(5, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.icon-wrapper:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(5, 0, 255, 0.5);
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    bottom: 10%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 30px) rotate(-120deg); }
    66% { transform: translate(30px, -20px) rotate(-240deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -40px) rotate(180deg); }
}
