.star-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0 40px;
    overflow: hidden;
}

.main-star img {
    position: relative;
    width: 160px;
    animation: pulse 3s infinite ease-in-out;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.lottie-on-top {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.star-min-sticker {
    position: relative;
    animation: pulse 3s infinite ease-in-out;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.animated-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.small-star {
    position: absolute;
    width: var(--star-size, 10px);
    height: var(--star-size, 10px);
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transform-origin: center;
}

@keyframes move-stars {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(calc(-50% + var(--x-shift)), calc(-50% + var(--y-shift)));
    }
    70% {
        opacity: 0;
        transform: translate(calc(-50% + var(--x-shift)), calc(-50% + var(--y-shift))) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(240, 196, 25, 0.4));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 24px rgba(240, 196, 25, 0.5));
    }
}

@media screen and (max-width: 767px) {
    .star-banner {
        padding: 60px 0 20px;
    }

    .main-star img {
        width: 120px;
    }
}
