*{
    padding: 0;
    margin: 0;
}
html, body {
    touch-action: pan-x pan-y; /* Disables pinch and other gestures */
    overflow: hidden; /* Prevents viewport scrolling */
    
  }
#bgContainer{
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: none;
}
#bgContainer > img{
    width: 100%;
    height: 100%;
}
.blurOverlay{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    backdrop-filter: blur(3px);
}

#header {
    width: 100%;
    height: 7vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: fixed;
    background: white;
}
#header > img {
    width: 60%;
}
@font-face {
    font-family: HelveticaNeueLTStd57Condensed;
    src: url("./font/HelveticaNeueLTStd57Condensed.otf");
}

#ui-screen-1{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.heading{
    font-family: HelveticaNeueLTStd107ExtraBlackCondensed;
    color: white;
    text-align: center;
    font-size: 5vh;
}
.sub-heading{
    font-family: HelveticaNeueLTStd57Condensed;
    color: white;
    text-align: center;
    font-size: 3.4vh;
}
@font-face {
    font-family: HelveticaNeueLTStd107ExtraBlackCondensed;
    src: url("./font/HelveticaNeueLTStd107ExtraBlackCondensed.otf");
}

#button-bottom-corner{
    position: absolute;
    top: 93%;
    right: -7%;
    height: 9vh;
}
#button-top-left{
    position: absolute;
    top: -9%;
    left: -14%;
    height: 9vh;
}
#button-top-right{
    position: absolute;
    height: 9vh;
    top: -6%;
    right: -7%;
}
#button-topleft-corner{
    position: absolute;
    top: -7%;
    left: -14%;
    height: 9vh;
}
#button-bottomright-corner{
    position: absolute;
    bottom: -6%;
    right: -7%;
    height: 9vh;
}
#audio-panel-container{
    position: fixed;
    bottom: 2%;
    height: 5vh;
    width: 58vh;
    max-width: 90vw;
    transform: translateX(-50%);
    left: 50%;
    z-index: 1;
}
#audio-panel{
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5vh;
    height: 5vh;
}
#audio-panel > img{
    width: 50%;
}

#ui-screen-2{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
#start-button{
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 12vh;
    height: 4vh;
    text-align: center;
    font-family: HelveticaNeueLTStd107ExtraBlackCondensed;
    width: 21vh;
    height: 8vh;
    text-align: center;
    font-size: 4vh;
    padding-top: 0.9vh;
}

@font-face {
    font-family: HelveticaNeueLTStd77BoldCondensed;
    src: url("./font/HelveticaNeueLTStd77BoldCondensed.otf");
}
#sub-heading-1{
    color: #BBBBBB;
    opacity: 0.7;
    font-family: HelveticaNeueLTStd77BoldCondensed;
    top: 2vh;
    position: relative;
    font-size: 2.2vh;
}
#sub-heading-2{
    color: #BBBBBB;
    opacity: 0.7;
    font-family: HelveticaNeueLTStd57Condensed;
    font-size: 2vh;
    text-align: center;
}
#ui-screen-3{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
.form-container{
    display: flex;
    flex-direction: column;
    row-gap: 1.7vh;
    position: relative;
    bottom: 5vh;
}
#submit-button{
    background: black;
    color: white;
    font-family: HelveticaNeueLTStd107ExtraBlackCondensed;
    width: 31vh;
    height: 7vh;
    text-align: center;
    font-size: 3.5vh;
    border: 1px grey solid;
    position: relative;
    bottom: 5vh;
    padding-top: 0.9vh;
    transition: opacity 0.3s ease-in;
}
#submit-button:disabled{
    opacity: 0.5;
}
input:focus-visible{
    outline:none
}
@font-face {
    font-family: HelveticaNeueLTStd47LightCondensed;
    src: url("./font/HelveticaNeueLTStd47LightCondensed.otf");
}
input{
    background-color: transparent;
    border: 1px white solid;
    font-family: HelveticaNeueLTStd47LightCondensed;
    font-size: 3vh;
    width: 27vh;
    height: 6vh;
    color: white;
    text-align: center;
    padding-left: 2vh;
    padding-right: 2vh;
    padding-top: 0.9vh;
}
input::placeholder{
    text-align: center;
    font-size: 3vh;
    font-family: HelveticaNeueLTStd47LightCondensed;
}
#ui-screen-4{
    position: fixed;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
