body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #fde9eb; /* Soft pink background */
    text-align: center;
    margin: 0;
    padding: 0;
}

#game-container {
    max-width: 500px;
    margin: 50px auto;
    background-color: #fff; /* White container */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2); /* Soft shadow */
}

h1 {
    font-size: 36px;
    color: #ff6699; /* Bright pink */
    margin-bottom: 20px;
}

.word-display {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 15px 10px; /* Add more padding */
    background-color: #ffccff; /* Light purple */
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1); /* Soft shadow */
    animation: pulse 1s infinite alternate; /* Add pulse animation */
}

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

.word-input {
    width: 70%;
    padding: 10px;
    margin-bottom: 20px; /* Increase margin */
    border: 2px solid #ff66b3; /* Light pink border */
    border-radius: 25px; /* Rounded border */
    font-size: 18px;
    outline: none; /* Remove blue outline */
}

.submit-btn {
    background-color: #ff66b3; /* Light pink */
    color: #fff;
    border: none;
    padding: 12px 25px; /* Increase padding */
    font-size: 18px;
    border-radius: 25px; /* Rounded border */
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth transition */
}

.submit-btn:hover {
    background-color: #ff80cc; /* Lighter pink on hover */
}

.feedback {
    font-size: 20px;
    color: #ff6699; /* Bright pink */
    margin-top: 15px; /* Add margin */
}

.info {
    display: flex;
    justify-content: space-between;
    margin-top: 30px; /* Add margin */
}

.strikes, .timer {
    font-size: 18px;
    color: #ff6699; /* Bright pink */
}

.hint {
    font-size: 16px;
    color: #0099ff; /* Blue */
    margin-top: 10px;
}
