body, html {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, black 95%, #1d0944);
    cursor: none;
    text-align: center;
    user-select: none;
}

.cursor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(30px);
    background: rgba(104, 7, 214, 0.639);
    margin-left: -100px;
    margin-top: -100px;
}

.logo-container {
    position: relative;
}

.logo {
    display: block;
    width: 300px;
    height: 300px;
    background: url('https://i.ibb.co/ZcMzm2h/Screenshot-2025-01-21-at-10-36-38-AM-removebg-preview.png') no-repeat center/contain;
    mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
    margin-top: -200px;
    animation: fadeIn 2s forwards;
}

.server-text {
    font-size: 60px;
    color: #8D75F5;
    opacity: 0;
    animation: fadeIn 2s forwards 1s;
}

.server-text span {
    color: #ffffffc6;
    font-weight: 500;
    opacity: 0;
    animation: fadeIn 2s forwards 1.5s;
}

#clock {
    color: #fff;
    margin-top: -30px;
    opacity: 0;
    animation: fadeIn 2s forwards 1.5s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
