body {
    font-family: 'Poppins', sans-serif;
    background-color: #131d32;
}

/* Custom focus style for better accessibility and design */
.custom-focus:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.5);
}

#game-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-bottom: 1rem;
}

/* Styles for the new heart icon lives display */
.game-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* Space between hearts */
}

.game-icon {
    width: 22px;  /* Adjust size as needed */
    height: 22px; /* Adjust size as needed */
}

#help-icon {
    background-color: #444;
    color: #f5f5f7;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative; /* Needed for tooltip positioning */
}

#stats-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

#stats-container>div {
    background-color: #1e293b;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

#go-back-button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#go-back-button img {
    width: 33px;
    height: 33px;
}

.lock-icon {
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
;
}