*{
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: NotoSansBold;    
}
#videoContainer{
    width: 1024px;
    height: 576px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#videoCanvas{
    position: relative;
    width: 100%;
}
#gameBox{
    width: 100%;
    display: block;
}
#gameLock{
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: 0 0;
}
#tileCanvas{
    left: 0;
    top: 0;
    display: block;
    transform-origin: 0 0;
    position: absolute;
    width: fit-content;
}
#puzzle{
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    border-radius: 10px;
    width: fit-content;
}
#Exit{
    position: absolute;
    top: 15px;
    right: 15px;
}
#FullScreen{
    position: absolute;
    bottom: 15px;
    right: 15px;    
}
#player{    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: fit-content;
    border-radius: 10px;
    background: #FFFFFF;

}
#playerUI{    
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;    
}
#playerUIBG{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-image: linear-gradient(0deg, #000000CC 0%, #000000CC 10%, #00000000 50%, #00000000 100%);
}
#playerTimeline{
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#playerTooltip{
    width: 100%;
    height: 30px;
    position: relative;
}
.tooltip{
    display: none;
    font-family: Arial;
    font-size: 12px;
    background: #000000;
    color: #FFFFFF;
    border-radius: 5px;
    padding: 5px;
    padding-top: 7px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: auto;
}
#playerControls{
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 15px;
}
.ctrl{
    display: flex;
    align-items: center;
    width: 33%;
    user-select: none;
}
.time{
    color: #FFFFFF;
    padding-left: 10px;
    font-family: Arial;
    font-size: 14px;
    user-select: none;
}
#timeline{
    width: 97%;
    height: 1px;
    margin-top: -2;
    background: #CCCCCC;
    position: absolute;
}
#audioBox{
    width: 100px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#playerVolline{
    width: 100%;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#volline{
    width: 90%;
    height: 2px;
    background: #CCCCCC;
    position: absolute;
}
.sliderAudio {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 15rem;
    border: 0;
    outline: none;
}
.sliderAudio::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
}
.slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 15rem;
    border: 0;
    outline: none;
}
.slider::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FF0000;
    cursor: pointer;
}
.coverAll{
    width: 100%;
    height: 100%;
    background: #00000000;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}
.inst{
    padding: 20px;
    width: fit-content;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #00000099;
    position: absolute;
    transform-origin: 50% 50%;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0);
}
.title{
    font-size: 20px;
    color: #008cff;
    margin-bottom: 20px;
}
.detail{
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
}
.button{
    background: #008cff;
    color: #FFFFFF;
    font-size: 16px;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.match{
    padding: 20px;
    width: fit-content;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #00000099;
    position: absolute;
    transform-origin: 50% 50%;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0);
}
.input{
    width: 350px;
    height: 30px;
    border-radius: 5px;
    font-family: Arial;
    margin-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
    border: 1px solid #CCCCCC;  
    outline: none;
}
.error{
    color: #FF0000;
    font-family: Arial;
    font-size: 14px;
    width: 350px;
    height: 20px;
    text-align: center;
    margin-bottom: 10px;
}
@font-face {
    font-family: NotoSansBold;
    src: url(../fonts/NotoSansBold.ttf);
}