/* Animation Keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(74, 144, 226, 0.6);
    }
    100% {
        box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
    }
}

/* Apply Animations */
.app-icon-container {
    animation: float 6s ease-in-out infinite;
}

.app-icon-wrapper {
    animation: glow 3s ease-in-out infinite;
}

.app-icon-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0) 70%);
    animation: pulse 3s ease-in-out infinite;
    border-radius: 50%;
}

/* Hover Effects */
.app-icon-wrapper:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.content-container {
    transition: transform 0.3s ease;
}

.content-container:hover {
    transform: translateY(-2px);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Fade In */
.content-sections > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-out forwards;
}

.content-sections > *:nth-child(1) { animation-delay: 0.2s; }
.content-sections > *:nth-child(2) { animation-delay: 0.4s; }
.content-sections > *:nth-child(3) { animation-delay: 0.6s; }
.content-sections > *:nth-child(4) { animation-delay: 0.8s; }