*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}
body{
    /*background: linear-gradient(150deg, #0f172a);*/
    background:  #0f172a;
    height: 100vh;
    color: #fff;
}

#messageBox{
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    padding: 6px;
    background: #fff;
    border-radius: 15px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
}
@keyframes fadeUp {
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 549px) {
    /*=====LANDING PAGE====*/
    header{
        background: #1e293b;
        margin-bottom: 10px;
        padding: 10px;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
    header .wrapper{
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    header .wrapper #installBtn{
        background-color: #3b82f6;
        border: none;
        padding: 8px;
        border-radius: 15px;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
    }
    header .wrapper #installBtn:hover{
        transition: ease 0.3s;
        transform: scale(0.98);
        cursor: pointer;
    }
    header .wrapper h2{
        font-size: 1.6rem;
        color: #38bdf8;
    }
    header .wrapper .small{
        font-size: 0.9rem;
        opacity: 0.7;
        margin-top: 2px;
        font-weight: 600;
    }
    header .wrapperA .text{
        font-weight: 600;
        color: #fff;
        font-size: 1.1rem;
        opacity: 0.7;
    }
    header .wrapperA .username{
        text-align: right;
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: capitalize;
    }

    .head{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .head img{
        width: 200px;
        padding: 0;
        margin: 0;
    }
    .head .small{
        font-size: 0.9rem;
        opacity: 0.7;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }
    .head .wrap{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .head .wrap a{
        background: #22c55e;
        padding: 12px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        width: 150px;
    }
    .head .wrap a:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
    }
    .head .wrap button{
        padding: 13px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        background: #3b82f6;  
        border: none;
        width: 150px;
    }
    .head .wrap button:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
        cursor: pointer;
    }

    .allGames{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        padding-bottom: 30px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
    }

    .allGames a{
        border: 1px solid #1e293b;
        background: rgba(255, 255, 255, 0.05);
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        backdrop-filter: blur(10px);
    }
    .allGames a:hover{
        transform: translateY(-2px);
    }
    .allGames a img{
        width: 90px;
        margin-bottom: 10px;
    }
    .allGames a .gameName{
        color: #fff;
        font-weight: 600;
        font-size: 1.9rem;
    }
    .allGames a .small{
        color: #fff;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
    }
    .allGames a .soon{
        background: red;
        margin-bottom: 15px;
        width: max-content;
        padding: 7px 12px;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    #findRoomDiv{
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.5); 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    #findRoomDiv form{
        width: 95%;
        background: #1e293b;
        padding: 20px;
        border-radius: 25px;
    }
    #findRoomDiv form .heading{
        text-align: center;
        font-weight: 600;
        font-size: 1.6rem;
    }
    #findRoomDiv form .note{
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 600;
        opacity: 0.7;
    }
    #findRoomDiv form input{
        border: 1px solid #ccc;
        padding: 20px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
    }
    #findRoomDiv form input:focus{
        border: 2px solid #3b82f6;
        outline: none;
    }
    #findRoomDiv form button{
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 20px;
        background-color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
    }
    #findRoomDiv form button:hover{
        cursor: pointer;
        transition: all ease 0.2s;
        transform: scale(0.98);
    }
    #findRoomDiv form #close{
        background: #ccc;
        padding: 3px;
        border-radius: 50%;
        width: 30px;
    }

    /*====CREATE ROOM====*/
    .wrapForm{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
    }   
    .wrapForm form{
        width: 95%;
        background: #1e293b;
        padding: 20px;
        border-radius: 25px;
    }
    .wrapForm form .heading{
        text-align: center;
        font-weight: 600;
        font-size: 1.6rem;
    }
    .wrapForm form .note{
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 600;
        opacity: 0.7;
    }
    .wrapForm form input{
        border: 1px solid #ccc;
        padding: 20px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
    }
    .wrapForm form input:focus{
        border: 2px solid #3b82f6;
        outline: none;
    }
    .wrapForm form button{
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 20px;
        background-color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .wrapForm form button:hover{
        cursor: pointer;
        transition: all ease 0.2s;
        transform: scale(0.98);
    }
    #findRoomDiv form #close{
        background: #ccc;
        padding: 3px;
        border-radius: 50%;
        width: 30px;
    }

    /*====LOBBY====*/
    nav{
        width: 0;
        background: #fff;
        padding-top: 10px;
        height: 100vh;
        top: 0;
        position: fixed;
        padding-left: 5px;
        padding-right: 5px;
        left: -300px;
        transition: all ease 0.3s;
    }
    nav .closeImg{
        margin-bottom: 10px;
        color: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
    }
    nav .closeImg img{
        border: 1px solid #ccc;
        padding: 5px;
        border-radius: 50%;
        width: 30px;
        background: #ccc;
    }
    nav .closeImg .lobbyName{
        font-weight: 600;
        font-size: 1.2rem;
        color: #000;
        text-transform: capitalize;
        word-wrap: break-word;
    }
    nav.active{
        width: 250px;
        left: 0;
    }
    nav .roomCode{
        margin-bottom: 10px;
        text-align: center;
        padding: 7px;
        border-radius: 5px;
        background: #1e293b;
    }
    nav .roomCode #roomCode{
        font-weight: 600;
    }
    nav button{
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        padding: 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
    }
    nav button:hover{
        cursor: pointer;
        transform: scale(0.97);
        transition: all ease 0.3s;
    }
    nav #leaveRoom{
        background: #f59e0b;
    }
    nav #leaveRoom:hover{
        background: #d97706;
    }
    nav #deleteRoom{
        background: #ef4444;
    }
    nav #deleteRoom:hover{
        background: #dc2626;
    }
    nav #switchHost{
        background: #8b5cf6;
    }
    nav #switchHost:hover{
        background: #3b82f6;
    }

    .gamesBtnWrap{
        text-align: center;
        margin-bottom: 30px;
        padding-top: 10px;
    }
    .gamesBtnWrap a{
        border: none;
        padding: 10px 30px;
        text-decoration: none;
        background: #22c55e;
        color: #fff;
        border-radius: 10px;
        font-weight: 600;
    }
    .gamesBtnWrap a:hover{
        background-color: green;
        transition: all ease 0.2s;
    }

    .players{
        padding: 10px;
    }
    .players #playerCount{
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
        font-weight: 600;
        font-size: 1.3rem;
        color: #3b82f6;
    }
    .players #users{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    .players #users .card{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    .players #users .card:hover{
        transform: translateY(-2px);
        cursor: pointer;
        transition: all ease 0.3s;
    }
    .players #users .card .avator{
        border: 1px solid #38bdf8;
        margin: 0 auto;
        padding: 20px;
        background: #3b82f6;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    .players #users .card .userName{
        margin-top: 10px;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.4rem;
        word-wrap: break-word;
    }
    .players #users .card .status{
        margin-bottom: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .players #users .card .active{
        padding: 4px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #22c55e;
    }
    .players #users .card .host{
        font-weight: 600;
        font-size: 0.8rem;
        opacity: 0.;
    }

    /*====GAMES====*/
    #gameList{
        padding: 8px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    #gameList .gameCard{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    #gameList .gameCard img{
        width: 80px;
        margin-bottom: 10px;
    }
    #gameList .gameCard .name{
        color: #fff;
        font-weight: 600;
        font-size: 1.9rem;
    }
    #gameList .gameCard .description{
        color: #fff;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    #gameList .gameCard .max{
        color: #fff;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
    }
    #gameList .gameCard .min{
        color: #fff;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600; 
        margin-bottom: 10px;  
    }
    #gameList .gameCard button{
        padding: 13px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        background: #3b82f6;  
        border: none;
        width: 200px;
    }
    #gameList .gameCard button:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
        cursor: pointer;
    }
    .wrapSettings{
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.5); 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    .wrapSettings #imposterSettings{
        border: 1px solid #1e293b;
        width: 90%;
        background: #1e293b;
        padding: 25px;
        border-radius: 20px;
    }
    .wrapSettings #imposterSettings img{
        border: 1px solid #ccc;
        padding: 6px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        background: #ccc;
    }
    .wrapSettings #imposterSettings .heading{
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 1.4rem;
    }
    .wrapSettings #imposterSettings label{
        display: block;
        font-size: 0.9rem;
        text-transform: lowercase;
        font-weight: 600;
        margin-bottom: 3px;
        opacity: 0.7;
    }
    .wrapSettings #imposterSettings input{
        width: 100%;
        padding: 16px;
        border-radius: 19px;
        margin-bottom: 10px;
        border: 3px solid #ccc;
        text-align: center;
    }
    .wrapSettings #imposterSettings button{
        padding: 16px;
        width: 100%;
        border-radius: 19px;
        border: none;
        background: #22c55e;
        font-weight: 800;
        font-size: 0.9rem;
    }
    .wrapSettings #imposterSettings button:hover{
        cursor: pointer;
        transform: scale(0.99);
        transition: 0.3s;
    }

    /*====IMPOSTER GAME====*/
    .displayWord{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .displayWord .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 90%;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .displayWord .wordWrap p img{
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    .displayWord .wordWrap p{
        color: red;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .displayWord .wordWrap button{
        padding: 14px 40px;
        border: none;
        border-radius: 15px;
        background: #22c55e;
        font-weight: 600;
    }
    .displayWord .wordWrap button:hover{
        transform: scale(0.99);
        transition: 0.3s;
        cursor: pointer;
    }
    .displayWord .wordWrap .civilian p{
        color: #fff;
    }

    /*START CONVERSATION*/
    .startChat{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .startChat .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 90%;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .startChat .wordWrap p{
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1rem;
        text-align: center;
        margin-bottom: 10px;
    }
    .startChat .wordWrap p img{
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    .startChat .wordWrap button{
        padding: 10px 20px;
        border: none;
        border-radius: 13px;
        background: #22c55e;
        font-weight: 600;
    }

    /*VOTE*/
    #vote{
        padding: 10px;
    }
    #vote h3{
        text-align: center;
        margin-bottom: 30px;
        color: #3b82f6;
    }
    #vote #players{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    #vote #players .playerCard{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    #vote #players .playerCard .avator{
        border: 1px solid #38bdf8;
        margin: 15px auto;
        padding: 20px;
        background: #3b82f6;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    #vote #players .playerCard .userName{
        margin-top: 10px;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.4rem;
        word-wrap: break-word;
    }
    #vote #players .playerCard .head{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #vote #players .playerCard .head .votes{
        font-weight: 600;
        font-size: 1rem;
    }
    #vote #players .playerCard .status{
        margin-bottom: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    #vote #players .playerCard .active{
        padding: 4px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #22c55e;
    }
    #vote #players .playerCard button{
        margin-top: 10px;
        padding: 10px 60px;
        border-radius: 20px;
        background: #22c55e;
        font-weight: 600;
        border: none;
    }
    #vote #players .playerCard button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }
    #vote button{
        display: block;
        margin: 20px auto;
        padding: 15px 60px;
        border-radius: 30px;
        background: #3b82f6;
        font-weight: 600;
        border: none;
    }
    #vote button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }

    /*reveal imposter*/
    #review{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #review .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 90%;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #review .wordWrap h3{
        color: #3b82f6;
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 15px;
    }
    #review .wordWrap #maxVotes{
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    #review .wordWrap #text .caught{
        margin-bottom: 20px;
        font-weight: 600;
        color: #22c55e;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #review .wordWrap #text .caught img{
        width: 40px;
        border-radius: 50%;
    }
    #review .wordWrap #text .wrong{
        margin-bottom: 20px;
        font-weight: 600;
        color: #dc2626;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #review .wordWrap #text .wrong img{
        width: 40px;
        border-radius: 50%;
    }
    #review .wordWrap #imposterName{
        color: #dc2626;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    #review .wordWrap #hiddenWord{
        color: #22c55e;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    #review .wordWrap button{
        margin-top: 20px;
        padding: 12px 50px;
        border-radius: 15px;
        border: none;
        background: #22c55e;
        font-weight: 600;
        font-size: 0.8rem;
    }
    #review .wordWrap button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }
}

