/* Hero Logo Styles */
.hero-logo-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(124, 58, 237, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hero-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 80px rgba(124, 58, 237, 0.3));
    animation: hero-logo-float 6s ease-in-out infinite;
    z-index: 10;
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

@keyframes hero-logo-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.hero-logo-container .floating-dots {
    position: absolute;
    inset: 0;
}

@media (max-width: 1024px) {
    .hero-logo-container {
        width: 300px;
        height: 300px;
    }
    
    .hero-logo-container::before {
        width: 240px;
        height: 240px;
    }
    
    .hero-logo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-logo-container {
        width: 250px;
        height: 250px;
    }
    
    .hero-logo-container::before {
        width: 200px;
        height: 200px;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }
}
