* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    cursor: default;
}

#screensaver {
    position: fixed;
    inset: 0;
    background: #000;
}

#logo {
    position: absolute;
    font-family: Verdana, sans-serif;
    font-size: 36px;
    color: #fff;
    white-space: nowrap;
    will-change: transform;
    z-index: 999;
    display: none;
}

#download-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Verdana, sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}

#download-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.45);
    transform: translateX(-50%) scale(1.03);
}

#discord-widget {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.6);
    z-index: 1;
}