@media (min-width: 550px) and (max-width: 758px) {
    /*=====LANDING PAGE====*/
    header{
        background: #1e293b;
        margin-bottom: 10px;
        padding: 10px;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
    header .wrapper{
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    header .wrapper #installBtn{
        background-color: #3b82f6;
        border: none;
        padding: 8px;
        border-radius: 15px;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
    }
    header .wrapper #installBtn:hover{
        transition: ease 0.3s;
        transform: scale(0.98);
        cursor: pointer;
    }
    header .wrapper h2{
        font-size: 1.6rem;
        color: #38bdf8;
    }
    header .wrapper .small{
        font-size: 0.9rem;
        opacity: 0.7;
        margin-top: 2px;
        font-weight: 600;
    }
    header .wrapperA .text{
        font-weight: 600;
        color: #fff;
        font-size: 1.1rem;
        opacity: 0.7;
    }
    header .wrapperA .username{
        text-align: right;
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: capitalize;
    }

    .head{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .head img{
        width: 200px;
        padding: 0;
        margin: 0;
    }
    .head .small{
        font-size: 0.9rem;
        opacity: 0.7;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }
    .head .wrap{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .head .wrap a{
        background: #22c55e;
        padding: 12px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        width: 150px;
    }
    .head .wrap a:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
    }
    .head .wrap button{
        padding: 13px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        background: #3b82f6;  
        border: none;
        width: 150px;
    }
    .head .wrap button:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
        cursor: pointer;
    }

    .allGames{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        padding-bottom: 30px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
    }

    .allGames a{
        border: 1px solid #1e293b;
        background: rgba(255, 255, 255, 0.05);
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        backdrop-filter: blur(10px);
    }
    .allGames a:hover{
        transform: translateY(-2px);
    }
    .allGames a img{
        width: 90px;
        margin-bottom: 10px;
    }
    .allGames a .gameName{
        color: #fff;
        font-weight: 600;
        font-size: 1.9rem;
    }
    .allGames a .small{
        color: #fff;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
    }
    .allGames a .soon{
        background: red;
        margin-bottom: 15px;
        width: max-content;
        padding: 7px 12px;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    #findRoomDiv{
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.5); 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    #findRoomDiv form{
        width: 95%;
        background: #1e293b;
        padding: 20px;
        border-radius: 25px;
    }
    #findRoomDiv form .heading{
        text-align: center;
        font-weight: 600;
        font-size: 1.6rem;
    }
    #findRoomDiv form .note{
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 600;
        opacity: 0.7;
    }
    #findRoomDiv form input{
        border: 1px solid #ccc;
        padding: 20px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
    }
    #findRoomDiv form input:focus{
        border: 2px solid #3b82f6;
        outline: none;
    }
    #findRoomDiv form button{
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 20px;
        background-color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
    }
    #findRoomDiv form button:hover{
        cursor: pointer;
        transition: all ease 0.2s;
        transform: scale(0.98);
    }
    #findRoomDiv form #close{
        background: #ccc;
        padding: 3px;
        border-radius: 50%;
        width: 30px;
    }

    /*====CREATE ROOM====*/
    .wrapForm{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
    }   
    .wrapForm form{
        width: 90%;
        background: #1e293b;
        padding: 30px;
        border-radius: 25px;
    }
    .wrapForm form .heading{
        text-align: center;
        font-weight: 600;
        font-size: 1.6rem;
    }
    .wrapForm form .note{
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 600;
        opacity: 0.7;
    }
    .wrapForm form input{
        border: 1px solid #ccc;
        padding: 20px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
    }
    .wrapForm form input:focus{
        border: 2px solid #3b82f6;
        outline: none;
    }
    .wrapForm form button{
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 20px;
        background-color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .wrapForm form button:hover{
        cursor: pointer;
        transition: all ease 0.2s;
        transform: scale(0.98);
    }
    #findRoomDiv form #close{
        background: #ccc;
        padding: 3px;
        border-radius: 50%;
        width: 30px;
    }  
    
    /*====LOBBY====*/
    nav{
        width: 0;
        background: #fff;
        padding-top: 10px;
        height: 100vh;
        top: 0;
        position: fixed;
        padding-left: 5px;
        padding-right: 5px;
        left: -300px;
        transition: all ease 0.3s;
    }
    nav .closeImg{
        margin-bottom: 10px;
        color: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
    }
    nav .closeImg img{
        border: 1px solid #ccc;
        padding: 5px;
        border-radius: 50%;
        width: 30px;
        background: #ccc;
    }
    nav .closeImg .lobbyName{
        font-weight: 600;
        font-size: 1.2rem;
        color: #000;
        text-transform: capitalize;
        word-wrap: break-word;
    }
    nav.active{
        width: 300px;
        left: 0;
    }
    nav .roomCode{
        margin-bottom: 10px;
        text-align: center;
        padding: 7px;
        border-radius: 5px;
        background: #1e293b;
    }
    nav .roomCode #roomCode{
        font-weight: 600;
    }
    nav button{
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        padding: 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
    }
    nav button:hover{
        cursor: pointer;
        transform: scale(0.97);
        transition: all ease 0.3s;
    }
    nav #leaveRoom{
        background: #f59e0b;
    }
    nav #leaveRoom:hover{
        background: #d97706;
    }
    nav #deleteRoom{
        background: #ef4444;
    }
    nav #deleteRoom:hover{
        background: #dc2626;
    }
    nav #switchHost{
        background: #8b5cf6;
    }
    nav #switchHost:hover{
        background: #3b82f6;
    }

    .gamesBtnWrap{
        text-align: center;
        margin-bottom: 30px;
        padding-top: 10px;
    }
    .gamesBtnWrap a{
        border: none;
        padding: 10px 30px;
        text-decoration: none;
        background: #22c55e;
        color: #fff;
        border-radius: 10px;
        font-weight: 600;
    }
    .gamesBtnWrap a:hover{
        background-color: green;
        transition: all ease 0.2s;
    }
    .players{
        padding: 10px;
    }
    .players #playerCount{
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
        font-weight: 600;
        font-size: 1.3rem;
        color: #3b82f6;
    }
    .players #users{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
    }
    .players #users .card{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    .players #users .card:hover{
        transform: translateY(-2px);
        cursor: pointer;
        transition: all ease 0.3s;
    }
    .players #users .card .avator{
        border: 1px solid #38bdf8;
        margin: 0 auto;
        padding: 20px;
        background: #3b82f6;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    .players #users .card .userName{
        margin-top: 10px;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.4rem;
        word-wrap: break-word;
    }
    .players #users .card .status{
        margin-bottom: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .players #users .card .active{
        padding: 4px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #22c55e;
    }
    .players #users .card .host{
        font-weight: 600;
        font-size: 0.8rem;
        opacity: 0.;
    }

    /*====GAMES====*/
    #gameList{
        padding: 8px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    #gameList .gameCard{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    #gameList .gameCard img{
        width: 80px;
        margin-bottom: 10px;
    }
    #gameList .gameCard .name{
        color: #fff;
        font-weight: 600;
        font-size: 1.9rem;
    }
    #gameList .gameCard .description{
        color: #fff;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    #gameList .gameCard .max{
        color: #fff;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
    }
    #gameList .gameCard .min{
        color: #fff;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600; 
        margin-bottom: 10px;  
    }
    #gameList .gameCard button{
        padding: 13px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        background: #3b82f6;  
        border: none;
        width: 200px;
    }
    #gameList .gameCard button:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
        cursor: pointer;
    }
    .wrapSettings{
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.5); 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    .wrapSettings #imposterSettings{
        border: 1px solid #1e293b;
        width: 90%;
        background: #1e293b;
        padding: 25px;
        border-radius: 20px;
    }
    .wrapSettings #imposterSettings img{
        border: 1px solid #ccc;
        padding: 6px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        background: #ccc;
    }
    .wrapSettings #imposterSettings .heading{
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 1.4rem;
    }
    .wrapSettings #imposterSettings label{
        display: block;
        font-size: 0.9rem;
        text-transform: lowercase;
        font-weight: 600;
        margin-bottom: 3px;
        opacity: 0.7;
    }
    .wrapSettings #imposterSettings input{
        width: 100%;
        padding: 16px;
        border-radius: 19px;
        margin-bottom: 10px;
        border: 3px solid #ccc;
        text-align: center;
    }
    .wrapSettings #imposterSettings button{
        padding: 16px;
        width: 100%;
        border-radius: 19px;
        border: none;
        background: #22c55e;
        font-weight: 800;
        font-size: 0.9rem;
    }
    .wrapSettings #imposterSettings button:hover{
        cursor: pointer;
        transform: scale(0.99);
        transition: 0.3s;
    }

    /*====IMPOSTER GAME====*/
    .displayWord{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .displayWord .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 90%;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .displayWord .wordWrap p img{
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    .displayWord .wordWrap p{
        color: red;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .displayWord .wordWrap button{
        padding: 14px 40px;
        border: none;
        border-radius: 15px;
        background: #22c55e;
        font-weight: 600;
    }
    .displayWord .wordWrap button:hover{
        transform: scale(0.99);
        transition: 0.3s;
        cursor: pointer;
    }
    .displayWord .wordWrap .civilian p{
        color: #fff;
    }

    /*START CONVERSATION*/
    .startChat{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .startChat .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 90%;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .startChat .wordWrap p{
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1rem;
        text-align: center;
        margin-bottom: 10px;
    }
    .startChat .wordWrap p img{
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    .startChat .wordWrap button{
        padding: 10px 20px;
        border: none;
        border-radius: 13px;
        background: #22c55e;
        font-weight: 600;
    }

    /*VOTE*/
    #vote{
        padding: 10px;
    }
    #vote h3{
        text-align: center;
        margin-bottom: 30px;
        color: #3b82f6;
    }
    #vote #players{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    #vote #players .playerCard{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    #vote #players .playerCard .avator{
        border: 1px solid #38bdf8;
        margin: 15px auto;
        padding: 20px;
        background: #3b82f6;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    #vote #players .playerCard .userName{
        margin-top: 10px;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.4rem;
        word-wrap: break-word;
    }
    #vote #players .playerCard .head{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #vote #players .playerCard .head .votes{
        font-weight: 600;
        font-size: 1rem;
    }
    #vote #players .playerCard .status{
        margin-bottom: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    #vote #players .playerCard .active{
        padding: 4px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #22c55e;
    }
    #vote #players .playerCard button{
        margin-top: 10px;
        padding: 10px 60px;
        border-radius: 20px;
        background: #22c55e;
        font-weight: 600;
        border: none;
    }
    #vote #players .playerCard button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }
    #vote button{
        display: block;
        margin: 20px auto;
        padding: 15px 60px;
        border-radius: 30px;
        background: #3b82f6;
        font-weight: 600;
        border: none;
    }
    #vote button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }

    /*reveal imposter*/
    #review{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #review .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 90%;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #review .wordWrap h3{
        color: #3b82f6;
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 15px;
    }
    #review .wordWrap #maxVotes{
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    #review .wordWrap #text .caught{
        margin-bottom: 20px;
        font-weight: 600;
        color: #22c55e;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #review .wordWrap #text .caught img{
        width: 40px;
        border-radius: 50%;
    }
    #review .wordWrap #text .wrong{
        margin-bottom: 20px;
        font-weight: 600;
        color: #dc2626;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #review .wordWrap #text .wrong img{
        width: 40px;
        border-radius: 50%;
    }
    #review .wordWrap #imposterName{
        color: #dc2626;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    #review .wordWrap #hiddenWord{
        color: #22c55e;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    #review .wordWrap button{
        margin-top: 20px;
        padding: 12px 50px;
        border-radius: 15px;
        border: none;
        background: #22c55e;
        font-weight: 600;
        font-size: 0.8rem;
    }
    #review .wordWrap button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }
}

