#gamebox{
    position: relative;
}
#gamebox #topbar {
    display: flex;
    justify-content: space-between;
    color: #fff;
}
#gamebox #mainctn{
    width: 100%;
    position: relative;
}
#timer, #target{
    color: red;
    font-weight: bold; 
}
.tmsec{
    color: red;
    font-weight: bold; 
}
#loading img{
    height: 100%;
}
#maze{
    float: left;
    background: #000;
    border: 1px solid #eee;
    border-right: none;
}
canvas {
    display: block;
}
#gamebox #sidebar {
    float: left;
    width: 210px;
    height: 100%;
    background: #111;
    border: 1px solid #eee;
    border-left: none;
}
#gameover {
    display: none;
    top: 0px;
    margin: 0 auto;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    position: absolute;
    background-color: rgba(22, 28, 28, 0.95);
    z-index: 2;
}
#overmsg {
    display: none;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial;
    font-size: 36px;
    color: #ccc;
}
#restartbtn {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    margin: auto;
    background-color: #00BB00;
    font-family: Arial;
    color: red;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
}
#cheerbtn{
    display: none;
    position: absolute;
    top: 0px;
    width: 100%;
    background: #fff;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 10px 0px;
    font-weight: bold;
    border: none;
    border-radius: 0px 0px 25px 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
#cheerCircleContainer{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}
#cheerCircleContainer img{
  width: 100%;
  height: 100%;
}
#cheerCircleContainer .cheer-main{
  background-size: cover;
  position: absolute;
}
#cheerCircleContainer .cheer-sub{
  background-size: cover;
  position: absolute;
}
