/*========== GOOGLE FONTS ==========*/
        @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
        @import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans&display=swap");
        @import url("https://fonts.googleapis.com/css2?family=Cutive&display=swap");
        @import url("https://fonts.googleapis.com/css2?family=Buenard:wght@400..700&display=swap");
        @import url('https://fonts.googleapis.com/css2?family=Goldman&display=swap');

        /*========== VARIABLES CSS ==========*/
        :root {
            --base-color: hsl(59, 100%, 48%);
            --success-color: rgb(15, 193, 20);
            --progress-color: rgb(255, 167, 0);
            --energy-color: hsl(202.15deg 100% 50%);
            --danger-color: rgb(255, 0, 0);
            --base-text-color: #bfc0c2ff;
            --base-text-color-secondary: #a7a7a7;
            --base-text-color-2: #bfc0c2ad;
            --base-text-color-dark: #0e0e0eff;
            --base-padding: 12px;
            --base-border-radius: 3px;
            --base-border-light: 1px solid hsla(0, 0%, 20%, 1.00);
            --base-border-dark: 1px solid hsla(0, 0%, 12%, 1.00);
            --base-border-light-x2: 2px solid hsla(0, 0%, 20%, 1.00);
            --base-border-dark-x2: 2px solid hsla(0, 0%, 12%, 1.00);
            --disabled: hsl(59, 100%, 48%, 0.4);

            --body-color: hsla(0, 0%, 9%, 1.00);
            --header-color: hsla(0, 0%, 13%, 1.00);
            --sidebar-color: hsla(0, 0%, 13%, 1.00);
            --card-color-1: hsla(0, 0%, 13%, 1.00);
            --card-color-2: hsla(0, 0%, 14%, 1.00);
            --card-color-3: hsla(0, 0%, 17%, 1.00);
            --card-color-4: hsla(0, 0%, 20%, 1.00);
            --card-color-5: hsla(0, 0%, 23%, 1.00);

            --font-size-xsmall: 8px;
            --font-size-small: 10px;
            --font-size-medium-small: 12px;
            --font-size-medium: 14px;
            --font-size-medium-large: 16px;
            --font-size-large: 18px;
            --font-size-xlarge: 20px;
            --font-size-xxlarge: 22px;

            --font-weight-medium: 500;
            --font-weight-semi-bold: 600;
            --font-weight-bold: bold;

            --margin-bottom-5: 5px;
            --margin-bottom-10: 10px;
            --margin-bottom-15: 15px;
            --margin-bottom-20: 20px;

            --margin-top-5: 5px;
            --margin-top-10: 10px;
            --margin-top-15: 15px;
            --margin-top-20: 20px;


            --first-color: #fbff00ff;
            --text-color: #bfc0c2ff;
            --text-color-2: #bfc0c2ad;
            --padding: 15px;
            --border-radius: 6px;
            --border: 1px solid #444449ff;
            --border-color: #444449ff;


            --header-height: 3.5rem;
            --nav-width: 219px;

            /*========== Colors ==========*/
            --first-color-light: #F4F0FA;
            --title-color: #19181B;
            --text-color-light: #A5A1AA;
            --container-color: #FFFFFF;

            /*========== Font and typography ==========*/
            --body-font: 'Poppins', sans-serif;
            --normal-font-size: .938rem;
            --small-font-size: .75rem;
            --smaller-font-size: .75rem;

            /*========== Font weight ==========*/
            --font-medium: 500;
            --font-semi-bold: 600;

            /*========== z index ==========*/
            --z-fixed: 100;
        }


        /*========== BASE ==========*/
        /* Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: #bfc0c2ad var(--card-color-3);
        }

        /* Chrome, Edge, Safari */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--card-color-4);
        }

        ::-webkit-scrollbar-thumb {
            background: #bfc0c2ad;
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #969697ad;
        }

        *,
        ::before,
        ::after {
            box-sizing: border-box;
        }

        body {
            margin: var(--header-height) 0 0 0;
            padding: 0px;
            padding-top: 15px;
            font-family: var(--body-font);
            font-size: var(--normal-font-size);
            background-color: var(--body-color);
            color: var(--base-text-color);
            image-rendering: pixelated;
            image-rendering: crisp-edges;
        }

        p {
            color: var(--base-text-color);
        }

        h3 {
            margin: 0;
        }

        h6 {
            color: var(--base-text-color);
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /*========== HEADER ==========*/
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--card-color-2);
            z-index: 9998;
            border-bottom: 1px solid hsla(0, 0%, 19%, 1.00);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 70px;

        }

        .header__container {
            display: flex;
            align-items: center;
            justify-content: end;
            width: 100%;
            padding-right: 10px;
            height: 70px;
        }

        .header__img {
            width: 40px;
            height: 40px;
            border-radius: var(--base-border-radius);
            border: 2px solid var(--card-color-5);
            cursor: pointer;
        }

        .header__logo {
            color: var(--title-color);
            font-weight: var(--font-medium);
            display: none;
        }


        .header__icon,
        .header__toggle {
            font-size: 1.2rem;
        }

        .header__toggle {
            color: var(--title-color);
            cursor: pointer;
        }

        /*========== NAV ==========*/

        .show-nav-btn {
            opacity: 1;
        }

        .nav__ad-btn {
            border-top: 2px solid var(--card-color-5);
            background: var(--card-color-2);
            padding: 8px;
            width: 100%;
            height: 130px;
            position: relative;
            z-index: 999;
        }

        .nav__ad-btn-item {
            border: 2px solid var(--card-color-5);
            background: var(--card-color-3);
            padding: 8px;
            position: relative;
            margin-top: 6px;
            box-shadow: 0px 5px 0px #1c1c1c;
        }

        .nav__ad-btn-reward-box {
            display: flex;
            align-items: center;
            border: 1px solid var(--card-color-5);
            background: var(--card-color-5);
            width: 85px;
            min-width: 85px;
            height: 25px;
            position: absolute;
            top: 8px;
            right: 8px;
            border-radius: 3px;
        }

        .nav {
            position: fixed;
            top: 0;
            left: -100%;
            height: 100vh;
            padding: 1rem 1rem 0;
            background-color: var(--card-color-2);
            z-index: 9999;
            transition: .4s;
            border-right: 1px solid hsla(0, 0%, 19%, 1.00);
            width: 220px;
        }

        .nav__container {
            height: calc(100vh - 210px);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-bottom: 3rem;
            overflow: auto;
            scrollbar-width: none;
            margin-top: 0px;
            /* For mozilla */
        }

        /* For Google Chrome and others */
        .nav__container::-webkit-scrollbar {
            display: none;
        }

        .nav__logo {
            font-weight: var(--font-semi-bold);
            margin-bottom: 2.5rem;
        }

        .nav__list,
        .nav__items {
            display: grid;
        }

        .nav__list {
            row-gap: 2.5rem;
        }

        .nav__items {
            row-gap: 1.5rem;
        }

        .nav__subtitle {
            font-size: var(--normal-font-size);
            text-transform: uppercase;
            letter-spacing: .1rem;
            color: var(--text-color-light);
        }

        .nav__link {
            display: flex;
            align-items: center;
            color: var(--text-color);
        }

        .nav__link__side {
            padding-top: 12px;
        }

        .nav__link:hover {
            color: var(--first-color);
        }

        .nav__icon {
            font-size: 1.2rem;
            margin-right: .5rem;
        }

        .nav__name {
            font-size: var(--small-font-size);
            font-weight: var(--font-medium);
            white-space: nowrap;
        }

        .nav__logout {
            margin-top: 5rem;
        }

        /* Dropdown */
        .nav__dropdown {
            overflow: hidden;
            max-height: 21px;
            transition: .4s ease-in-out;
        }

        .nav__dropdown-collapse {
            background-color: var(--first-color-light);
            border-radius: .25rem;
            margin-top: 1rem;
        }

        .nav__dropdown-content {
            display: grid;
            row-gap: .5rem;
            padding: .75rem 2.5rem .75rem 1.8rem;
        }

        .nav__dropdown-item {
            font-size: var(--smaller-font-size);
            font-weight: var(--font-medium);
            color: var(--text-color);
        }

        .nav__dropdown-item:hover {
            color: var(--first-color);
        }

        .nav__dropdown-icon {
            margin-left: auto;
            transition: .4s;
        }

        /* Show dropdown collapse */
        .nav__dropdown:hover {
            max-height: 100rem;
        }

        /* Rotate icon arrow */
        .nav__dropdown:hover .nav__dropdown-icon {
            transform: rotate(180deg);
        }

        /*===== Show menu =====*/
        .show-menu {
            left: 0;
        }

        .nav__logo-img {
            margin-left: 2px;
        }


        /* ========== MEDIA QUERIES ==========*/
        /* For small devices reduce search*/

        @media screen and (min-width: 1200px) {

            .nav__ad-btn {
                opacity: 0;
                border-top: 2px solid var(--card-color-5);
                background: var(--card-color-2);
                padding: 8px;
                width: 100%;
                height: 130px;
                position: relative;
                z-index: 999;
            }

            .nav__logo-img {
                margin-left: -1px;
            }


            body {
                padding: 1rem 12px 0 6rem;
            }

            .header__toggle {
                display: none;
            }

            .header__logo {
                display: block;
            }

            .nav {
                left: 0;
                padding-left: 15px;
                padding-top: 1rem;
                width: 70px;
                /* Reduced navbar */
            }

            .nav__items {
                row-gap: 1.7rem;
            }

            .nav__icon {
                font-size: 1.3rem;
            }

            /* Element opacity */
            .nav__logo-name,
            .nav__name,
            .nav__subtitle,
            .nav__dropdown-icon {
                opacity: 0;
                transition: .3s;
            }


            /* Navbar expanded */
            .nav:hover {
                width: 220px;
            }

            .nav:hover .nav__ad-btn {
                opacity: 1;
            }



            .nav:hover .nav__logo-name {
                opacity: 1;
            }

            .nav:hover .nav__subtitle {
                opacity: 1;
            }

            .nav:hover .nav__name {
                opacity: 1;
            }

            .nav:hover .nav__dropdown-icon {
                opacity: 1;
            }

            .nav:hover .nav__ad-btn {
                opacity: 1;
            }
        }


        .page-title {
            font-size: var(--font-size-xlarge);
            font-weight: var(--font-weight-bold);
            color: var(--base-text-color);
        }

        .card-title {
            font-size: 16px;
            font-weight: 700;
        }

        .base-card {
            background-color: var(--card-color-2);
            border-radius: var(--base-border-radius);
            margin-bottom: var(--margin-bottom-20);
        }

        .base-card-border {
            background-color: var(--card-color-2);
            border-radius: var(--base-border-radius);
            margin-bottom: var(--margin-bottom-20);
            border: var(--base-border-light);
        }

        .base-card-inner {
            padding: var(--base-padding);
        }

        .base-card-head {
            padding: var(--base-padding);
            display: flex;
            align-items: center;
        }

        .base-card-title {
            font-size: var(--font-size-large);
            font-weight: var(--font-weight-semi-bold);
            color: var(--base-text-color);
        }




        /*========== Main Room CSS ==========*/
        .button-normal {
            overflow: hidden;
            padding-left: 10px;
            padding-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #6d6f00;
            width: auto;
            height: 32px;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 500;
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            box-shadow:
                inset 0 30px 30px -15px rgba(255, 255, 255, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 1px 20px rgba(0, 0, 0, 0),
                0 3px 0 #737500,
                0 3px 2px rgba(0, 0, 0, 0.2),
                0 5px 10px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(0, 0, 0, 0.1);
            background: #fbff00ff;
            color: #1a1a1a;
            text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
        }

        .button-normal-md {
            overflow: hidden;
            padding-left: 10px;
            padding-right: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #6d6f00;
            width: auto;
            height: 38px;
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 500;
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            box-shadow:
                inset 0 30px 30px -15px rgba(255, 255, 255, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.3),
                inset 0 1px 20px rgba(0, 0, 0, 0),
                0 3px 0 #737500,
                0 3px 2px rgba(0, 0, 0, 0.2),
                0 5px 10px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(0, 0, 0, 0.1);
            background: #fbff00ff;
            color: #1a1a1a;
            text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
        }

        .disabled-btn {
            opacity: 0.5;
            cursor: default;
        }

        .room-top-left {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .room-display-box {
            width: 30px;
            height: 30px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--base-border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 500;
        }

        .no-room-overlay {
            position: absolute;
            top: 51px;
            left: 0;
            width: 100%;
            height: calc(100% - 51px);
            background: rgba(0, 0, 0, 0.5);
            z-index: 9996;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .overlay-content-room {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            position: relative;
            text-align: center;
        }

        .room-price-col {
            position: absolute;
            bottom: 15%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .buy-room-btn {
            width: auto;
            height: 45px;
            background: #007bc3;
            border-radius: var(--base-border-radius);
            color: #b2edff;
            font-size: 15px;
        }

        .change-room-btn {
            width: 30px;
            height: 30px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: var(--base-border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .main {
            display: flex;
            justify-content: center;
            margin-top: 16px;
            min-height: calc(100vh - 145px);
            margin-bottom: 0px;
            width: 100%;
        }

        .main-content {
            width: 1150px;
        }

        .site-title-box {
            background-color: var(--card-color-2);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: var(--padding);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            height: auto;

        }

        .site-title-box .p-title {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-color);
        }

        .game-room-container {
            position: relative;
        }

        .mining-room {
            position: relative;

            image-rendering: pixelated;
            image-rendering: crisp-edges;

            border: 1px solid #ffffff1f;

        }

        .room-level-box {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            width: 26px;
            height: 16px;
            top: 0px;
            left: 8px;
            padding: 0px 0px;
            font-size: 10px;
            border-radius: var(--base-border-radius);
            z-index: 99;
        }

        .item-panel-level-box {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            width: 30px;
            height: 20px;
            top: 38px;
            left: 36px;
            padding: 0px 0px;
            font-size: 12px;
            border-radius: var(--base-border-radius);
            z-index: 99;
        }

        .storage-panel-level-box {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            width: 28px;
            height: 18px;
            top: -3px;
            left: -3px;
            padding: 0px 0px;
            font-size: 11px;
            border-radius: var(--base-border-radius);
            z-index: 99;
        }

        .storage-panel-upgrade-box {
            position: absolute;
            top: 52px;
            right: 0;
            height: calc(100% - 52px);
            width: 230px;
            background: var(--card-color-5);
            z-index: 100;
            text-align: center;
            padding: 10px;
            padding-top: 20px;
            display: flex;
            flex-direction: column;

        }

        .storage-panel-upgrade-box-mobile {
            position: absolute;
            bottom: 0px;
            left: 0;
            height: 150px;
            width: 100%;
            background: var(--card-color-5);
            z-index: 100;
        }

        .result-image-box {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 0px;
            margin-bottom: 8px;
        }

        .avatar-modal-btn {
            width: 100%;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0 0 3px 3px;
            font-size: 12px;
            box-shadow: 0px 3px 0px #7a7803;
            transition: all 0.1s;
        }

        .avatar-modal-img {
            width: 100%;
            border-radius: 3px 3px 0 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .profile-avatar-box-modal {
            margin-bottom: 12px;
        }

        .result-nav-box {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .result-nav-btn {
            height: 35px;
            font-size: 14px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 0px;
            width: 100%;
        }

        .active-result-nav-btn {

            border: 2px solid var(--base-color);
            color: var(--base-color);
        }

        .close-storage-miner {
            position: absolute;
            left: 5px;
            top: 5px;
            border: 1px solid rgb(255, 0, 0);
            color: rgb(255, 46, 46);
            height: 20px;
            width: 60px;
            padding: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .selected-storage-miner {
            box-shadow: 0px 0px 4px 3px rgba(255, 238, 0, 0.7);
        }

        .result-content-x {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 22px;
            gap: 5px;
        }

        .result-level-box {
            position: absolute;
            top: -3px;
            left: -3px;
            height: 20px;
            width: 30px;
            background: rgba(255, 255, 255, 0.5);
            z-index: 101;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--base-border-radius);
        }

        .cost-content-result {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 74px;
            left: 0;
        }

        .upgrade-btn-submit-box {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 25px;
            left: 0;
        }

        .cost-content-result-box {
            border: 1px solid rgba(255, 255, 255, 0.25);
            width: 80%;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 30px;
            font-weight: 500;
            border-radius: var(--base-border-radius);
        }

        .result-power-upgrade {
            font-size: 13px;
        }

        .room-content {
            width: 100%;
            height: 100%;
            
            background-size: 100% 100%;
        }

        .racks-content {
            position: relative;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 0px;
            gap: 8px;
            padding: 10px;
            margin-top: 40px;
        }

        .rack-container {
            position: relative;
        }

        .rack-image {
            width: 100px;
            height: 70px;
        }

        .miner-image {
            width: 80px;
            position: absolute;
            z-index: 10;
        }

        .upgrades-content {
            position: relative;
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            height: 250px;
        }


        /*========== Panel CSS ==========*/

        .panel-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9997;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #0000005e;
        }

        .panel {
            background: var(--card-color-2);
            width: 100%;
            max-width: 280px;
            z-index: 2000;
            position: absolute;
            border-radius: 5px;
            border: 2px solid var(--card-color-5);
        }


        .panel-head {
            position: relative;
            height: 40px;
            display: flex;
            align-items: center;
            padding: 15px;
        }

        .panel-border {
            border-bottom: 2px solid var(--card-color-5);
        }

        .panel-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--text-color);
            margin-top: 10px;
        }

        .panel-inner {
            position: relative;
            padding: 15px;
            height: 250px;
            width: 100%;
        }

        .panel-inner-box {
            position: relative;
            display: block;
            text-align: center;
            width: 200px;
            height: 135px;
            background: var(--card-color-3);
            margin-top: -40px;
            border: 1px solid var(--card-color-5);
            overflow: hidden;
            border-radius: var(--base-border-radius);
        }

        .panel-footer {
            position: absolute;
            bottom: 20px;
            left: 0;
            height: auto;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .panel-close-button {
            position: absolute;
            top: 4px;
            right: 10px;
            width: auto;
            height: auto;
            border: 0px;
            background-color: transparent;
            color: var(--text-color);
            font-size: 22px;
            font-weight: bold;
        }



        /*========== Mount Panel CSS ==========*/

        .mount-panel {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            min-width: 100%;
            max-width: 100%;
            z-index: 2000;
            background-color: var(--card-color-2);
        }

        .storage-item-image-box {
            position: relative;

        }

        .storage-item-body {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .mount-panel-head {
            position: relative;
            height: 40px;
            display: flex;
            align-items: center;
            padding-left: 12px;
        }

        .mount-panel-level-box {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            width: 26px;
            height: 16px;
            top: 0;
            left: 0;
            padding: 0px 0px;
            font-size: 10px;
            border-radius: var(--base-border-radius);
        }

        .mount-panel-inner {
            position: relative;
            display: flex;
            overflow-y: auto;
            scrollbar-width: thin;
            gap: 10px;
            padding: var(--padding);
            scrollbar-color: #282b2bff #101111ff;
            min-height: 125px;
            align-items: center;
        }

        .mount-panel-item-container {
            background: var(--card-color-3);
            position: relative;
            height: 100px;
            min-height: 100px;
            max-height: 100px;
            width: 140px;
            min-width: 140px;
            max-width: 140px;
            border: 1px solid var(--card-color-5);
            align-content: center;
            border-radius: var(--base-border-radius);
            overflow: hidden;
        }

        .mount-panel-item-container-head {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 25px;
            background: var(--card-color-5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mount-panel-miner-img {
            width: 80px;
            display: block;
            margin: 0 auto;
            margin-top: 10px;
        }

        .mount-panel-miner-name {
            text-align: center;
            font-size: 13px;
            margin-top: 0px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .mount-panel-miner-power {
            text-align: center;
            font-size: 12px;
            margin-top: 10px;
            margin-bottom: 0px;
        }

        .mount-panel-no-items {
            width: 100%;
            text-align: center;

        }

        .logout-btn {
            width: 100%;
            height: 40px;
            border: 2px solid #ff2424;
            color: #ff2424;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
        }

        .logout-btn:hover {
            background: #ff2424;
            color: #e0e0e0;
        }

        /*========== Item Panel CSS ==========*/

        .item-panel-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--text-color);
        }

        .item-panel-close-button {
            position: absolute;
            top: -3px;
            right: 3px;
            width: auto;
            height: auto;
            border: 0px;
            background-color: transparent;
            color: var(--text-color);
            font-size: 22px;
            font-weight: bold;
        }

        .item-panel-inner {
            position: relative;
            padding: 15px;
            padding-top: 0px;
            height: 250px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .item-panel-inner-box-head {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: var(--card-color-5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .item-panel-miner-img {
            width: 125px;
            margin-top: 45px;
        }

        .item-panel-miner-name {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 0px;
            margin-top: 0px;
        }

        .item-panel-miner-power {
            margin-top: 10px;
            font-size: 14px;
        }

        .item-panel-unmount-button {
            width: auto;
            height: 35px;
            background-color: var(--first-color);
            border-radius: var(--border-radius);
        }


        .rack-buy-panel-inner {
            position: relative;
            padding: 15px;
            padding-top: 72px;
            padding-bottom: 0px;
            height: 290px;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .rack-buy-panel-rack-img {
            width: 130px;
            margin-top: 45px;
        }

        .rack-panel-cost-col {
            position: absolute;
            bottom: 75px;
            height: auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rack-item-img {
            width: 42px;
            margin-right: 5px;
        }

        .rack-item-amount {
            margin-top: 3px;
        }


        .rack-panel-cost-box {
            height: auto;
            width: auto;
            border-radius: var(--base-border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
        }


        .rack-buy-panel-inner-box {
            text-align: center;
            width: 100%;
            height: auto;
        }

        .rack-buy-name {
            width: 100%;
            text-align: center;
            margin-top: 0px;
            color: var(--text-color);
            font-weight: bold;
            font-size: 15px;
        }

        /*========== Storage Panel CSS ==========*/
        .storage-panel {
            width: 100%;
            height: 100%;
            background: var(--card-color-2);
        }

        .storage-panel-head {
            position: relative;
            height: 52px;
            display: flex;
            align-items: center;
            padding: 10px;
        }

        .storage-panel-inner {
            position: relative;
            overflow-y: auto;
            padding: 12px;
            max-height: calc(100% - 54px);
            scrollbar-width: none;
            -ms-scrollbar-style: none;
        }

        .storage-row {
            padding-left: 5px;
            padding-right: 5px;
        }

        .storage-item-container {
            text-align: center;
            background: var(--card-color-3);
            border-radius: var(--base-border-radius);
            border: 1px solid var(--card-color-5);
            width: 100%;
            overflow: hidden;
            margin-bottom: 10px;
            position: relative;
        }

        .storage-panel-no-items {
            font-size: 15px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 15px;
        }

        .item-panel-close-button-storage {
            position: absolute;
            top: 3px;
            right: 3px;
            width: auto;
            height: auto;
            border: 0px;
            background-color: transparent;
            color: var(--text-color);
            font-size: 22px;
            font-weight: bold;
        }

        .storage-item-head {
            font-size: 14px;
            font-weight: 600;
            color: var(--base-text-color);
            background: var(--card-color-5);
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .storage-item-img {
            margin-top: 0px;
            width: 100px;
            margin-bottom: 0px;
        }

        .storage-item-power {
            margin-bottom: 8px;
            font-size: 14px;
        }

        /*========== Energy CSS ==========*/

        .energy-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .energy-bar {
            height: 100%;

        }

        .energy-bar-container {
            position: relative;
            height: 12px;
            background: hsl(0deg 0% 11.96%);
        }

        .energy-bar-box {
            background: var(--card-color-3);
            padding: 5px;
            margin-top: 15px;
            margin-bottom: 12px;
            border-radius: var(--base-border-radius);
            border: 2px solid var(--card-color-5);
        }

        .energy-bar-div-1 {
            position: absolute;
            top: 0;
            left: 20%;
            width: 3px;
            height: 100%;
            background: var(--card-color-3);
        }

        .energy-bar-div-2 {
            position: absolute;
            top: 0;
            left: 40%;
            width: 3px;
            height: 100%;
            background: var(--card-color-3);
        }

        .energy-bar-div-3 {
            position: absolute;
            top: 0;
            left: 60%;
            width: 3px;
            height: 100%;
            background: var(--card-color-3);
        }

        .energy-bar-div-4 {
            position: absolute;
            top: 0;
            left: 80%;
            width: 3px;
            height: 100%;
            background: var(--card-color-3);
        }

        .energy-time {
            font-size: 13px;
        }

        .energy-time-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .energy-action-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 105px;
        }

        .energy-info {
            background: var(--card-color-5);
            padding: 10px;
            width: 24px;
            height: 24px;
            border-radius: var(--base-border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-left: 5px;
            border: 1px solid #5d5d5d;
            margin-top: 3px;
        }

        .energy-timer-box {
            background: var(--card-color-5);
            width: 115px;
            height: 25px;
            border-radius: var(--base-border-radius);
            display: flex;
            align-items: center;
            border: 1px solid #5d5d5d;
        }

        .btn-free-energy {
            background: transparent;
            width: auto;
            height: 25px;
            border-radius: var(--base-border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            border: 1px solid var(--base-color);
            color: var(--base-color);
            font-weight: 500;
        }

        .btn-refill-energy {
            background: var(--first-color);
            width: auto;
            height: 25px;
            border-radius: var(--base-border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            border: 1px solid var(--base-color);
            color: var(--base-text-color-dark);
            font-weight: 500;
        }

        /*========== Quests CSS ==========*/

        .quests-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .quests-content {
            height: 138px;
            max-height: 138px;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-scrollbar-style: none;
        }

        .quests-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--base-text-color);
            margin-bottom: 0px;
        }

        .quest-timer {
            font-size: 13px;
            color: var(--base-text-color);
            margin-bottom: 0px;

        }

        .quest-timer-box {
            background: var(--card-color-5);
            width: 115px;
            height: 25px;
            border-radius: var(--base-border-radius);
            border: 1px solid #5d5d5d;
        }

        .quest-box {
            background: var(--card-color-3);
            border: 1px solid var(--card-color-5);
            border-radius: 5px;
            margin-bottom: 10px;
            padding: 10px;
        }

        .quest-box-small {
            background: var(--card-color-3);
            border: 1px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            margin-bottom: 10px;
            padding: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quest-details-box-small {
            width: 100%;
        }

        .quest-image-small {
            width: 22px;
        }

        .quest-reward-box-small {
            background: var(--card-color-4);
            height: 40px;
            width: 40px;
            min-width: 40px;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            border-radius: var(--base-border-radius);
            border: 1px solid #454545;
        }

        .quest-box-flex {
            background: var(--card-color-3);
            border: 1px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            margin-bottom: 10px;
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        .expired-box {
            position: absolute;
            top: 5px;
            right: 5px;
            background: var(--card-color-5);
            width: auto;
            height: 22px;
            border-radius: var(--base-border-radius);
            color: var(--base-text-color);
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 6px;
            padding-right: 6px;
            border: 1px solid #5d5d5d;
        }



        .quest-progress-bar {
            height: 10px;
            border-radius: var(--base-border-radius);
            background: hsl(202.15deg 100% 50%);
        }

        .quest-description {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .quest-description-small {
            font-size: 12px;
            margin-bottom: 5px;
        }

        .quests-bottom {
            height: auto;
        }

        .quest-progress-bar-container {
            background: hsl(0deg 0% 11.96%);
            border-radius: var(--base-border-radius);
            width: 100%;
            height: 10px;
        }

        .quest-progress-text {
            font-size: 11px;
        }

        .quest-reward-coins {
            font-size: 12px;
        }

        .quest-box-left {
            background: var(--card-color-4);
            width: 75px;
            text-align: center;
            padding: 5px;
            border-radius: var(--base-border-radius);
            min-width: 75px;
            max-width: 75px;
            height: 65px;
            min-height: 65px;
            max-height: 65px;
            position: relative;
            border: 1px solid #454545;
        }

        .quest-image {
            width: 26px;
            height: 26px;
            margin-top: -18px;
        }

        .reward-amount-box {
            position: absolute;
            width: auto;
            min-width: 18px;
            height: 18px;
            background: #505050;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px 4px;
            border-radius: var(--base-border-radius);
        }

        .wallet-top-btn {
            width: 40px;
            height: 40px;
            background: var(--card-color-3);
            margin-right: 8px;
            border: 1px solid var(--card-color-5);
            box-shadow: 0px 5px 0px #1c1c1c;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--base-text-color);
        }

        .wallet-top-btn:hover {
            background: var(--card-color-4);
        }


        .miner-reward-info-box {
            position: absolute;
            top: 4px;
            right: 4px;
            width: auto;
            min-width: 18px;
            height: 18px;
            background: rgba(255, 255, 255, 0.20);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px 3px;
            border-radius: var(--base-border-radius);
        }

        .box-right-top {
            top: 4px;
            right: 4px;
        }

        .box-right-bottom {
            bottom: 0;
            left: 0;
            width: 100%;
            border-radius: 0 0 2px 2px;
        }

        .miner-quest-tooltip {
            position: absolute;
            top: 3px;
            right: -160px;
            width: 160px;
            height: auto;
            min-height: 50px;
            background: var(--card-color-5);
            display: none;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            border-radius: var(--base-border-radius);
            border: 1px solid #5d5d5d;
            text-align: center;
            padding: 8px;
        }

        .quest-miner-reward-name {
            font-size: 15px;
            font-weight: 600;
        }

        .miner-quest-power {
            font-size: 13px;
        }

        /*========== UI CSS ==========*/

        .ui-box-left-top {
            position: absolute;
            display: flex;
            top: 0px;
            left: 0px;
            align-items: center;
            justify-content: space-between;
            background-color: var(--card-color-2);
            padding: 10px;
            z-index: 999;
            width: 100%;
            height: 50px
        }

        .ui-inner-left {
            display: flex;
            align-items: center;
        }

        .racks-icon {
            width: 22px;
            height: 22px;
            margin-right: 6px;
        }

        .miners-icon {
            width: 22px;
            height: 22px;
            margin-right: 6px;
        }

        .miner-storage-button {
            width: auto;
            height: 30px;
            background-color: yellow;
            z-index: 999;
            display: flex;
            align-items: center;
        }

        .rack-buy-button {
            background: transparent;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #434343;
            border-radius: var(--base-border-radius);
            color: var(--base-text-color);
            font-size: 14px;
        }

        .rack-buy-button:hover {
            color: var(--base-color);
            border-color: var(--base-color);
        }

        /*========== Modal CSS ==========*/

        .modal {
            z-index: 10000;
        }

        .modal-backdrop {
            z-index: 9999;
        }

        .modal-header {
            border-bottom: 2px solid var(--card-color-5);
            padding: 12px;
        }

        .modal-header-extra {
            padding: 1rem;
        }

        .modal-expanded {
            min-height: 400px;
        }

        .modal-content {
            background: var(--card-color-2);
            border: var(--base-border-light-x2);
            border-color: var(--card-color-5);
        }

        .modal-content .modal-header .modal-title {
            color: var(--base-text-color);
            font-size: 18px;
            font-weight: 700;
        }

        .modal-content .modal-header .btn-close-modal {
            color: var(--base-text-color);
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 12px;
            top: 12px;
        }

        .modal-extras {
            padding: 12px;
        }

        .modal-tab-container {
            display: flex;
            gap: 8px;
        }

        .modal-tab {
            position: relative;
            background: #3f3f3f;
            width: auto;
            height: 33px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #4f4f4f;
            border-radius: var(--base-border-radius);
            color: var(--base-text-color);
            font-size: 14px;
        }

        .active-tab {
            background: hsla(59, 100%, 48%, 0.20);
            border: 2px solid var(--base-color);
            color: var(--base-color);
        }

        .active-tab::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 10px solid var(--base-color);
        }

        /*========== Misc CSS ==========*/

        .support-mail-box {
            height: 36px;
            width: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-color-5);
            border: 1px solid #5d5d5d;
            border-radius: var(--base-border-radius);
        }

        button {
            color: var(--base-text-color);
            padding: 10px;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            height: 55px;
            border-radius: var(--base-border-radius);
        }

        .wallet-select-btn {
            font-size: 16px;
            font-weight: 500;
        }

        .active {
            color: var(--first-color);
            border: 2px solid var(--base-color);
            background: rgba(231, 233, 77, 0.2);
        }

        .wallet-balance-img-box {
        background: var(--card-color-5);
        width: 48px;
        min-width: 48px;
        height: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        border-radius: var(--base-border-radius);
        box-shadow: rgba(128, 128, 128, 0.7) 0px 0px 3px 1px;
    }

        .currency-check {
        background-color: rgba(255, 255, 255, 0.02);
        border: 2px solid var(--card-color-5);
        color: var(--base-text-color);
        cursor: pointer;
        padding: 10px;
        border-radius: var(--base-border-radius);
        font-size: 15px;
        height: auto;
    }

        .btn-check:checked+.currency-check {
            background-color: var(--card-color-5);
            border: 2px solid var(--card-color-5);
            color: var(--base-color);
            box-shadow: rgb(251 255 0 / 70%) 0px 0px 1px 1px;
        }

        .main-button {
            color: var(--base-text-color-dark);
            font-size: 15px;
            background-color: #f5f100;
            border: 1px solid #afac00;
            border-radius: 3px;
            cursor: pointer;
            padding: 0px 10px;
            box-shadow: 0px 5px 0px #7a7803;
            transition: all 0.1s;
            width: auto;
            height: 42px;
        }

        .main-button-blue {
            color: #d6e4ff;
            font-size: 15px;
            background-color: #1488ff;
            border: 1px solid #1a63af;
            border-radius: 3px;
            cursor: pointer;
            padding: 0px 10px;
            box-shadow: 0px 5px 0px #174a81;
            transition: all 0.1s;
            width: auto;
            height: 42px;
        }

        .main-button-sec {
            color: var(--base-text-color-dark);
            font-size: 15px;
            background-color: #f5f100;
            border: 1px solid #afac00;
            border-radius: 3px;
            cursor: pointer;
            padding: 0px 10px;
            box-shadow: 0px 5px 0px #7a7803;
            transition: all 0.1s;
            width: auto;
            height: 42px;
        }

        .main-button-sec-xs {
            color: var(--base-text-color);
            font-size: 11px;
            background-color: #565656;
            border: 1px solid #727272;
            border-radius: 3px;
            cursor: pointer;
            padding: 0px 10px;
            box-shadow: 0px 5px 0px #3e3e3e;
            transition: all 0.1s;
            width: auto;
            height: 20px;
        }

        .main-button-xs {
            color: var(--base-text-color-dark);
            font-size: 11px;
            background-color: #f5f100;
            border: 1px solid #afac00;
            border-radius: 3px;
            cursor: pointer;
            padding: 0px 10px;
            box-shadow: 0px 5px 0px #7a7803;
            transition: all 0.1s;
            width: auto;
            height: 20px;
        }

        .currency-check:hover {
            background-color: var(--card-color-5);
            border: 2px solid var(--card-color-5);
            color: var(--base-text-color);
        }

        .card-radio-label {
            border: 2px solid var(--card-color-5);
            width: 100%;
        }

        .wallet-img {
            width: 42px;
            height: 42px;
        }

        .wallet-text {
            font-size: 15px;
            margin-top: 3px;
        }

        .wallet-text-s {
            font-size: 13px;
        }

        .ad-btn {
            display: none;
        }

        .show-ad-btn {
            display: flex;
        }

        .form-input {
            width: 100%;
            height: 38px;
            box-shadow: 0px;
            border: 2px solid var(--card-color-5);
            background: rgba(255, 255, 255, 0.015);
            border-radius: var(--base-border-radius);
            color: var(--base-text-color-secondary);
        }

        .form-input:focus {
            box-shadow: 0;
            border: 2px solid var(--card-color-5);
            outline: none;
            color: var(--base-text-color);
        }

        .account-form-lable {
            font-size: 15px;
            color: var(--base-text-color-secondary);
        }

        .profile-img {
            width: 125px;
            border-radius: 3px 3px 0 0;
            border: 2px solid var(--card-color-5);
        }

        .ref-link-box {
            background: var(--card-color-3);
            border: 2px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            padding: 10px;
            box-shadow: 0px 5px 0px #1c1c1c;
            margin-bottom: 2px;
        }

        .ref-stat {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--card-color-5);
            margin-bottom: 10px;
        }

        .game-footer-inner {
            display: flex;
            justify-content: space-between;
        }

        .game-footer-container {
            width: 100%;
            display: flex;
            justify-content: center;
            overflow: hidden;
            margin-top: 60px;
        }

        .game-footer-divider {
            border: 1px solid var(--card-color-5);
            width: 100%;
            margin-bottom: 10px;
        }

        .faq-container {
            display: flex;
            justify-content: center;
        }

        .faq-box {
            background: var(--card-color-2);
            border: 1px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            padding: 12px;
            width: 100%;
            max-width: 800px;
        }

        .news-container {
            display: flex;
            justify-content: center;
        }

        .news-box {
            background: var(--card-color-2);
            border: 1px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            padding: 12px;
            width: 100%;
            max-width: 650px;
        }

        .leaderboard-container {
            display: flex;
            justify-content: center;
        }

        .leaderboard-box {
            background: var(--card-color-2);
            border: 1px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            width: 100%;
            max-width: 1000px;
            overflow-y: auto;
            padding: 12px;
            padding-bottom: 3px;
        }

        .leaderboard-box-inner {
            width: 974px;
        }

        .referral-box {
            background: var(--card-color-2);
            border: 1px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            width: 100%;
            overflow-y: auto;
            overflow-x: auto;
            max-height: 500px;
            scrollbar-width: none;
            -ms-scrollbar-style: none;
        }

        .ref-head-table {
            padding: 12px;
            padding-bottom: 0px;
            min-width: 600px;
        }


        .referral-box-body {
            padding: 12px;
            padding-bottom: 0px;
        }

        .referrals-top {
            padding-left: 0px;
            padding-right: 0px;

        }

        .referrals-item {
            padding-top: 5px;
            padding-bottom: 5px;
            border-top: 1px solid var(--card-color-5);
        }

        .referral-box-inner {
            min-width: 600px;
            width: 100%;
        }

        .ref-icon-box {
            background: rgba(255, 255, 255, 0.1);
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--base-border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-right: 8px;
        }

        .nav-button-ref {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            border: 2px solid var(--card-color-5);
            border-radius:3px;
        }

        .ref-container {
            width: 100%;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-scrollbar-style: none;
        }

        .ref-head {
            min-width: 800px;
        }

        .ref-head-box {
            background: var(--card-color-2);
            border: 2px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            padding: 12px;
        }

        .ref-body {
            min-width: 800px;
        }

        .ref-body-box {
            background: var(--card-color-2);
            border: 2px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            padding: 12px;
            margin-top: 10px;
        }

        .text-color-sec {
            color: var(--base-text-color-secondary);
        }

        .leaderboard-col-inner {
            height: 36px;
            gap: 6px;
        }

        .rank-display {
            font-size: 16px;
            font-weight: 500;
            line-height: 0;
            margin-top: 1px;
        }

        .ranking-top {
            padding-left: 14px;
            padding-right: 14px;
        }

        .rank-top-text {
            font-weight: 500;
            font-size: 16px;
        }

        .leaderboard-avatar {
            width: 40px;
            height: 40px;
            border-radius: var(--base-border-radius);
            border: 2px solid var(--card-color-5);
        }

        .leaderboard-item {
            background: var(--card-color-3);
            border: 1px solid var(--card-color-5);
            margin-bottom: 12px;
            padding: 10px;
            box-shadow: 0px 5px 0px #1c1c1c;
        }

        .faq-text {
            color: #999999;
        }

        .balance-img {
            width: 25px;
            height: 25px;
            margin-right: 3px;
        }

        .dropdown-menu {
            background: var(--card-color-3);
            width: 170px;
            min-width: 170px;
            max-width: 170px;
            border-radius: var(--base-border-radius);
            border: 2px solid var(--card-color-5);
            color: var(--base-text-color);
            font-size: 13px;
            font-weight: 500;
            padding: 6px;
            padding-top: 6px;
            padding-bottom: 6px;
        }

        .dropdown-user {
            border-radius: 0 0 3px 3px;
            border-top: 0px;
        }

        .dropdown-btn {
            background: var(--card-color-3);
            width: 150px;
            min-width: 170px;
            max-width: 170px;
            height: 40px;
            display: flex;
            align-items: center;
            border: 2px solid var(--card-color-5);
            border-radius: var(--base-border-radius);
            color: var(--base-text-color);
            font-size: 13px;
            font-weight: 500;
            padding: 0px 6px;
            box-shadow: 0px 5px 0px #1c1c1c;
        }

        .mining-amount-card {
            background: var(--card-color-4);
            min-height: 65px;
            height: 65px;
            width: 75px;
            min-width: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }


        .power-info {
            width: 30px;
            min-width: 30px;
            height: 30px;
            min-height: 30px;
            background: var(--card-color-5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            border-radius: var(--base-border-radius);
            border: 1px solid #5d5d5d;
        }

        .mining-stats-info {
            width: 24px;
            min-width: 24px;
            height: 24px;
            min-height: 24px;
            background: var(--card-color-5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            border-radius: var(--base-border-radius);
            border: 1px solid #5d5d5d;
            position: absolute;
            right: 10px;
            top: 10px;
        }

        .storage-button {
            background: var(--base-color);
            width: auto;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid hsla(59, 100%, 48%, 0.25);
            border-radius: var(--base-border-radius);
            color: var(--base-text-color-dark);
            font-size: 14px;
        }

        .player-title {
            font-size: 12px;
            color: var(--base-color);
        }

        .medium-btn {
            background: var(--base-color);
            width: auto;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid hsla(59, 100%, 48%, 0.25);
            border-radius: var(--base-border-radius);
            color: var(--base-text-color-dark);
            font-size: 13px;
        }

        .medium-btn-disabled {
            background: var(--base-color);
            width: auto;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid hsla(59, 100%, 48%, 0.25);
            border-radius: 5px;
            color: var(--base-text-color-dark);
            font-size: 13px;
            cursor: default;
            opacity: 0.45;
        }

        .standard-btn {
            background: var(--base-color);
            width: auto;
            height: 33px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid hsla(59, 100%, 48%, 0.25);
            border-radius: var(--base-border-radius);
            color: var(--base-text-color-dark);
            font-size: 14px;
        }

        .standard-btn-lg {
            background: var(--base-color);
            width: auto;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid hsla(59, 100%, 48%, 0.25);
            border-radius: var(--base-border-radius);
            color: var(--base-text-color-dark);
            font-size: 15px;
        }


        .info-toolbox {
            width: 18px;
            height: 18px;
            background: var(--card-color-2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--base-text-color);
            border: 1px solid #5d5d5d;
        }

        .custom-tooltip-left {
            width: 180px;
            position: absolute;
            top: 0;
            left: 0;
            background: var(--card-color-5);
            color: #fff;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 11px;
            border: 1px solid var(--base-color);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            max-width: 180px;
            display: none;
        }

        .custom-tooltip-right {
            width: 180px;
            position: absolute;
            top: 45px;
            right: 12px;
            background: var(--card-color-5);
            color: #fff;
            padding: 6px 10px;
            border-radius: var(--base-border-radius);
            font-size: 11px;
            border: 1px solid var(--base-color);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            max-width: 180px;
            display: none;
        }

        .custom-tooltip {
            width: 180px;
            position: absolute;
            top: 120%;
            left: 50%;
            transform: translateX(-50%) translateY(-5px);
            background: var(--card-color-5);
            color: #fff;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 11px;
            border: 1px solid var(--base-color);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            max-width: 180px;
            display: none;
        }

        .energy-tooltip {
            width: 180px;
            position: absolute;
            top: 85px;
            right: 12px;
            background: var(--card-color-5);
            color: #fff;
            padding: 6px 10px;
            border-radius: var(--base-border-radius);
            font-size: 11px;
            border: 1px solid #5d5d5d;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            max-width: 180px;
            display: none;
        }

        .mining-stats-tooltip {
            width: 180px;
            position: absolute;
            top: 40px;
            right: 10px;
            background: var(--card-color-5);
            color: #fff;
            padding: 6px 10px;
            border-radius: var(--base-border-radius);
            font-size: 11px;
            border: 1px solid #5d5d5d;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            max-width: 180px;
            display: none;
        }

        .data-tooltip {
            width: 180px;
            position: absolute;
            top: 55px;
            right: 12px;
            background: var(--card-color-5);
            color: #fff;
            padding: 6px 10px;
            border-radius: var(--base-border-radius);
            font-size: 11px;
            border: 1px solid #5d5d5d;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            max-width: 180px;
            display: none;
        }

        .profile-tooltip {
            width: 180px;
            position: absolute;
            top: 45px;
            right: 12px;
            background: var(--card-color-5);
            color: #fff;
            padding: 6px 10px;
            border-radius: var(--base-border-radius);
            font-size: 11px;
            border: 1px solid #5d5d5d;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            max-width: 180px;
            display: none;
        }

        .pool-tooltip {
            width: 180px;
            position: absolute;
            top: 20px;
            right: -85px;
            background: var(--card-color-5);
            color: #fff;
            padding: 6px 10px;
            border-radius: var(--base-border-radius);
            font-size: 11px;
            border: 1px solid #5d5d5d;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s;
            max-width: 180px;
            display: none;
        }

        .show-tooltip {
            display: block;
            opacity: 1;
            z-index: 20000;
        }

        .pool-container {
            padding-left: 6px;
            padding-right: 6px;
        }

        .pool-users-box {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--card-color-5);
            border-radius: 5px;
            width: auto;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1px 5px;
            gap: 3px;
            border: 1px solid #5d5d5d;
        }

        .pool-users-icon {
            color: var(--base-text-color);
            font-size: 15px;
        }

        .pool-users {
            font-size: 12px;
            margin-top: 2px;
        }

        .pool-box {
            padding: 10px;
            background: var(--card-color-3);
            margin-bottom: 10px;
            position: relative;
            border-radius: 5px;
            border: 1px solid var(--card-color-4);
        }

        .pool-box-header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }

        .pool-image {
            width: 28px;
            height: 28px;
        }

        .pool-name {
            font-size: 15px;
            font-weight: bold;
            color: var(--base-text-color);
            margin-top: 1px;
        }

        .pool-block {
            font-size: 12px;
        }

        .n-btn-1 {
            width: 36px;
            height: 30px;
            color: var(--base-text-color-dark);
            font-size: 17px;
            background-color: var(--base-color);
            border: 1px solid hsl(59, 96%, 30%);
            border-radius: 3px;
            cursor: pointer;
            box-shadow: 0px 6px 0px hsl(59, 96%, 30%);
            transition: all 0.1s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .avatar-container {
            padding-left: 5px;
            padding-right: 5px;
        }

        .short-col {
            padding-left: 5px;
            padding-right: 5px;
        }

        .avatar-option-box {
            position: relative;
            padding-bottom: 25px;
            border-radius: 5px;
            overflow: hidden;
            margin-bottom: 10px;
            background: var(--card-color-3);
        }

        .disabled-avatar-btn {
            background: var(--card-color-5);
            color: var(--base-text-color);
            border-top: 2px solid var(--base-color);
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 25px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .choose-avatar-btn {
            background: var(--base-color);
            color: var(--base-text-color-dark);
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 25px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .button-sec {
            background: var(--card-color-4);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--card-color-5);
            border-radius: 5px;
            color: var(--base-text-color);
        }

        .button-sec:hover {
            background: hsla(59, 100%, 48%, 0.25);
            border-color: hsla(59, 100%, 48%, 0.25);
            color: var(--first-color);
        }

        .button-sec-l {
            background: var(--base-color);
            width: 30px;
            min-width: 30px;
            height: 30px;
            min-height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--base-color);
            border-radius: var(--base-border-radius);
            color: var(--base-text-color-dark);
            font-size: 20px;
        }

        .button-sec-wide {
            background: var(--card-color-4);
            width: auto;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--card-color-5);
            border-radius: 5px;
            color: var(--base-text-color);
            font-size: 13px;
        }

        .button-sec-wide:hover {
            background: hsla(59, 100%, 48%, 0.25);
            border-color: hsla(59, 100%, 48%, 0.25);
            color: var(--first-color);
        }

        .button-sec-wide-disabled {
            background: hsla(59, 100%, 48%, 0.25);
            width: auto;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--card-color-5);
            border-color: hsla(59, 100%, 48%, 0.25);
            border-radius: 5px;
            color: var(--base-color);
            font-size: 13px;
        }

        .avatar-image {
            width: 90px;
        }

        .toast-container-r2 {
            position: fixed;
            top: 5rem;
            right: 1rem;
            z-index: 11000;
        }

        .toast-inner {
            position: relative;
            width: auto;
            display: flex;
            justify-content: right;
            margin-bottom: 15px;
        }

        .toast-head {
            height: auto;
            width: 100%;
            background: var(--card-color-5);
            padding: 6px;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .toast-body {
            padding: 6px;
        }

        .toast-icon {
            font-size: 24px;
            margin-left: -3px;
        }

        .toast-r2 {
            width: fit-content;
            height: auto;
            background-color: var(--card-color-3);
            border-radius: var(--base-border-radius);
            border: 2px solid var(--card-color-5);
            overflow: hidden;
        }

        .nav-tab-list {
            display: flex;
            gap: 10px;
            padding-bottom: 0px;
            border-bottom: var(--base-border-light-x2);
            margin-bottom: var(--margin-bottom-20);
            margin-top: -10px;
        }

        .nav-tab-link {
            background-color: transparent;
            border: 0px;
            border-bottom: 1px solid transparent;
            height: 40px;
            padding-left: 10px;
            padding-right: 10px;
            color: var(--base-text-color);
            font-weight: var(--font-medium);
            border-radius: 0px;
        }

        .nav-tab-link.active {
            color: var(--base-color);
            border-bottom: 1px solid var(--base-color);
        }

        .color-lv-1 {
            background: rgb(99, 99, 99);
            color: rgb(49, 49, 49);
        }

        .color-lv-2 {
            background: rgb(12, 170, 6);
        }

        .color-lv-3 {
            background: rgb(6, 83, 170);
        }

        .color-lv-4 {
            background: rgb(255, 140, 9);
        }

        .color-lv-5 {
            background: rgb(255, 6, 6);
        }

        .text-color-lv-1 {
            color: rgb(194, 194, 194);
        }

        .text-color-lv-2 {
            color: rgb(165, 255, 162);
        }

        .text-color-lv-3 {
            color: rgb(145, 196, 255);
        }

        .text-color-lv-4 {
            color: rgb(255, 211, 161);
        }

        .text-color-lv-5 {
            color: rgb(255, 180, 180);
        }

        .game-stats-box {
        padding: 10px;
        min-width: 85px;
        background: var(--card-color-3);
        border: 1px solid var(--card-color-5);
        border-radius: var(--base-border-radius);
        box-shadow: 0px 5px 0px #1c1c1c;
        margin-bottom: 12px;
    }

    .tool-box {
        width: 30px;
        min-width: 30px;
        height: 30px;
        min-height: 30px;
        background: var(--card-color-5);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        border-radius: var(--base-border-radius);
        border: 1px solid #5d5d5d;
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .main-button-change-avatar {
        color: var(--base-text-color-dark);
        font-size: 15px;
        background-color: #f5f100;
        border: 1px solid #afac00;
        border-radius: 3px;
        cursor: pointer;
        padding: 0px 10px;
        box-shadow: 0px 3px 0px #7a7803;
        transition: all 0.1s;
        width: auto;
        height: 42px;
    }

    .mining-amount-card-pr {
        background: var(--card-color-5);
        width: 40px;
        min-width: 40px;
        height: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        border-radius: var(--base-border-radius);
        box-shadow: rgba(128, 128, 128, 0.7) 0px 0px 3px 1px;
    }

        /*========== Responsive CSS ==========*/

        @media screen and (max-width: 380px) {

            .item-panel-miner-img {
                width: 80px;
                margin-top: 45px;
            }

            .panel-inner-box {

                width: 140px;
                height: 90px;
                margin-top: -20px;
                margin-bottom: 20px;
            }

            .panel {

                max-width: 240px;
            }

            .item-panel-inner {
                position: relative;
                padding: 12px;
                padding-top: 0px;
                height: 150px;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .storage-item-name {
                font-size: 13px;
            }

            .storage-item-power {
                font-size: 12px;
            }

            .storage-panel-level-box {
                position: absolute;
                width: 26px;
                height: 16px;
                font-size: 10px;
            }

            .storage-item-img {
                margin-top: 0px;
                width: 80px;
                margin-bottom: 0px;
            }

            .result-power-upgrade {
                font-size: 11px;
            }

            .result-level-box {

                height: 16px;
                width: 26px;
                font-size: 10px;
            }

            .cost-content-result-box {
                height: 35px;
            }

            .cost-content-result {
                bottom: 64px;
            }

            .upgrade-btn-submit-box {
                bottom: 15px;
            }

            .storage-panel-upgrade-box {
                height: calc(100% - 52px);
                width: 100%;
                display: none;
                flex-direction: row;
            }

            .show-storage-upgrade-mobile {
                display: flex;
                gap: 10px;
            }

            .main-details-result {
                width: 160px;
                margin-top: 15px;
            }

            .sec-details-result {
                width: 100%;
                min-width: 200px;
                margin-top: 15px;
            }

            .avatar-modal-btn {
                font-size: 8px;
            }

            .room-level-box {
                width: 16px;
                height: 7px;
                top: 0px;
                left: 5px;
                font-size: 5px;
            }

            .game-room-container {
                height: calc(100vw / 1.25);
            }


            body {
                padding-left: 10px;
                padding-right: 10px;
            }

            .main-content {
                width: 100%;
            }

            .mining-room {
                width: 100%;
                height: calc(100vw / 1.25 - 52px);
            }

            .upgrades-content {
                height: calc(100vw / 3.8);
            }

            .room-content {
                width: 100%;
                height: 100%;
            }

            .racks-content {
                margin-top: 0px;
                padding-left: 20px;
                padding-right: 20px;
            }

            .rack-image {
                width: calc(100vw / 8 - 4px);
                height: calc(100vw / 12 - 8px);
            }

            .miner-image {
                width: calc(100vw / 8.6 - 10px);
                top: 2px;
                left: 5px;
            }

            .game-footer-content {
                width: 100%;
            }

            .game-footer-inner {
                display: block;
            }

            .main {

                min-height: calc(100vh - 140px);

            }
        }

        @media screen and (min-width: 380px) and (max-width: 480px) {

            .storage-item-name {
                font-size: 14px;
            }

            .storage-item-power {
                font-size: 13px;
            }

            .storage-panel-level-box {
                position: absolute;
                width: 26px;
                height: 16px;
                font-size: 10px;
            }

            .storage-item-img {
                margin-top: 0px;
                width: 90px;
                margin-bottom: 0px;
            }

            .result-power-upgrade {
                font-size: 12px;
            }

            .cost-content-result-box {
                height: 35px;
            }

            .cost-content-result {
                bottom: 64px;
            }

            .upgrade-btn-submit-box {
                bottom: 15px;
            }

            .storage-panel-upgrade-box {
                height: calc(100% - 52px);
                width: 100%;
                display: none;
                flex-direction: row;
            }

            .show-storage-upgrade-mobile {
                display: flex;
                gap: 10px;
            }

            .main-details-result {
                width: 190px;
                margin-top: 25px;
            }

            .sec-details-result {
                width: 100%;
                min-width: 210px;
                margin-top: 25px;
            }

            .avatar-modal-btn {

                font-size: 9px;
            }

            .room-level-box {

                width: 18px;
                height: 8px;
                top: 0px;
                left: 5px;
                font-size: 6px;

            }

            .game-room-container {
                height: calc(100vw / 1.25);
            }

            body {
                padding-left: 10px;
                padding-right: 10px;
            }

            .main-content {
                width: 100%;
            }

            .mining-room {
                width: 100%;
                height: calc(100vw / 1.25 - 52px);
            }

            .upgrades-content {
                height: calc(100vw / 3.6);
            }

            .room-content {
                width: 100%;
                height: 100%;
            }

            .racks-content {
                margin-top: 0px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .rack-image {
                width: calc(100vw / 8 - 4px);
                height: calc(100vw / 12 - 8px);
            }

            .miner-image {
                width: calc(100vw / 8.6 - 10px);
                top: 2px;
                left: 5px;
            }

            .game-footer-content {
                width: 100%;
            }

            .game-footer-inner {
                display: block;
            }

            .main {

                min-height: calc(100vh - 140px);

            }
        }

        @media screen and (min-width: 480px) and (max-width: 576px) {

            .result-power-upgrade {
                font-size: 12px;
            }

            .cost-content-result-box {
                height: 35px;
            }

            .cost-content-result {
                bottom: 64px;
            }

            .upgrade-btn-submit-box {
                bottom: 15px;
            }

            .storage-panel-upgrade-box {
                height: calc(100% - 52px);
                width: 100%;
                display: none;
                flex-direction: row;
            }

            .show-storage-upgrade-mobile {
                display: flex;
                gap: 10px;
            }

            .main-details-result {
                width: 200px;
                margin-top: 35px;
            }

            .sec-details-result {
                width: 100%;
                min-width: 210px;
                margin-top: 35px;
            }


            .room-level-box {

                width: 20px;
                height: 10px;
                top: 0px;
                left: 6px;
                font-size: 7px;

            }

            .game-room-container {
                height: calc(100vw / 1.25);
            }

            body {
                padding-left: 8px;
                padding-right: 8px;
            }

            .main-content {
                width: 100%;
            }

            .mining-room {
                width: 100%;
                height: calc(100vw / 1.25 - 52px);
            }

            .upgrades-content {
                height: calc(100vw / 3.4);
            }

            .room-content {
                width: 100%;
                height: 100%;
            }

            .racks-content {
                margin-top: 0px;
                padding-left: 40px;
                padding-right: 40px;
            }

            .rack-image {
                width: calc(100vw / 8 - 5px);
                height: calc(100vw / 12 - 8px);
            }

            .miner-image {
                width: calc(100vw / 9.1 - 10px);
                top: 3px;
                left: 6px;
            }

            .game-footer-content {
                width: 100%;
            }

            .game-footer-inner {
                display: block;
            }

            .main {

                min-height: calc(100vh - 140px);

            }
        }

        @media screen and (min-width: 577px) and (max-width: 767px) {
            .room-level-box {

                width: 22px;
                height: 12px;
                top: 0px;
                left: 8px;
                font-size: 8px;

            }

            .game-room-container {
                height: 450px;
            }

            .storage-panel-upgrade-box {
                height: calc(100% - 52px);
                width: 100%;
                display: none;
            }

            .show-storage-upgrade-mobile {
                display: block;
            }

            .main-content {
                width: 545px;
            }

            .mining-room {
                width: 100%;
                height: 398px;
            }

            .upgrades-content {
                height: 125px;
            }

            .room-content {
                width: 100%;
                height: 100%;
            }

            .racks-content {
                padding-left: 20px;
                padding-right: 20px;
            }

            .rack-image {
                width: 71px;
                height: 42px;
            }

            .miner-image {
                width: 59px;
                top: 3px;
                left: 6px;
            }

            .game-footer-content {
                width: 545px;
            }

            .game-footer-inner {
                display: block;
            }

            .main {

                min-height: calc(100vh - 140px);

            }
        }

        @media screen and (min-width: 767px) and (max-width: 992px) {
            .room-level-box {

                width: 24px;
                height: 13px;
                top: 0px;
                left: 9px;
                font-size: 9px;

            }

            .game-room-container {
                height: 500px;
            }

            .storage-panel-inner {
                padding-right: 242px;
            }

            .main-content {
                width: 700px;
            }

            .mining-room {
                width: 100%;
                height: 448px;
            }

            .upgrades-content {
                height: 142px;
            }

            .room-content {
                width: 100%;
                height: 100%;
            }


            .racks-content {
                padding-left: 70px;
                padding-right: 70px;
            }

            .rack-image {
                width: 81px;
                height: 51px;
            }

            .miner-image {
                width: 69px;
                top: 4px;
                left: 6px;
            }

            .game-footer-content {
                width: 700px;
            }

        }

        @media screen and (min-width: 992px) and (max-width: 1200px) {

            .game-room-container {
                height: 550px;
            }

            .storage-panel-inner {
                padding-right: 242px;
            }

            .main-content {
                width: 960px;
            }

            .room-content {
                height: 100%;
            }

            .avatar-image {
                width: 85px;
            }

            .mining-room {
                width: 100%;
                height: 498px;
            }

            .upgrades-content {
                height: 162px;
            }

            .racks-content {
                padding-left: 69px;
                padding-right: 69px;
            }

            .rack-image {
                width: 87px;
                height: 58px;
            }

            .miner-image {
                width: 75px;
                top: 6px;
                left: 6px;
            }

            .modal-expanded {
                max-height: 400px;
            }

            .game-footer-content {
                width: 960px;
            }

            .col-lg-3 {
            width: 28%;
        }

        .col-lg-9 {
            width: 72%;
        }
        }

        @media screen and (min-width: 1200px) and (max-width: 1400px) {

            .game-room-container {
                height: 600px;
            }

            .storage-panel-inner {
                padding-right: 242px;
            }

            .main-content {
                width: 1080px;
            }

            .room-content {
                height: 100%;
            }

            .upgrades-content {

                height: 185px;
            }

            .mining-room {
                width: 100%;
                height: 548px;
            }

            .racks-content {
                padding-left: 77px;
                padding-right: 75px;
            }

            .rack-image {
                width: 99px;
                height: 64px;
            }

            .miner-image {
                width: 86px;
                top: 5px;
                left: 7px;
            }

            .modal-expanded {
                max-height: 400px;
            }

            .game-footer-content {
                width: 1080px;
            }
        }

        @media screen and (min-width: 1400px) and (max-width: 2000px) {

            .game-room-container {
                height: 650px;
            }

            .storage-panel-inner {
                padding-right: 242px;
            }

            .main-content {
                width: 1200px;
            }

            .room-content {
                height: 100%;
            }

            .upgrades-content {

                height: 210px;
            }

            .mining-room {
                width: 100%;
                height: 598px;
            }

            .racks-content {
                padding-left: 92px;
                padding-right: 90px;
            }

            .rack-image {
                width: 110px;
            }

            .miner-image {
                width: 94px;
                top: 5px;
                left: 8px;
            }

            .modal-expanded {
                max-height: 400px;
            }

            .game-footer-content {
                width: 1200px;
            }
        }

        @media screen and (min-width: 2000px) {

            .game-room-container {
                height: 700px;
            }

            .storage-panel-inner {
                padding-right: 242px;
            }


            .main-content {
                width: 1300px;
            }

            .upgrades-content {

                height: 240px;
            }

            .mining-room {
                width: 100%;
                height: 648px;
            }

            .racks-content {
                padding-left: 55px;
                padding-right: 55px;
            }

            .rack-image {
                width: 122px;
                height: 75px;
            }

            .miner-image {
                width: 103px;
                top: 5px;
                left: 9px;
            }

            .modal-expanded {
                max-height: 400px;
            }

            .game-footer-content {
                width: 1300px;
            }
        }