body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    background-color: rgb(212, 255, 203);
    padding-top: 150px;
}

#tree-facts-header {
    color: green;
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: bolder;
}

h1 {
    color: rgb(32, 184, 32);
    font-family: 'Times New Roman', Times, serif;
    font-size: 80px;
    font-weight: bold;
    text-align: center;
    margin-top: 75px;
}

ul {
    font-weight: bold;
    font-size: 20px;
}

#forest-image {
    border-color: rgb(255, 255, 255);
    border-width: 4px;
    border-style: solid;
    box-shadow: 10px 12px 18px rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 150px;
    left: -280px;
    width: 300px;
    transition: 0.6s ease;
    border-radius: 0 15px 15px 0;
}

#forest-image:hover {
    left: 0px;
    cursor: pointer;
}

#tree-button {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 148, 0);
    padding: 10px 20px;
    position: absolute;
    top: 20px;
    right: 20px;
    border: 2px solid white;
    border-radius: 8px;
    box-shadow: 8px 10px 16px rgba(0, 0, 0, 0.6);
}

#tree-button:hover {
    transform: scale(0.95);
    cursor: pointer;
}

#top-bar {
    background-color: rgb(0, 87, 0);
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

html {
    background-color: rgb(0, 204, 0);
    color: rgb(255, 255, 255);
    scroll-behavior: smooth;
}

#tree-facts, #game-header, #watering-can-counter, 
#gold-watering-can-counter, #giant-watering-can-counter, 
#forest-count-display, #universe-count-display, 
#portal-count-display, #heaven-count-display {
    color: green;
}


#world2-container {
    display: none;
    width: 100%;
    max-width: 500px;
}

#quasar-area {
    background-color: #000080;
    border: 5px solid #b9f2ff;
    box-shadow: 0 0 25px #b9f2ff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
}

@keyframes mirrorShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.mirror-shiny-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(90deg, #333 0%, #fff 50%, #333 100%);
    background-size: 200% 100%;
    animation: mirrorShimmer 4s infinite linear;
    color: black !important;
    border: 4px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 0 30px #ffffff;
    font-weight: bold;
    font-size: 18px;
    border-radius: 15px;
    text-transform: uppercase;
}

.mirror-shiny-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px #ffffff;
}