body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #111;
    color: #eee;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 87, 224, 0.6) 0%, rgba(110, 87, 224, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: move-blob 20s infinite alternate;
}

body::after {
    content: "";
    position: fixed;
    bottom: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(238, 131, 229, 0.5) 0%, rgba(238, 131, 229, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    animation: move-blob 25s infinite alternate-reverse;
}

@keyframes move-blob {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(100px, 50px) scale(1.2); }
}

[x-cloak] { display: none !important; }