.instructions {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.difficulty-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.difficulty-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.difficulty-btn.active {
    background: rgba(255, 255, 255, 0.4);
    font-weight: bold;
}

.game-container {
    position: relative;
    margin: 20px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
}

.game-container canvas {
    background-color: #f8f9fa;
    display: block;
    margin: auto;
    max-width: 700px;
    width: 100%;
}

.night .game-container canvas{
    background-color: #555;
}

.controls {
    text-align: center;
}

.controls select{
    height: 1.5rem;
    line-height: 1.5rem;
    background-color: #2196F3;
    color: #fff;
    border: 0;
    width: 4.5rem;
    border-radius: 4px;
    text-align: center;
    padding: 0 0.2rem;
    vertical-align: bottom;
}

.controls button {
    border: none;
    color: #fff;
    height: 1.5rem;
    line-height: 1.5rem;
    padding: 0 0.5rem;
    text-align: center;
    font-size: 0.7rem;
    cursor: pointer;
    border-radius: 4px;
    background: #2ecc71;
}

#showAnswer{
    background: #e74c3c;
}

.status-container {
    padding: 0.75rem 1.5rem;
    margin: 0.5rem 0;
}

.status {
    font-size: 0.7rem;
    text-align: center;
}

@media screen and (max-width: 1182px){
    .game-container{
        margin-top: 0px;
    }
}

@media screen and (max-width: 550px){
    .game-container{
        margin-top: 0px;
    }
}