:root {
    --primary-color: #4a3728;
    --accent-color: #ffd700;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    overflow: hidden;
}

img:not([src]),
img[src=""] {
    opacity: 0;
}

#game-container {
    width: 100cqw;
    height: 100cqh;
    container-type: size;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100cqw;
    height: 100cqh;
    pointer-events: none;
}

.interactive {
    pointer-events: auto;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100cqw;
    height: 100cqh;
    object-fit: cover;
    object-position: center;
}

#game-title {
    position: absolute;
    top: 4cqh;
    left: 50%;
    transform: translateX(-50%);
    width: 35cqw;
    height: auto;
    animation: danceIdle 4s infinite ease-in-out;
}

#start-button {
    position: absolute;
    bottom: 10cqh;
    left: 50%;
    transform: translateX(-50%);
    width: 17cqw;
    height: auto;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    animation: bounceIdle 2s infinite ease-in-out;
}

#start-button-image {
    width: 100%;
    height: auto;
    transition: transform 0.2s ease-in-out;
}

#start-button:hover #start-button-image {
    transform: scale(1.1);
}