/* General Page Styling */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #ffdd67;
    color: #444;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background-color: #ffdd67;
    color: #333;
}

h1 {
    font-size: 2.5rem;
}

.game-container {
    padding: 10px;
}

/* Game Area */
#game-area {
    position: relative;
    width: 80%;
    height: 350px;
    margin: 10px auto;
    background-color: #e3f6f5;
    border: 2px dashed #ffa500;
    overflow: hidden;
    border-radius: 10px;
}

.balloon {
    width: 50px;
    height: 80px;
    background-color: #ff6666;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.balloon:hover {
    transform: scale(1.1);
    background-color: #ff8888;
}

/* Different balloon positions on the screen */
#balloon1 {
    top: 10%;
    left: 10%;
    background-color: #f78c6c;
}

#balloon2 {
    top: 20%;
    left: 40%;
    background-color: #56c5ff;
}

#balloon3 {
    top: 60%;
    left: 70%;
    background-color: #f1c40f;
}

#balloon4 {
    top: 40%;
    left: 30%;
    background-color: #2ecc71;
}

#balloon5 {
    top: 70%;
    left: 50%;
    background-color: #ff66cc;
}

/* Scoreboard styling */
.score-board {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #333;
}

/* Fun button styling */
button {
    padding: 5px 20px;
    font-size: 1.2rem;
    background-color: #ffdd67;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #ffcc33;
}

/* Hidden Love Message */
.hidden-message {
    display: none;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ff3e96;
    transition: opacity 1s ease-in-out;
}

.hidden-message p {
    margin: 0;
    animation: fadeIn 3s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Footer styling */
footer {
    padding: 20px;
    background-color: #ffdd67;
    margin-top: 50px;
}
