body {
    font-family: Arial, sans-serif;
    background: url('background-image.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

#game-container {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

#money-display, #prestige-display, #click-section, #shop, #share-text {
    margin-bottom: 20px;
}

#money-display, #prestige-display {
    font-size: 24px;
}

#rank {
    margin-left: 10px;
    font-size: 20px;
    animation: rankAnimation 1s forwards;
}

@keyframes rankAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

#click-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#click-button, #upgrade-click-button, #prestige-button {
    padding: 10px;
    background-color: #00796b;
    color: white;
    border: none;
    cursor: pointer;
    margin: 5px;
    border-radius: 5px;
}

#click-button:hover, #upgrade-click-button:hover, #prestige-button:hover {
    background-color: #004d40;
}

#garden-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#garden {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
    background-color: #81c784;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #00796b;
    box-shadow: 0 0 10px #000;
}

.garden-box {
    width: 50px;
    height: 50px;
    background-color: #388e3c;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2e7d32;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 0 5px #000;
}

.garden-box .level {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    padding: 2px;
    border-radius: 2px;
}

.plant {
    width: 30px;
    height: 30px;
}

#shop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#shop button {
    margin: 5px;
    padding: 10px;
    background-color: #00796b;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 5px #000;
}

#shop button:hover {
    background-color: #004d40;
}

#share-text {
    font-size: 16px;
}

#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff0;
    animation: fall 2s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}