@media (min-width: 759px) and (max-width: 1100px){
    /*=====LANDING PAGE====*/
    header{
        background: #1e293b;
        margin-bottom: 10px;
        padding: 10px;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
    header .wrapper{
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    header .wrapper #installBtn{
        background-color: #3b82f6;
        border: none;
        padding: 8px;
        border-radius: 15px;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
    }
    header .wrapper #installBtn:hover{
        transition: ease 0.3s;
        transform: scale(0.98);
        cursor: pointer;
    }
    header .wrapper h2{
        font-size: 1.6rem;
        color: #38bdf8;
    }
    header .wrapper .small{
        font-size: 0.9rem;
        opacity: 0.7;
        margin-top: 2px;
        font-weight: 600;
    }
    header .wrapperA .text{
        font-weight: 600;
        color: #fff;
        font-size: 1.1rem;
        opacity: 0.7;
    }
    header .wrapperA .username{
        text-align: right;
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: capitalize;
    }

    .head{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .head img{
        width: 200px;
        padding: 0;
        margin: 0;
    }
    .head .small{
        font-size: 0.9rem;
        opacity: 0.7;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }
    .head .wrap{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .head .wrap a{
        background: #22c55e;
        padding: 12px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        width: 150px;
    }
    .head .wrap a:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
    }
    .head .wrap button{
        padding: 13px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        background: #3b82f6;  
        border: none;
        width: 150px;
    }
    .head .wrap button:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
        cursor: pointer;
    }

    .allGames{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        padding-bottom: 30px;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
    }

    .allGames a{
        border: 1px solid #1e293b;
        background: rgba(255, 255, 255, 0.05);
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        backdrop-filter: blur(10px);
    }
    .allGames a:hover{
        transform: translateY(-2px);
    }
    .allGames a img{
        width: 90px;
        margin-bottom: 10px;
    }
    .allGames a .gameName{
        color: #fff;
        font-weight: 600;
        font-size: 1.9rem;
    }
    .allGames a .small{
        color: #fff;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
    }
    .allGames a .soon{
        background: red;
        margin-bottom: 15px;
        width: max-content;
        padding: 7px 12px;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    #findRoomDiv{
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.5); 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    #findRoomDiv form{
        width: 700px;
        background: #1e293b;
        padding: 20px;
        border-radius: 25px;
    }
    #findRoomDiv form .heading{
        text-align: center;
        font-weight: 600;
        font-size: 1.6rem;
    }
    #findRoomDiv form .note{
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 600;
        opacity: 0.7;
    }
    #findRoomDiv form input{
        border: 1px solid #ccc;
        padding: 20px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
    }
    #findRoomDiv form input:focus{
        border: 2px solid #3b82f6;
        outline: none;
    }
    #findRoomDiv form button{
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 20px;
        background-color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
    }
    #findRoomDiv form button:hover{
        cursor: pointer;
        transition: all ease 0.2s;
        transform: scale(0.98);
    }
    #findRoomDiv form #close{
        background: #ccc;
        padding: 3px;
        border-radius: 50%;
        width: 30px;
    }

    /*====CREATE ROOM====*/
    .wrapForm{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
    }   
    .wrapForm form{
        width: 600px;
        background: #1e293b;
        padding: 30px;
        border-radius: 25px;
    }
    .wrapForm form .heading{
        text-align: center;
        font-weight: 600;
        font-size: 1.6rem;
    }
    .wrapForm form .note{
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 600;
        opacity: 0.7;
    }
    .wrapForm form input{
        border: 1px solid #ccc;
        padding: 20px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
    }
    .wrapForm form input:focus{
        border: 2px solid #3b82f6;
        outline: none;
    }
    .wrapForm form button{
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 20px;
        background-color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .wrapForm form button:hover{
        cursor: pointer;
        transition: all ease 0.2s;
        transform: scale(0.98);
    }
    #findRoomDiv form #close{
        background: #ccc;
        padding: 3px;
        border-radius: 50%;
        width: 30px;
    } 

    /*====LOBBY====*/
    nav{
        width: 0;
        background: #fff;
        padding-top: 10px;
        height: 100vh;
        top: 0;
        position: fixed;
        padding-left: 5px;
        padding-right: 5px;
        left: -300px;
        transition: all ease 0.3s;
    }
    nav .closeImg{
        margin-bottom: 10px;
        color: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
    }
    nav .closeImg img{
        border: 1px solid #ccc;
        padding: 5px;
        border-radius: 50%;
        width: 30px;
        background: #ccc;
    }
    nav .closeImg .lobbyName{
        font-weight: 600;
        font-size: 1.2rem;
        color: #000;
        text-transform: capitalize;
        word-wrap: break-word;
    }
    nav.active{
        width: 300px;
        left: 0;
    }
    nav .roomCode{
        margin-bottom: 10px;
        text-align: center;
        padding: 7px;
        border-radius: 5px;
        background: #1e293b;
    }
    nav .roomCode #roomCode{
        font-weight: 600;
    }
    nav button{
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        padding: 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
    }
    nav button:hover{
        cursor: pointer;
        transform: scale(0.97);
        transition: all ease 0.3s;
    }
    nav #leaveRoom{
        background: #f59e0b;
    }
    nav #leaveRoom:hover{
        background: #d97706;
    }
    nav #deleteRoom{
        background: #ef4444;
    }
    nav #deleteRoom:hover{
        background: #dc2626;
    }
    nav #switchHost{
        background: #8b5cf6;
    }
    nav #switchHost:hover{
        background: #3b82f6;
    }

    .gamesBtnWrap{
        text-align: center;
        margin-bottom: 30px;
        padding-top: 10px;
    }
    .gamesBtnWrap a{
        border: none;
        padding: 10px 30px;
        text-decoration: none;
        background: #22c55e;
        color: #fff;
        border-radius: 10px;
        font-weight: 600;
    }
    .gamesBtnWrap a:hover{
        background-color: green;
        transition: all ease 0.2s;
    }
    .players{
        padding: 10px;
    }
    .players #playerCount{
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
        font-weight: 600;
        font-size: 1.3rem;
        color: #3b82f6;
    }
    .players #users{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 15px;
    }
    .players #users .card{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    .players #users .card:hover{
        transform: translateY(-2px);
        cursor: pointer;
        transition: all ease 0.3s;
    }
    .players #users .card .avator{
        border: 1px solid #38bdf8;
        margin: 0 auto;
        padding: 20px;
        background: #3b82f6;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.4rem;
    }
    .players #users .card .userName{
        margin-top: 10px;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.6rem;
        word-wrap: break-word;
    }
    .players #users .card .status{
        margin-bottom: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .players #users .card .active{
        padding: 4px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #22c55e;
    }
    .players #users .card .host{
        font-weight: 600;
        font-size: 0.8rem;
        opacity: 0.;
    }

    /*====GAMES====*/
    #gameList{
        padding: 8px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 15px;
    }
    #gameList .gameCard{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    #gameList .gameCard img{
        width: 80px;
        margin-bottom: 10px;
    }
    #gameList .gameCard .name{
        color: #fff;
        font-weight: 600;
        font-size: 1.9rem;
    }
    #gameList .gameCard .description{
        color: #fff;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    #gameList .gameCard .max{
        color: #fff;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
    }
    #gameList .gameCard .min{
        color: #fff;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600; 
        margin-bottom: 10px;  
    }
    #gameList .gameCard button{
        padding: 13px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        background: #3b82f6;  
        border: none;
        width: 200px;
    }
    #gameList .gameCard button:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
        cursor: pointer;
    }
    .wrapSettings{
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.5); 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    .wrapSettings #imposterSettings{
        border: 1px solid #1e293b;
        width: 700px;
        background: #1e293b;
        padding: 25px;
        border-radius: 20px;
    }
    .wrapSettings #imposterSettings img{
        border: 1px solid #ccc;
        padding: 6px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        background: #ccc;
    }
    .wrapSettings #imposterSettings .heading{
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 1.4rem;
    }
    .wrapSettings #imposterSettings label{
        display: block;
        font-size: 0.9rem;
        text-transform: lowercase;
        font-weight: 600;
        margin-bottom: 3px;
        opacity: 0.7;
    }
    .wrapSettings #imposterSettings input{
        width: 100%;
        padding: 16px;
        border-radius: 19px;
        margin-bottom: 10px;
        border: 3px solid #ccc;
        text-align: center;
    }
    .wrapSettings #imposterSettings button{
        padding: 16px;
        width: 100%;
        border-radius: 19px;
        border: none;
        background: #22c55e;
        font-weight: 800;
        font-size: 0.9rem;
    }
    .wrapSettings #imposterSettings button:hover{
        cursor: pointer;
        transform: scale(0.99);
        transition: 0.3s;
    }

    /*====IMPOSTER GAME====*/
    .displayWord{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .displayWord .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 700px;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .displayWord .wordWrap p img{
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    .displayWord .wordWrap p{
        color: red;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .displayWord .wordWrap button{
        padding: 14px 40px;
        border: none;
        border-radius: 15px;
        background: #22c55e;
        font-weight: 600;
    }
    .displayWord .wordWrap button:hover{
        transform: scale(0.99);
        transition: 0.3s;
        cursor: pointer;
    }
    .displayWord .wordWrap .civilian p{
        color: #fff;
    }

    /*START CONVERSATION*/
    .startChat{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .startChat .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 700px;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .startChat .wordWrap p{
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1rem;
        text-align: center;
        margin-bottom: 10px;
    }
    .startChat .wordWrap p img{
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    .startChat .wordWrap button{
        padding: 10px 20px;
        border: none;
        border-radius: 13px;
        background: #22c55e;
        font-weight: 600;
    }

    /*VOTE*/
    #vote{
        padding: 10px;
    }
    #vote h3{
        text-align: center;
        margin-bottom: 30px;
        color: #3b82f6;
    }
    #vote #players{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 15px;
    }
    #vote #players .playerCard{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    #vote #players .playerCard .avator{
        border: 1px solid #38bdf8;
        margin: 15px auto;
        padding: 20px;
        background: #3b82f6;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    #vote #players .playerCard .userName{
        margin-top: 10px;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.4rem;
        word-wrap: break-word;
    }
    #vote #players .playerCard .head{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #vote #players .playerCard .head .votes{
        font-weight: 600;
        font-size: 1rem;
    }
    #vote #players .playerCard .status{
        margin-bottom: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    #vote #players .playerCard .active{
        padding: 4px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #22c55e;
    }
    #vote #players .playerCard button{
        margin-top: 10px;
        padding: 10px 60px;
        border-radius: 20px;
        background: #22c55e;
        font-weight: 600;
        border: none;
    }
    #vote #players .playerCard button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }
    #vote button{
        display: block;
        margin: 20px auto;
        padding: 15px 60px;
        border-radius: 30px;
        background: #3b82f6;
        font-weight: 600;
        border: none;
    }
    #vote button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }

    /*reveal imposter*/
    #review{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #review .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 700px;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #review .wordWrap h3{
        color: #3b82f6;
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 15px;
    }
    #review .wordWrap #maxVotes{
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    #review .wordWrap #text .caught{
        margin-bottom: 20px;
        font-weight: 600;
        color: #22c55e;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #review .wordWrap #text .caught img{
        width: 40px;
        border-radius: 50%;
    }
    #review .wordWrap #text .wrong{
        margin-bottom: 20px;
        font-weight: 600;
        color: #dc2626;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #review .wordWrap #text .wrong img{
        width: 40px;
        border-radius: 50%;
    }
    #review .wordWrap #imposterName{
        color: #dc2626;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    #review .wordWrap #hiddenWord{
        color: #22c55e;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    #review .wordWrap button{
        margin-top: 20px;
        padding: 12px 50px;
        border-radius: 15px;
        border: none;
        background: #22c55e;
        font-weight: 600;
        font-size: 0.8rem;
    }
    #review .wordWrap button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }
}

