body {
    margin: 0;
    overflow: hidden;
    background: #0a0a0a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

canvas {
    display: block;
}

#fadeOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    pointer-events: none;
    z-index: 998;
}

#redirectBtn {
    position: relative;
    bottom: 10vh;
    margin-top: 45rem;
    left: 55%;
    transform: translateX(-50%);
    z-index: 1000;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    color: white;
    font-family: 'Source Code Pro', monospace;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 120px 20px 15px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

#redirectBtn:hover {
    color: black;
}

#redirectBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    background: #00b5b0;
    border-radius: 100%;
    margin-right: 1rem;
    z-index: 1;
    transition: all 0.3s;
}

#redirectBtn:hover::before,
#redirectBtn:focus::before {
    width: 105%;
    height: 105%;
    inset: 0;
    border-radius: 0;
    transform: translateY(0);
}

#redirectBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateX(-50%);
    color: white;
    background: transparent;
}