* {
    box-sizing: border-box;
    outline: none;
    max-width: 100%;
    font-family: 'Poppins', sans-serif;
    color: #3f3d56;
}

html, body {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    height: 100%;
    background: #fb923c;
}

a {
    text-decoration: none;
}

.container {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.container.active {
    display: flex;
}


#float {
    position:fixed;
    width:250px;
    height: 500px;
    top:0px;
    left:0px;
    background:white;
    padding:10px;
    border-top-right-radius:2px;
    border-bottom-right-radius:33px;
    transition:0.5s all;
    margin-left:-250px;
    z-index:999;
    text-align: center;
}

#float.active {
    margin-left:0px;
}

#float #toggle {
    padding:20px;
    background:#3f3d56;
    position:absolute;
    top:0px;
    left:100%;
    cursor:pointer;
    border-bottom-right-radius:33px;

}

#float #toggle span {
    height:4px;
    width:30px;
    background:white;
    display:block;
}
#float #toggle span:not(:last-child) {
    margin-bottom:6px;
}

input {
    background:none;
    padding:10px;
    border: #3f3d56;
    margin-left: 70px;
    position:relative;
    display:block;
    font-size:1em;
}

label {
    font-size:0.8em;
    text-transform: uppercase;
    margin-top: 10px;
}

input + .border {
    margin-bottom:10px;
    height:1px;
    width:0px;
    position:absolute;
    background:#fff;
    transform:translateY(-1px);
    transition:0.5s all;
}

input:focus + .border {
    width:calc(100% - 20px);
}

button {
    margin-top:10px;
    background: #fb923c;
    border-radius: 33px;
    border:none;
    color:white;
    font-size:0.6em;
    font-weight:bold;
    text-transform:uppercase;
    padding:10px;
    width:100%;
    transition: transform 140ms ease-out, filter 140ms ease-out;
    cursor:pointer;
}

/* Global hover for all buttons: darker + slight grow */
button:hover { filter: brightness(0.9); transform: scale(1.03); }

canvas {
    opacity:0;
    transition:none;
    transform:translateY(-20px);
}

canvas.active {
    transition:1s all;
    opacity:1;
    transform:none;
}

.streak-flame { margin-left: 8px; font-weight: 600; }
.sfx-toggle { right: 120px; }
.win-percentile { text-align: center; color: #16A086; font-weight: 600; margin: 0 0 8px; }
.ad-slot { min-height: 0; margin: 8px 0; }
.ad-slot:not(:empty) { min-height: 100px; }
.players-online { text-align: center; color: #6b7280; font-size: 13px; margin: 4px 0 8px; }
