/* Additional styles for PlayIt website */

/* Smooth transitions */
* {
    transition: background-color 0.3s, transform 0.3s, opacity 0.3s;
}

/* Device icons hover effects */
.device-icon {
    transition: transform 0.3s ease;
}

.device-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

/* Custom animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Device icons hover effects */
.device-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.device-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #a855f7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ec4899;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .device-icons-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
}

/* Theme-based styles */
.theme-transition {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

/* Button effects */
.download-button:active {
    transform: scale(0.98);
}

/* Cloud animation */
.cloud-animation {
    animation: float 3s ease-in-out infinite;
}

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