.lobby {
    display: flex;
    justify-content: center;
    width: 100%;
}

.lobby_content {
    height: auto;
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

.lobby_header {
    align-self: center;
    font-weight: bold;
    font-size: clamp(14px,5vmin,25px);
    margin-bottom: 2vmin;
}

.slot_menu {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1vmin;
    width: 100%;
    justify-content: center;
}

.slot_menu_item {
    background: -webkit-linear-gradient(var(--color1_1), var(--color1_2));
    background: -o-linear-gradient(var(--color1_1), var(--color1_2));
    background: linear-gradient(var(--color1_1), var(--color1_2));
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    width: 22%;
    text-align: center;
    margin-right: 1vmin;
    margin-bottom: 2vmin;
    padding: 8px 2px;
    font-size: clamp(10px,4vmin,15px);
    color: black;
    text-decoration-line: none;
}

    .slot_menu_item:hover, .slot_menu_active {
        background: linear-gradient(rgb(30,30,30), rgb(20,20,20));
        color: var(--color1_1);
    }

.slot_browser {
    overflow: auto;
    flex: 1;
}

.slot_game {
    display: flex;
    flex-direction: column;
    background: linear-gradient(50deg, var(--color1_1), var(--color1_2));
    padding: 2px;
    text-decoration: none;
    margin-bottom: 1vmin;
    margin-top: 0;
}

    .slot_game:hover {
        background: var(--color1_1);
    }

    .slot_game img {
        height: 140px;
        background: var(--color1_3);
    }

.game_name {
    background: black;
    color: var(--color1_1);
    text-decoration: none;
    padding: 5%;
    font-size: clamp(10px,3vmin,14px);
    flex: 1;
    display: flex;
    align-items: center;
}


.slot_login {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    background: rgba(255,255,255,0.05);
    margin-top: 10vmin;
    padding: 5vmin 0;
    padding-top: 15vmin;
}

.login_title {
    width: 30vmin;
    position: absolute;
    left: 50%;
    transform: translate3d(-50%,-50%,0);
    top: 0;
}

.qr {
    display: flex;
    align-items: center;
}

.qr_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 2vmin;
}

.qr_bg {
    position: absolute;
    left: 0;
    width: 113%;
    top: -52%;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
}

.qr_sample {
    width: 14vmin;
    min-width: 100px;
}

.slot_login_btn {
    background: linear-gradient(#ffe3ab, #b57d28,#ffe3ab);
    text-decoration: none;
    color: black;
    width: 100%;
    text-align: center;
    margin-top: 1vmin;
    padding: 1vmin 0;
    font-size: clamp(10px,3vmin,16px);
    border-radius: 5px;
    white-space: nowrap;
    border: none;
}


.slot_form {
    display: flex;
    flex-direction: column;
    color: white;
}

.slot_input_container {
    display: flex;
    flex-direction: column;
    margin-bottom: 10%;
}

.slot_input_label {
    color: white;
    margin-bottom: 2%;
    font-size: clamp(12px,4vmin,17px);
}

.slot_input {
    display: flex;
    align-items: center;
    width: 20vmin;
    position: relative;
}

    .slot_input input {
        width: 100%;
        background: black;
        border: none;
        font-size: clamp(12px,4vmin,17px);
        padding: 3%;
        border-radius: 5px;
        color: white;
        width: 100%;
    }

.copy_btn {
    position: absolute;
    left: 105%;
    cursor: pointer;
}

.slot_steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin-top: 5vmin;
    filter: drop-shadow(0px 2px 0 var(--color1_2));
}

.step {
    background: rgb(20,20,20);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2vmin 3vmin;
    padding-left: 7vmin;
    clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
    margin: 0 -1vmin;
    width: 30vmin;
    min-width: 300px;
}

    .step img {
        width: 25%;
        margin-right: 1vmin;
    }

.step_text {
    color: white;
    font-size: clamp(10px,3vmin,15px);
    width: 100%;
    text-align: center;
}

    .step_text p {
        margin: 0;
        width: 100%;
    }

    .step_text h1 {
        font-size: clamp(15px,4vmin,20px);
        color: var(--color1_2);
        margin: 0;
        margin-bottom: 5%;
    }

.mobiledownload {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10%;
}
