/* happy-meme-balls-styles.css */
#meme-balls-canvas {
    background: linear-gradient(to bottom, #87CEEB, #E0F7FA);
    width: 100%;
    height: 100%;
}

#game-container {
    position: relative;
    width: 360px;
    height: 640px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin: 0 auto;
}



#start-screen, #game-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
}

#game-over {
    display: none;
}

/* happy-meme-balls-styles.css */

#hmb-start-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
  
    width: 100%;
}

.hmb-title {
    font-family: 'Comic Neue', cursive;
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #000;
    position: static !important;   /* bỏ absolute */
}

.hmb-instructions {
    font-family: 'Comic Neue', cursive;
    font-size: 16px;
    color: #FFF;
    margin-bottom: 30px;
    width: auto;
    line-height: 1.4;
}

.hmb-button {
    background: linear-gradient(135deg, #FF8A65, #FF5252);
    border: none;
    border-radius: 25px;
    color: white;
    padding: 12px 30px;
    font-family: 'Comic Neue', cursive;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 5px;
}

.hmb-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

#hmb-game-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
}
#hmb-game-over h1.hmb-title {
    position: static !important;   /* bỏ absolute */
    margin: 0 0 20px 0;
    font-size: 32px;
    color: #FFD700;
    text-align: center;
    text-shadow: 2px 2px 0 #000;
}
#hmb-final-score {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}


#hmb-score-display {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Comic Neue', cursive;
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    text-shadow: 2px 2px 0 #000;
    z-index: 10;
}

#meme-balls-canvas {
    display: none;
   
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
#player {
    position: absolute;
    width: 50px;      /* kích thước quả bóng */
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff; /* nền trắng để không bị lộ khoảng trống */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 4px;
    background-color: #FFD700;
    border: 1px solid #FF5252;
  }
  
  #player img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ảnh vừa khít trong vòng tròn, không cắt */
  }
  