*{
    cursor: url(https://cur.cursors-4u.net/people/peo-1/peo4.ani), url(https://cur.cursors-4u.net/people/peo-1/peo4.png), auto !important;
}
body {
    font-family: Arial, sans-serif;
    text-align: center;
    justify-content: center;
    background: url("assets/bg-pc.gif");
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    color: #e0e0e0;
    height: 100vh;
}

#game-container {
    display: flex;
    flex-direction: row;
    align-items:flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#board {
    width: 600px;
    height: 600px;
    display: grid;
    padding: 10px;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    border: 3px solid #00ffff;
    background-color: #1e1e1e;
    box-shadow: 0 0 20px #00ffff;
}

.cell {
    width: 55px;
    height: 55px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* Neon Chessboard Effect */
.cell:nth-child(odd) {
    background-color: #191919;
    box-shadow: inset 0 0 10px #00ffff;
}

.cell:nth-child(even) {
    background-color: #111;
    box-shadow: inset 0 0 10px #ff00ff;
}

#player {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #0fe;
    border-radius: 5px;
    /* box-shadow: 0 0 10px #0fe; */
    background-color: #1e1e1e;
    height: 30px;
    width: 200px;
    text-transform: uppercase;
}



#quiz-container {
    width: 400px;
    padding: 10px;
    border: 3px solid #ff00ff;
    background-color: #1e1e1e;
    box-shadow: 0 0 20px #ff00ff;
}

#options{
    display: grid;
    grid-template-rows: repeat(2 , 1fr);
    grid-template-columns: repeat(2, 1fr);
}

.option {
    display: block;
    margin: 5px;
    padding: 10px;
    color: #e0e0e0;
    cursor: pointer;
    background-color: transparent;
    box-shadow: 0 0 10px #00ffff;
    border: 1px solid #0ff;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.option:hover {
    border: 1px solid #0ff;
    background-color: #191919;
    box-shadow: 0 0 10px #00ff00;
}

.option:active {
    transform: scale(1);
}

h1, h2, p, #player {
    color: #00ffff;
}
h1{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 40px 0;
}

button {
    background-color: #00ff00;
    color: #121212;
    border: 2px solid transparent;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 10px #00ff00;
    transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
    background-color: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    border: 2px solid white;
}

/* .player{
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00ffff;
    font-weight: bolder;
    font-size: x-small;
    background-color: red;
    border: #00ffff 1px solid;
    border-radius: 50%;
} */

.player {
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}


#sound-toggle{
    margin-left: 40px;
    width: 10px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p{
    color: #1e1e1e;
}




/* Mobile View Adjustments */
@media (max-width: 600px) {
    body {
        font-size: 14px;
        background-position: right;

    }

    #game-container {
        margin: 40px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #board {
        width: 340px;
        height: 340px;
        padding: 2px;
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: repeat(10, 1fr);
    }

    .cell {
        width: 30px;
        height: 30px;
    }

    #quiz-container {
        width: 90%;
        margin-top: 30px;
    }

    #options {
        grid-template-rows: repeat(4, 1fr);
        grid-template-columns: 1fr;
    }

    .option {
        padding: 8px;
        font-size: 12px;
    }

    h1 {
        font-size: 24px;
        margin: 40px 0;
    }



    button img{
        width: 15px;

    }

    .player {
        width: 20px;
        height: 20px;
        z-index: 99;
    }
    .cell-number{
        font-size: 6px;
    }
    #sound-toggle {
        padding: 0;
        margin-left: 20px;
        width: 20px;
        height: 20px;
    }
}
