body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to bottom, #1e3c72, #2a5298);
    overflow: hidden;
}

.dot-container {
    position: relative;
    perspective: 1000px;
    transform: rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
}

.dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: wave 3s infinite ease-in-out;
}

@keyframes wave {
    0%, 100% {
        transform: translateZ(0);
    }
    50% {
        transform: translateZ(50px);
    }
}
