/* ========================================================================== 
   Shared Sports Icon Background
   Used by: PublicLayout, OrganizerLayout, TvLayout, SplashLayout, AnySportLayout, MainLayout
   ========================================================================== */

.sports-bg-host {
    position: relative;
    isolation: isolate;
}

.sports-bg-host > :not(.sports-bg-layer) {
    position: relative;
    z-index: 1;
}

.sports-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.sports-bg-icon {
    position: absolute;
    display: block;
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 1;
    color: rgba(148, 163, 184, 0.16);
    text-shadow: 0 0 24px rgba(59, 130, 246, 0.18);
    animation: sports-bg-float 24s ease-in-out infinite;
    user-select: none;
}

.sports-bg-icon.icon-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.sports-bg-icon.icon-2 {
    top: 18%;
    right: 8%;
    animation-delay: 3s;
}

.sports-bg-icon.icon-3 {
    top: 44%;
    left: 12%;
    animation-delay: 7s;
}

.sports-bg-icon.icon-4 {
    top: 58%;
    right: 15%;
    animation-delay: 11s;
}

.sports-bg-icon.icon-5 {
    bottom: 12%;
    left: 32%;
    animation-delay: 15s;
}

.sports-bg-icon.icon-6 {
    bottom: 8%;
    right: 6%;
    animation-delay: 19s;
}

.sports-bg-icon.icon-7 {
    top: 30%;
    left: 32%;
    animation-delay: 2s;
}

.sports-bg-icon.icon-8 {
    top: 6%;
    left: 50%;
    animation-delay: 5s;
}

.sports-bg-icon.icon-9 {
    top: 72%;
    left: 8%;
    animation-delay: 9s;
}

.sports-bg-icon.icon-10 {
    top: 38%;
    right: 34%;
    animation-delay: 13s;
}

.sports-bg-icon.icon-11 {
    bottom: 22%;
    right: 22%;
    animation-delay: 17s;
}

.sports-bg-icon.icon-12 {
    bottom: 4%;
    left: 60%;
    animation-delay: 21s;
}

@keyframes sports-bg-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    33% {
        transform: translateY(-18px) rotate(8deg) scale(1.04);
        opacity: 0.23;
    }
    66% {
        transform: translateY(14px) rotate(-6deg) scale(0.96);
        opacity: 0.18;
    }
}

@media (max-width: 768px) {
    .sports-bg-icon {
        font-size: clamp(1.6rem, 7vw, 3rem);
        color: rgba(148, 163, 184, 0.12);
    }
}
