MooMoo.io NextGen styles

Makes MooMoo.io's styles more op

// ==UserScript==
// @name        MooMoo.io NextGen styles
// @match       *://*.moomoo.io/*
// @grant       none
// @version     0.0.1
// @author      TNT U ARE SOOOOO BRUH
// @description Makes MooMoo.io's styles more op
// @icon        https://moomoo.io/img/favicon.png?v=1
// @grant       none
// @run-at      document_idle
// @namespace   nothing
// @license     MIT
// ==/UserScript==

let eMM=` <style>

/* ==% MAIN MENU EDITS %== */

/* % MENUCARD STYLES % */
#setupCard {
    vertical-align: top;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    margin: 5px;
    display: inline-block;
    padding: 18px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0px 0px 17px 5px rgb(255 255 255);
    transition: transform 0.5s ease 0s;
    overflow: scroll;
    position: relative;
}

#guideCard {
    vertical-align: top;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    margin: 5px;
    display: inline-block;
    padding: 18px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0px 0px 17px 5px rgb(255 255 255);
    transition: transform 0.5s ease 0s;
    overflow: scroll;
    position: relative;
}

/* % GAME NAME CSS %*/
#gameName {
    font-size: 170px;
    margin-bottom: -25px;
    text-shadow: 0px 0px 31px #fff;
    color: #fff;
}

/* Promo Img */
#promoImgHolder {
    vertical-align: top;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    margin: 5px;
    display: inline-block;
    padding: 18px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0px 0px 17px 5px rgb(255 255 255);
    transition: transform 0.5s ease 0s;
    overflow: scroll;
    position: relative;
}

/* % OTHER VISUALS % */
.menuCard {
    vertical-align: top;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    margin: 5px;
    display: inline-block;
    padding: 18px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0px 0px 17px 5px rgb(255 255 255);
    transition: transform 0.5s ease 0s;
    overflow: scroll;
    position: relative;
}

#guideCard::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.skinColorItem {
    height: 25px;
    width: 25px;
    border: 4px solid rgb(0 0 0 / 24%);
    transition: .5s;
}

.menuButton {
    border-radius: 20px;
}

/* ==% GAME UI %== */
#storeHolder {
    height: 422px;
    width: 400px;
    background-color: rgb(0 85 27 / 58%);
    border-radius: 15px;
}

.storeTab {
    background-color: rgb(0 213 75 / 66%);
    border-radius: 10px;
}

#chatBox {
    background-color: rgb(0 119 77 / 56%);
    border-radius: 20px;
    text-align: center;
}

#scoreDisplay {
    border-radius: 15px;
    background-color: rgb(4 35 95 / 41%);
}

/* % CLAN HOLDER % */
#allianceHolder {
    border-radius: 10px;
    background-color: rgb(255 136 0 / 55%);
    backdrop-filter: blur(10px);
}

.allianceButtonM {
    background-color: rgb(132 77 0 / 52%);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

#allianceInput {
    background-color: rgb(255 165 0 / 57%);
    border-radius: 10px;
    border-color: none;
    border: 0;
    backdrop-filter: blur(10px);
}

/* % AGE BAR % */
#ageBar {
    background: rgb(2 255 133 / 65%);
    border-radius: 10px;
    padding: 1px;
    width: 320px;
    height: 15px;
    display: inline-block;
    overflow: hidden;
}

#ageBarBody {
    background: #f3c42a;
    border-radius: 5px;
    width: 0;
    height: 100%;
    transition: width 0.8s ease-in-out, background-color 0.3s ease;
}

/* % LEADERBOARD % */
#leaderboard {
    color: #fff;
    width: 220px;
    background: rgb(0 20 163 / 48%);
    border-radius: 15px;
    letter-spacing: 0.5px;
}

/* % ITEM INFO % */
#itemInfoHolder {
    background-color: rgb(0 20 163 / 48%);
    max-width: 250px;
    border-radius: 15px;
}

/* % KILL COUNT % */
#killCounter {
    background-color: rgb(0 20 163 / 48%);
    border-radius: 25px;
}

/* % MINIMAP % */
#mapDisplay {
    background-color: rgb(4 35 95 / 41%);
    border-radius: 15px;
}

/* % RESOURCE DISPLAYS % */
#foodDisplay {
    background-color: #fb6565;
    border-radius: 15px;
}

#woodDisplay {
    background-color: #669f45;
    border-radius: 15px;
}

#stoneDisplay {
    background-color: #a0a0a0;
    border-radius: 15px;
}

#scoreDisplay {
    background-color: #cdbb45;
    border-radius: 15px;
}

/* % OTHER VISUALS % */
#storeButton,
#allianceButton,
#chatButton,
.actionBarItem {
    border-radius: 15px;
    background: rgb(122 3 169 / 47%);
}


</style>`

const sE = document.createElement('style');
sE.innerHTML = eMM;

mainMenu.appendChild(sE);