@font-face {
    font-family: 'mainfont';
    src: url('/fonts/rainyhearts.ttf');
}

body {
    
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100vh;
    align-items: center;
    background: #f5eaff;
    font-family: 'mainfont', arial ;
    background-image: url(assets/purplestars.gif);
    background-repeat: repeat;

}

* {
    cursor: url(https://cur.cursors-4u.net/cursors/cur-9/cur267.cur), auto !important;
}
.bedroom-header{
    margin-top: 1.2rem;
}
.bedroom-header-img{
    width: 720px;
}


.container{
    width: 85vw;
    margin: 0 auto;
    overflow: auto;
}

.game-container {
    position: relative;
    width: 720px;
    height: auto;
    margin: 0 auto;
    border: 4px solid #e0c3fc;
    box-shadow: 0 0 10px #e0c3fc;
    border-radius: 8px;
}

.room-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.hotspot {
    position: absolute;
    cursor:url(https://cur.cursors-4u.net/cursors/cur-9/cur266.cur), auto !important;

}


.stairs {
    left: 835px;
    top: 250px;
    width: 70px;
    height: 120px;
}

.speech-bubble {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff8ff;
    border: 2px solid #caa9ff;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 16px;
    color: #6b3fa0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    max-width: 80%;
    text-align: center;
}


.hotspot.bed {
    left: 268px;
    top: 134px;
    width: 160px;
    height: 120px;
}

.hotspot.stairs {
    left: 485px;
    top: 110px;
    width: 70px;
    height: 160px;
}


.hotspot.computer {
    left: 10px;
    top: 270px;
    width: 160px;
    height: 120px;
}

.hotspot.dog {
    position: absolute;
    z-index: 100;
    left: 230px;
        top: 260px;
        width: 50px;
        height: 40px;
}

.hotspot.lamp {
    left: 420px;
        top: 160px;
        width: 60px;
        height: 100px;
}

.hotspot.tv {
    left: 570px;
        top: 180px;
        width: 90px;
        height: 160px;
}

.hotspot.bookshelf {
    left: 650px;
        top: 180px;
        width: 100px;
        height: 200px;
}

.hotspot.sofa {
    left: 450px;
        top: 280px;
        width: 160px;
        height: 120px;
}

.hotspot.window {
left: 40px;
    top: 90px;
    width: 200px;
    height: 140px;
}

.dog-gif{
    position: absolute;
    left: 245px;
    top: 275px;
    transform: scale(1.8);
    image-rendering: pixelated;
   
}

.credits{
    width: 720px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #F6F0FF;
  
}

.credits small{
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}


/* music toggle*/
.music-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ffe6ff;
    border: 2px solid #d5a6e2;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    padding: 6px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-toggle:hover {
    transform: scale(1.05);
}

.music-toggle img {
    width: 24px;
    height: 24px;
}



/* mobile warning */
.mobile-warning {
  display: none;
  text-align: left;
  padding: 2rem;
  margin: 0 auto;
  color: #6b3fa0;
  width: 100%;
  background: #fff0ff;
  font-size: 20px;
  line-height: 1.6;
  overflow: hidden;
  
  
}


@media screen and (max-width: 768px){
  .mobile-warning {
    display: block;
  }
  
  .bedroom-header{
    display: none;
  }
  
  .credits{
    display: none;
  }

  #gameContainer {
    display: none;
  }
}






