canvas {
    display: block;
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    background-color: #000;
    font-family: 'Press Start 2P', cursive;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.wrapper {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

.game-container {
    position: relative;
    width: 100%;
    padding-top: 140%; /* Aspect ratio for the game canvas */
    height: 0;
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
}

.hidden {
    display: none;
}
#gameTitle {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 4px #000000;
    text-align: center;
}
#gameOverScreen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.scoreboard-container {
    background-color: #F7E8A3;
    padding: 20px;
    border: 2px solid #000;
    border-radius: 10px;
    color: #000;
}
.buttons button {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border: 2px solid #000;
    background-color: #DEB887;
    border-radius: 5px;
}
#tapToBegin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 4px #000000;
    pointer-events: none;
}

/* New Styles */
#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loading-bar-container {
    width: 80%;
    max-width: 400px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 15px;
    overflow: hidden;
}

#loading-bar {
    height: 100%;
    width: 0%;
    background-color: #fff;
    transition: width 0.1s linear;
}

.ad-slot {
    display:flex;
    justify-content:center;
    align-items:center;
    margin:10px
}

.about-game {
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #1a1a1a;
    border: 2px solid #fff;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.about-game h2 {
    font-size: 24px;
    text-shadow: 2px 2px 4px #000000;
}

.about-game p {
    font-size: 14px;
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border-top: 2px solid #fff;
}
#loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#loading-text {
    color: white;
    font-size: 24px;
    text-shadow: 2px 2px 4px #000000;
    margin-bottom: 20px; /* Add some space below the text */
}
#loading-info {
    color: white;
    font-size: 12px;
    text-shadow: 1px 1px 2px #000000;
    margin-top: 20px;
    text-align: center;
}