#frog-leap-game {
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
}

.game-board {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    background-image: url('../images/seven-rocks.png');
    background-size: cover;
    background-position: center;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 10px;
    width: 600px;
    height: 400px;
    position: relative;
}

.rock {
    width: 60px;
    height: 60px;
    margin: 5px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
}
.rock:nth-child(1) { left: 40px; bottom: 110px; }
.rock:nth-child(2) { left: 130px; bottom: 110px; }
.rock:nth-child(3) { left: 220px; bottom: 110px; }
.rock:nth-child(4) { left: 310px; bottom: 110px; }
.rock:nth-child(5) { left: 390px; bottom: 110px; }
.rock:nth-child(6) { left: 470px; bottom: 110px; }
.rock:nth-child(7) { left: 555px; bottom: 110px; }

.green-frog {
    position: absolute;
    bottom: 110px;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0);
}

.green-frog[data-index="0"] {
    left: 40px; /* First rock */
}
.green-frog[data-index="1"] {
    left: 130px; /* Second rock */
}
.green-frog[data-index="2"] {
    left: 220px; /* Third rock */
}

.brown-frog {
    position: absolute;
    bottom: 100px;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0); /* Brown tint for visibility */
}

.brown-frog[data-index="4"] {
    left: 390px; /* Fifth rock */
}
.brown-frog[data-index="5"] {
    left: 470px; /* Sixth rock */
}
.brown-frog[data-index="6"] {
    left: 555px; /* Seventh rock */
}

.frog-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.empty {
    background-color: transparent;
}

#reset-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

#reset-button:hover {
    background-color: #0056b3;
}

#message {
    font-size: 18px;
    margin-top: 10px;
}