/* ===================================================================
   FLOATING CASINO ICONS - MINIMALIST STYLE
   Thin gold casino icons, slowly floating
   =================================================================== */

.floating-icons-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 50px;
    color: #60a5fa;
    opacity: 0.25;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    transition: opacity 0.3s;
}

.iso-hero:hover .floating-icon,
.hero-enhanced:hover .floating-icon {
    opacity: 0.35;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatMedium {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-5deg); }
}

@keyframes floatFast {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.35; }
}

/* ===================================================================
   ICON POSITIONS (7 icons)
   =================================================================== */

.floating-icon-1 {
    top: 10%;
    right: 15%;
    font-size: 55px;
    animation: floatSlow 8s ease-in-out infinite;
}

.floating-icon-2 {
    top: 25%;
    right: 35%;
    font-size: 48px;
    animation: floatMedium 10s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-icon-3 {
    top: 45%;
    right: 20%;
    font-size: 52px;
    animation: floatFast 9s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-icon-4 {
    top: 60%;
    right: 40%;
    font-size: 46px;
    animation: floatSlow 11s ease-in-out infinite;
    animation-delay: 3s;
}

.floating-icon-5 {
    top: 15%;
    right: 50%;
    font-size: 42px;
    animation: floatMedium 9s ease-in-out infinite, iconPulse 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.floating-icon-6 {
    top: 75%;
    right: 15%;
    font-size: 50px;
    animation: floatFast 10s ease-in-out infinite;
    animation-delay: 4s;
}

.floating-icon-7 {
    top: 35%;
    right: 8%;
    font-size: 45px;
    animation: floatSlow 12s ease-in-out infinite, iconPulse 8s ease-in-out infinite;
    animation-delay: 2.5s;
}


/* ===================================================================
   PURPLE ICONS - HOMEPAGE
   =================================================================== */

.purple-icons .floating-icon {
    color: #60a5fa;
    opacity: 0.25;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.hero-enhanced:hover .purple-icons .floating-icon {
    opacity: 0.35;
}

.purple-icons .floating-icon-1,
.purple-icons .floating-icon-3,
.purple-icons .floating-icon-5 {
    opacity: 0.3;
    font-size: 55px;
}

/* Purple glow animation */
@keyframes purpleGlow {
    0%, 100% {
        opacity: 0.2;
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        opacity: 0.35;
        text-shadow: 0 0 40px rgba(59, 130, 246, 0.7);
    }
}

.purple-icons .floating-icon-1,
.purple-icons .floating-icon-4,
.purple-icons .floating-icon-7 {
    animation: floatSlow 8s ease-in-out infinite, purpleGlow 4s ease-in-out infinite !important;
}

/* ===================================================================
   MOBILE RESPONSIVE
   =================================================================== */

@media (max-width: 968px) {
    .floating-icons-container {
        width: 100%;
        height: 250px;
        bottom: 0;
        top: auto;
    }

    .floating-icon {
        font-size: 35px !important;
    }

    .floating-icon-1 { top: auto; bottom: 20%; right: 20%; }
    .floating-icon-2 { top: auto; bottom: 50%; right: 60%; }
    .floating-icon-3 { top: auto; bottom: 35%; right: 40%; }
    .floating-icon-4 { top: auto; bottom: 65%; right: 15%; }
    .floating-icon-5 { top: auto; bottom: 80%; right: 70%; }
    .floating-icon-6 { top: auto; bottom: 15%; right: 50%; }
    .floating-icon-7 { top: auto; bottom: 45%; right: 80%; }
}

@media (prefers-reduced-motion: reduce) {
    .floating-icon {
        animation: none !important;
    }
}