#ui-screen-5{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
#wear-collection{
    display: flex;
    column-gap: 10vh;
}
.image-container{
    display: flex;
    flex-direction: column;
    row-gap: 2vh;
    justify-content: flex-start;
    background-image: url("https://questforelegance.wavelaps.com/Images/bgbar.webp");
    background-position: center;
    background-repeat: repeat-y;
    background-size: 100%;
    height: 42vh;
}
#correct-guess-screen{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
#wrong-guess-screen{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

#correct-pop-screen{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
#wrong-pop-screen{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
#replay-button{
    background: black;
    color: white;
    font-family: HelveticaNeueLTStd107ExtraBlackCondensed;
    width: 26vh;
    height: 10vh;
    text-align: center;
    font-size: 4vh;
    border: 1px grey solid;
    position: relative;
    bottom: 5vh;
    padding-top: 0.9vh;
}
#full-replay-button{
    background: black;
    color: white;
    font-family: HelveticaNeueLTStd67MediumCondensed;
    width: 26vh;
    height: 7vh;
    text-align: center;
    font-size: 3vh;
    border: 1px grey solid;
    position: relative;
    padding-top: 0.9vh;
}
#shop-style-button{
    background: black;
    color: white;
    font-family: HelveticaNeueLTStd67MediumCondensed;
    width: 37vh;
    height: 7vh;
    text-align: center;
    font-size: 3vh;
    border: 1px grey solid;
    position: relative;
    padding-top: 0.9vh;
}
#replay-pop-button{
    background: black;
    color: white;
    font-family: HelveticaNeueLTStd107ExtraBlackCondensed;
    width: 26vh;
    height: 10vh;
    text-align: center;
    font-size: 4vh;
    border: 1px grey solid;
    position: relative;
    bottom: 5vh;
    padding-top: 0.9vh;
}
#instruction-screen{
    position: fixed;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 58vh;
    height: 65vh;
    max-width: 90vw;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5%;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
#camera-feed{
    position: fixed;
    top: 0;
    object-fit: cover;
}
canvas{
    position: fixed;
    top: 0;
}
.overlay{
    z-index: 1;
    position: absolute;
    width: 10vh;
}
.overlay-container{
    display: flex;
    transition: background-color 0.3s ease-in;
    
}
.correct-overlay{
    background-color: rgba(0, 255, 0, 0.5);
}
.wrong-overlay{
    background-color: rgba(255, 0, 0, 0.5);
}

#video-player-container{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    flex-direction: column;
    row-gap: 4vh;
    transition: all 0.3s ease-in;
}

#video-player-container > video {
    border-radius: 4vw;
    max-width: 77vw;
    max-height: 50vh;
    transition: all 0.3s ease-in;
    margin-top: 7vh;
}

#playbutton{
    position: absolute;
    background: transparent;
    border: 0;
    width: 8vh;
    height: 8vh;
    padding-top: 0.9vh;
}
#playbutton > img{
    width: 100%;
    height: 100%;
}

#claim-reward-button{
    /* display: none; */
    /* position: fixed; */
    bottom: 23%;
    background: black;
    color: white;
    height: 7vh;
    width: 45vh;
    max-width: 85vw;
    border: 0;
    font-family: HelveticaNeueLTStd67MediumCondensed;
    font-size: 2.6vh;
    padding-right: 5vh;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    padding-top: 0.9vh;
    pointer-events: none;
}

#play-anotherclue-button{
    /* display: none; */
    /* position: fixed; */
    bottom: 13%;
    background: black;
    color: white;
    height: 7vh;
    width: 33vh;
    max-width: 85vw;
    border: 0;
    font-family: HelveticaNeueLTStd67MediumCondensed;
    font-size: 2.6vh;
    padding-right: 5vh;
    opacity: 0;
    transition: opacity 0.3s ease-in;
    padding-top: 0.9vh;
    pointer-events: none;
}

@font-face {
    font-family: HelveticaNeueLTStd67MediumCondensed;
    src: url("./font/HelveticaNeueLTStd67MediumCondensed.otf");
}

#claim-reward-button > img{
    height: 35%;
    position: relative;
    left: 9%;
}


#play-anotherclue-button > img{
    height: 30%;
    position: relative;
    left: 12%;
}
button{
    transition: scale 0.3s ease-in;
}
button:active{
    scale: 0.7;
}
#description > p > strong{
    font-family: HelveticaNeueLTStd107ExtraBlackCondensed;
}