html,
body {
    background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 50%, #ffffff 100%);
    background-attachment: fixed;
}

.satellite-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.particles-container {
    position: fixed;
    inset: 0;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.music-note {
    position: absolute;
    top: -50px;
    font-size: 36px;
    color: rgba(219, 234, 254, 1);
    opacity: 0.6;
    animation: fallAndFade 8s linear forwards;
    user-select: none;
    will-change: transform, opacity;
}

.music-note::before {
    content: '♪';
    display: block;
}

.satellite-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

@keyframes fallAndFade {
    0% {
        transform: translateY(-50px) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    2% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) translateX(40px) rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    98% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) translateX(-40px) rotate(360deg) scale(0.7);
        opacity: 0;
    }
}