@media (min-width: 1101px){
    /*=====LANDING PAGE====*/
    header{
        background: #1e293b;
        margin-bottom: 10px;
        padding: 10px;
        align-items: center;
        display: flex;
        justify-content: space-between;
    }
    header .wrapper{
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    header .wrapper #installBtn{
        background-color: #3b82f6;
        border: none;
        padding: 8px;
        border-radius: 15px;
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
    }
    header .wrapper #installBtn:hover{
        transition: ease 0.3s;
        transform: scale(0.98);
        cursor: pointer;
    }
    header .wrapper h2{
        font-size: 1.6rem;
        color: #38bdf8;
    }
    header .wrapper .small{
        font-size: 0.9rem;
        opacity: 0.7;
        margin-top: 2px;
        font-weight: 600;
    }
    header .wrapperA .text{
        font-weight: 600;
        color: #fff;
        font-size: 1.1rem;
        opacity: 0.7;
    }
    header .wrapperA .username{
        text-align: right;
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: capitalize;
    }

    .head{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        margin-left: 5px;
        margin-right: 5px;
    }
    .head img{
        width: 200px;
        padding: 0;
        margin: 0;
    }
    .head .small{
        font-size: 0.9rem;
        opacity: 0.7;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }
    .head .wrap{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .head .wrap a{
        background: #22c55e;
        padding: 12px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        width: 150px;
    }
    .head .wrap a:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
    }
    .head .wrap button{
        padding: 13px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        background: #3b82f6;  
        border: none;
        width: 150px;
    }
    .head .wrap button:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
        cursor: pointer;
    }

    .allGames{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
        gap: 25px;
        padding-bottom: 50px;
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 30px;
    }

    .allGames a{
        border: 1px solid #1e293b;
        background: rgba(255, 255, 255, 0.05);
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        backdrop-filter: blur(10px);
    }
    .allGames a:hover{
        transform: translateY(-2px);
    }
    .allGames a img{
        width: 90px;
        margin-bottom: 10px;
    }
    .allGames a .gameName{
        color: #fff;
        font-weight: 600;
        font-size: 1.9rem;
    }
    .allGames a .small{
        color: #fff;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
    }
    .allGames a .soon{
        background: red;
        margin-bottom: 15px;
        width: max-content;
        padding: 7px 12px;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    #findRoomDiv{
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.5); 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    #findRoomDiv form{
        width: 700px;
        background: #1e293b;
        padding: 30px;
        border-radius: 25px;
    }
    #findRoomDiv form .heading{
        text-align: center;
        font-weight: 600;
        font-size: 1.6rem;
    }
    #findRoomDiv form .note{
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 600;
        opacity: 0.7;
    }
    #findRoomDiv form input{
        border: 1px solid #ccc;
        padding: 20px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
    }
    #findRoomDiv form input:focus{
        border: 2px solid #3b82f6;
        outline: none;
    }
    #findRoomDiv form button{
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 20px;
        background-color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
    }
    #findRoomDiv form button:hover{
        cursor: pointer;
        transition: all ease 0.2s;
        transform: scale(0.98);
    }
    #findRoomDiv form #close{
        background: #ccc;
        padding: 3px;
        border-radius: 50%;
        width: 30px;
    }

    /*====CREATE ROOM====*/
    .wrapForm{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
    }   
    .wrapForm form{
        width: 700px;
        background: #1e293b;
        padding: 30px;
        border-radius: 25px;
    }
    .wrapForm form .heading{
        text-align: center;
        font-weight: 600;
        font-size: 1.6rem;
    }
    .wrapForm form .note{
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 20px;
        font-weight: 600;
        opacity: 0.7;
    }
    .wrapForm form input{
        border: 1px solid #ccc;
        padding: 20px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 20px;
        text-align: center;
    }
    .wrapForm form input:focus{
        border: 2px solid #3b82f6;
        outline: none;
    }
    .wrapForm form button{
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 20px;
        background-color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .wrapForm form button:hover{
        cursor: pointer;
        transition: all ease 0.2s;
        transform: scale(0.98);
    }
    #findRoomDiv form #close{
        background: #ccc;
        padding: 3px;
        border-radius: 50%;
        width: 30px;
    }

    /*====LOBBY====*/
    nav{
        width: 0;
        background: #fff;
        padding-top: 10px;
        height: 100vh;
        top: 0;
        position: fixed;
        padding-left: 5px;
        padding-right: 5px;
        left: -300px;
        transition: all ease 0.3s;
    }
    nav .closeImg{
        margin-bottom: 10px;
        color: #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ccc;
        padding-bottom: 15px;
    }
    nav .closeImg img{
        border: 1px solid #ccc;
        padding: 5px;
        border-radius: 50%;
        width: 30px;
        background: #ccc;
    }
    nav .closeImg .lobbyName{
        font-weight: 600;
        font-size: 1.2rem;
        color: #000;
        text-transform: capitalize;
        word-wrap: break-word;
    }
    nav.active{
        width: 300px;
        left: 0;
    }
    nav .roomCode{
        margin-bottom: 10px;
        text-align: center;
        padding: 7px;
        border-radius: 5px;
        background: #1e293b;
    }
    nav .roomCode #roomCode{
        font-weight: 600;
    }
    nav button{
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
        padding: 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
    }
    nav button:hover{
        cursor: pointer;
        transform: scale(0.97);
        transition: all ease 0.3s;
    }
    nav #leaveRoom{
        background: #f59e0b;
    }
    nav #leaveRoom:hover{
        background: #d97706;
    }
    nav #deleteRoom{
        background: #ef4444;
    }
    nav #deleteRoom:hover{
        background: #dc2626;
    }
    nav #switchHost{
        background: #8b5cf6;
    }
    nav #switchHost:hover{
        background: #3b82f6;
    }

    .gamesBtnWrap{
        text-align: center;
        margin-bottom: 30px;
        padding-top: 10px;
    }
    .gamesBtnWrap a{
        border: none;
        padding: 10px 30px;
        text-decoration: none;
        background: #22c55e;
        color: #fff;
        border-radius: 10px;
        font-weight: 600;
    }
    .gamesBtnWrap a:hover{
        background-color: green;
        transition: all ease 0.2s;
    }
    .players{
        padding: 10px;
    }
    .players #playerCount{
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
        font-weight: 600;
        font-size: 1.3rem;
        color: #3b82f6;
    }
    .players #users{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 15px;
    }
    .players #users .card{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    .players #users .card:hover{
        transform: translateY(-2px);
        cursor: pointer;
        transition: all ease 0.3s;
    }
    .players #users .card .avator{
        border: 1px solid #38bdf8;
        margin: 0 auto;
        padding: 20px;
        background: #3b82f6;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.4rem;
    }
    .players #users .card .userName{
        margin-top: 10px;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.6rem;
        word-wrap: break-word;
    }
    .players #users .card .status{
        margin-bottom: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    .players #users .card .active{
        padding: 4px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #22c55e;
    }
    .players #users .card .host{
        font-weight: 600;
        font-size: 0.8rem;
        opacity: 0.;
    }

    /*====GAMES====*/
    #gameList{
        padding: 8px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 15px;
    }
    #gameList .gameCard{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    #gameList .gameCard img{
        width: 80px;
        margin-bottom: 10px;
    }
    #gameList .gameCard .name{
        color: #fff;
        font-weight: 600;
        font-size: 1.9rem;
    }
    #gameList .gameCard .description{
        color: #fff;
        opacity: 0.7;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    #gameList .gameCard .max{
        color: #fff;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600;
    }
    #gameList .gameCard .min{
        color: #fff;
        margin-top: 5px;
        font-size: 1rem;
        font-weight: 600; 
        margin-bottom: 10px;  
    }
    #gameList .gameCard button{
        padding: 13px 20px;
        border-radius: 12px;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        background: #3b82f6;  
        border: none;
        width: 200px;
    }
    #gameList .gameCard button:hover{
        transform: scale(1.08);
        opacity: 0.9;
        transition: all 0.3s;
        cursor: pointer;
    }
    .wrapSettings{
        position: fixed; 
        top: 0; 
        left: 0;
        width: 100%; 
        height: 100%; 
        background: rgba(0,0,0,0.5); 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    .wrapSettings #imposterSettings{
        border: 1px solid #1e293b;
        width: 700px;
        background: #1e293b;
        padding: 25px;
        border-radius: 20px;
    }
    .wrapSettings #imposterSettings img{
        border: 1px solid #ccc;
        padding: 6px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        background: #ccc;
    }
    .wrapSettings #imposterSettings .heading{
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 1.4rem;
    }
    .wrapSettings #imposterSettings label{
        display: block;
        font-size: 0.9rem;
        text-transform: lowercase;
        font-weight: 600;
        margin-bottom: 3px;
        opacity: 0.7;
    }
    .wrapSettings #imposterSettings input{
        width: 100%;
        padding: 16px;
        border-radius: 19px;
        margin-bottom: 10px;
        border: 3px solid #ccc;
        text-align: center;
    }
    .wrapSettings #imposterSettings button{
        padding: 16px;
        width: 100%;
        border-radius: 19px;
        border: none;
        background: #22c55e;
        font-weight: 800;
        font-size: 0.9rem;
    }
    .wrapSettings #imposterSettings button:hover{
        cursor: pointer;
        transform: scale(0.99);
        transition: 0.3s;
    }

    /*====IMPOSTER GAME====*/
    .displayWord{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .displayWord .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 700px;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .displayWord .wordWrap p img{
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    .displayWord .wordWrap p{
        color: red;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .displayWord .wordWrap button{
        padding: 14px 40px;
        border: none;
        border-radius: 15px;
        background: #22c55e;
        font-weight: 600;
    }
    .displayWord .wordWrap button:hover{
        transform: scale(0.99);
        transition: 0.3s;
        cursor: pointer;
    }
    .displayWord .wordWrap .civilian p{
        color: #fff;
    }

    /*START CONVERSATION*/
    .startChat{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .startChat .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 700px;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .startChat .wordWrap p{
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1rem;
        text-align: center;
        margin-bottom: 10px;
    }
    .startChat .wordWrap p img{
        display: block;
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    .startChat .wordWrap button{
        padding: 10px 20px;
        border: none;
        border-radius: 13px;
        background: #22c55e;
        font-weight: 600;
    }

    /*VOTE*/
    #vote{
        padding: 10px;
    }
    #vote h3{
        text-align: center;
        margin-bottom: 30px;
        color: #3b82f6;
    }
    #vote #players{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 15px;
    }
    #vote #players .playerCard{
        border: 1px solid #0f172a;
        padding: 20px;
        border-radius: 20px;
        background: #1e293b;
        text-align: center;
    }
    #vote #players .playerCard .avator{
        border: 1px solid #38bdf8;
        margin: 15px auto;
        padding: 20px;
        background: #3b82f6;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.2rem;
    }
    #vote #players .playerCard .userName{
        margin-top: 10px;
        font-weight: 600;
        text-transform: capitalize;
        font-size: 1.4rem;
        word-wrap: break-word;
    }
    #vote #players .playerCard .head{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #vote #players .playerCard .head .votes{
        font-weight: 600;
        font-size: 1rem;
    }
    #vote #players .playerCard .status{
        margin-bottom: 10px;
        display: flex;
        justify-content: left;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    #vote #players .playerCard .active{
        padding: 4px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: #22c55e;
    }
    #vote #players .playerCard button{
        margin-top: 10px;
        padding: 10px 60px;
        border-radius: 20px;
        background: #22c55e;
        font-weight: 600;
        border: none;
    }
    #vote #players .playerCard button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }
    #vote button{
        display: block;
        margin: 20px auto;
        padding: 15px 60px;
        border-radius: 30px;
        background: #3b82f6;
        font-weight: 600;
        border: none;
    }
    #vote button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }

    /*reveal imposter*/
    #review{
        height: 95vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #review .wordWrap{
        border: 1px solid #1e293b;
        padding: 50px;
        height: 400px;
        width: 700px;
        background: #1e293b;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    #review .wordWrap h3{
        color: #3b82f6;
        font-size: 1.5rem;
        text-align: left;
        margin-bottom: 15px;
    }
    #review .wordWrap #maxVotes{
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    #review .wordWrap #text .caught{
        margin-bottom: 20px;
        font-weight: 600;
        color: #22c55e;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #review .wordWrap #text .caught img{
        width: 40px;
        border-radius: 50%;
    }
    #review .wordWrap #text .wrong{
        margin-bottom: 20px;
        font-weight: 600;
        color: #dc2626;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    #review .wordWrap #text .wrong img{
        width: 40px;
        border-radius: 50%;
    }
    #review .wordWrap #imposterName{
        color: #dc2626;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    #review .wordWrap #hiddenWord{
        color: #22c55e;
        text-transform: capitalize;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.3rem;
    }
    #review .wordWrap button{
        margin-top: 20px;
        padding: 12px 50px;
        border-radius: 15px;
        border: none;
        background: #22c55e;
        font-weight: 600;
        font-size: 0.8rem;
    }
    #review .wordWrap button:hover{
        transform: scale(0.99);
        transition: ease 0.3s;
        cursor: pointer;
    }
}