body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #000; /* Black background */
    overflow: hidden;
    font-family: Arial, sans-serif;
    position: relative;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

#enzo-image {
    width: 150px; /* Adjusted size */
    height: auto;
    margin-bottom: 10px;
}

#game-title {
    color: #90ee90; /* Light green color */
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(5, 60px);
    gap: 10px;
    margin-bottom: 20px;
}

.box {
    width: 60px;
    height: 60px;
    background-color: transparent; /* Transparent background */
    border: 2px solid #006400; /* Dark green border */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.5); /* Subtle green glow */
    animation: subtleGlow 3s infinite alternate; /* Reduced animation */
}

#suggest-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    color: #90ee90; /* Light green text */
    border: 2px solid #006400; /* Dark green border */
    border-radius: 10px; /* Curved borders */
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.5); /* Green glow */
    transition: background-color 0.3s ease, color 0.3s ease;
}

#suggest-button:hover {
    background-color: #006400; /* Dark green background on hover */
    color: #000; /* Black text on hover */
}

#buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

#telegram-button, #game-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    color: #90ee90; /* Light green text */
    border: 2px solid #006400; /* Dark green border */
    border-radius: 10px; /* Curved borders */
    box-shadow: 0 4px 8px rgba(0, 255, 0, 0.5); /* Green glow */
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none; /* Remove underline */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#telegram-button:hover, #game-button:hover {
    background-color: #006400; /* Dark green background on hover */
    color: #000; /* Black text on hover */
}

.suggestion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1s infinite;
    pointer-events: none;
}

.suggestion-overlay img {
    width: 40px; /* Set the size of your image */
    height: 40px; /* Set the size of your image */
}

@keyframes subtleGlow {
    from {
        box-shadow: 0 0 4px rgba(0, 255, 0, 0.5);
    }
    to {
        box-shadow: 0 0 12px rgba(0, 255, 0, 0.5);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}