body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f8ff;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    font-size: 48px;
    margin-top: 20px;
    padding: 0 10px;
}

.game-container {
    text-align: center;
    background-color: #3fc0ef;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 1000px;
    box-sizing: border-box;
    margin-top: 20px;
}

#fruit-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.fruit {
    width: 80px;
    height: 80px;
    font-size: 40px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#question {
    font-size: 20px;
    margin-bottom: 10px;
}

#result {
    margin-top: 20px;
    font-size: 28px;
}

#answer {
    width: 80%;
    padding: 10px;
    font-size: 20px;
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    font-size: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

#stars {
    margin-top: 20px;
}

.star {
    font-size: 30px;
    margin: 0 5px;
    color: gold;
}

.trademark-logo {
    position: fixed;
    bottom: 5px;
    right: 10px;
    width: 80px;
    height: auto;
    opacity: 0.8;
    z-index: 1000;
}

.logo {
    position: absolute;
    top: 10px;
    width: 80px;
    height: auto;
    z-index: 10;
}

.left-logo {
    left: 10px;
}

.right-logo {
    right: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 22px;
        margin-top: 15px;
    }

    .game-container {
        width: 95%;
        padding: 15px;
    }

    .fruit {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    #question {
        font-size: 18px;
    }

    #result {
        font-size: 22px;
    }

    #answer {
        width: 90%;
        font-size: 18px;
    }

    button {
        font-size: 18px;
        padding: 8px 16px;
    }

    .logo {
        width: 50px;
        top: 5px;
    }

    .trademark-logo {
        width: 60px;
        bottom: 5px;
    }

    .star {
        font-size: 24px;
    }
}
