body {
    margin: 0;
    background: linear-gradient(135deg, #181c21 0%, #06070a 100%);
    height: 100vh;
    overflow: hidden;
    position: relative;
    cursor: none;
}
.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 15vw, 120px);
    color: #ffffff;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}
.login-button {
    background: #424549;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    position: relative;
    z-index: 0;
}
.login-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: #5865F2;
    z-index: -1;
    transition: width 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
.login-button:hover::after {
    width: 100%;
    transition: width 0.3s cubic-bezier(0.215, 0.61, 0.355, 1)
}
.bg-reveal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bubbles-background.png');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: -1000;
    mask-image: radial-gradient(
        circle 50vh at var(--x, 50%) var(--y, 50%),
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.8) 60%,
        rgba(0,0,0,0.3) 85%,
        rgba(0,0,0,0) 100%
    );
    -webkit-mask-image: radial-gradient(
        circle 50vh at var(--x, 50%) var(--y, 50%),
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.8) 60%,
        rgba(0,0,0,0.3) 85%,
        rgba(0,0,0,0) 100%
    );
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    transition: mask-image 0.2s ease-out, -webkit-mask-image 0.2s ease-out;
}
.custom-cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    background-color: rgba(11, 11, 15, 0.599);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease;
    z-index: 1000;
}