   :root {
       --bg-0: 6, 6, 6;
       --bg-1: 18, 14, 16;
       --text: 245, 245, 247;
       --muted: 150, 150, 160;
       --lava-1: 255, 94, 0;
       --lava-2: 255, 34, 34;
       --lava-3: 255, 190, 60;
       --round: 12px;
   }

   * {
       box-sizing: border-box
   }

   html,
   body {
       height: 100%;
       margin: 0;
       display: flex;
       flex-direction: column;
       overflow-x: hidden;
   }

   body {
       font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
       color: rgb(var(--text));
       background:
           radial-gradient(900px 420px at 10% 10%, rgba(255, 94, 0, 0.03), transparent 12%),
           radial-gradient(1200px 520px at 85% 80%, rgba(255, 34, 34, 0.02), transparent 10%),
           linear-gradient(180deg, rgba(var(--bg-1), 1) 0%, rgba(var(--bg-0), 1) 100%);
       background-attachment: fixed;
       -webkit-font-smoothing: antialiased;
       -moz-osx-font-smoothing: grayscale;
       display: flex;
       flex-direction: column;
   }

   ::selection {
       background: #ff2222;
       color: black;
   }

   ::-moz-selection {
       background: #ff2222;
       color: black;
   }

   ::-webkit-scrollbar {
       width: 8px;
       height: 8px;
   }

   ::-webkit-scrollbar-thumb {
       background: #ff2222;
       border-radius: 10px;
   }

   ::-webkit-scrollbar-thumb:hover {
       background: #ff2222;
   }

   ::-webkit-scrollbar-track {
       background: rgb(2, 2, 2);
   }

   .ember-layer {
       position: fixed;
       inset: 0;
       z-index: 0;
       pointer-events: none;
       overflow: hidden
   }

   .ember {
       position: absolute;
       border-radius: 50%;
       filter: blur(8px);
       opacity: .08;
       mix-blend-mode: screen;
       animation-timing-function: linear
   }

   @keyframes floatX {
       0% {
           transform: translateY(0) translateX(0) scale(1)
       }

       50% {
           transform: translateY(-220px) translateX(60px) scale(1.02)
       }

       100% {
           transform: translateY(-420px) translateX(-40px) scale(.9)
       }
   }

   .nav {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       z-index: 100;
       height: 68px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 0 24px;
       background: rgba(10, 10, 10, 0.6);
       backdrop-filter: blur(14px) saturate(180%);
       border-bottom: 1px solid rgba(255, 255, 255, 0.04);
       box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
       transition: background 0.3s ease, box-shadow 0.3s ease;
   }

   .branding {
       display: flex;
       align-items: center;
       gap: 10px;
       text-decoration: none;
       color: #fff;
       font-weight: 900;
       font-size: 18px;
       letter-spacing: 1px;
   }

   .nav-logo {
       width: 38px;
       height: 38px;
       border-radius: 8px;
       background: linear-gradient(135deg, rgba(255, 94, 0, 0.15), rgba(255, 34, 34, 0.08));
       box-shadow: 0 0 16px rgba(255, 94, 0, 0.4);
       object-fit: contain;
   }

   .glitch {
       position: relative;
       font-weight: 900;
       font-size: 20px;
       letter-spacing: 1.5px;
       color: #fff;
       text-transform: uppercase;
       animation: glitchAnim 3s infinite linear alternate;
   }

   .glitch::before,
   .glitch::after {
       content: attr(data-text);
       position: absolute;
       left: 0;
   }

   .glitch::before {
       text-shadow: -2px 0 rgba(255, 34, 34, 0.7);
       animation: glitchShift 1.5s infinite linear alternate-reverse;
   }

   .glitch::after {
       text-shadow: 2px 0 rgba(255, 160, 60, 0.7);
       animation: glitchShift 1.6s infinite linear alternate;
   }

   @keyframes glitchShift {
       0% {
           clip-path: inset(0 0 90% 0);
           transform: translate(-2px, -2px);
       }

       25% {
           clip-path: inset(20% 0 60% 0);
           transform: translate(2px, 1px);
       }

       50% {
           clip-path: inset(60% 0 20% 0);
           transform: translate(-1px, 1px);
       }

       75% {
           clip-path: inset(40% 0 40% 0);
           transform: translate(1px, -1px);
       }

       100% {
           clip-path: inset(0 0 0 0);
           transform: translate(0, 0);
       }
   }

   #navbar-items {
       display: flex;
       align-items: center;
       gap: 16px;
   }

   .navbar-item {
       color: rgba(255, 255, 255, 0.85);
       text-decoration: none;
       font-weight: 700;
       font-size: 14px;
       padding: 8px 10px;
       transition: color 0.25s ease, transform 0.25s ease;
   }

   .navbar-item:hover {
       transform: translateY(-2px);
   }

   .navbar-button {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 6px;
       padding: 10px 16px;
       border-radius: 10px;
       background: linear-gradient(135deg, #ff5e00, #ff2222);
       color: #fff;
       font-weight: 800;
       box-shadow: 0 4px 16px rgba(255, 94, 0, 0.3);
       border: none;
       cursor: pointer;
       letter-spacing: 0.5px;
       transition: all 0.25s ease;
   }

   .navbar-button:hover {
       transform: translateY(-2px) scale(1.03);
       box-shadow: 0 6px 24px rgba(255, 94, 0, 0.45);
   }

   #navbar-burga {
       display: none;
       background: none;
       border: none;
       color: #fff;
       font-size: 28px;
       cursor: pointer;
       transition: transform 0.3s ease;
       margin-left: 12px;
   }

   #navbar-burga.active {
       transform: rotate(90deg);
   }

   @media (max-width: 768px) {
       #navbar-burga {
           display: block;
       }

       #navbar-items {
           position: fixed;
           top: 68px;
           left: 0;
           right: 0;
           bottom: 0;
           background: rgba(0, 0, 0, 0.96);
           backdrop-filter: blur(16px) saturate(200%);
           display: none;
           flex-direction: column;
           align-items: center;
           justify-content: center;
           gap: 20px;
           padding: 40px 0;
           transform: translateY(-10px);
           opacity: 0;
           transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
       }

       #navbar-items.show {
           display: flex;
           transform: translateY(0);
           opacity: 1;
       }

       .navbar-item {
           width: auto;
           text-align: center;
           font-size: 18px;
           padding: 12px 20px;
           border-radius: 10px;
           color: rgba(255, 255, 255, 0.85);
           transition: all 0.3s ease;
       }

       .navbar-item:hover {
           background: rgba(255, 255, 255, 0.05);
           color: #fff;
       }

       .navbar-button {
           background: linear-gradient(135deg, #ff5e00, #ff2222);
           border-radius: 12px;
           padding: 12px 30px;
           font-size: 16px;
           font-weight: 900;
           text-transform: uppercase;
           box-shadow: 0 8px 30px rgba(255, 94, 0, 0.4);
       }
   }

   #navbar-items.show .navbar-item {
       animation: fadeUp 0.4s ease forwards;
   }

   #navbar-items.show .navbar-item:nth-child(1) {
       animation-delay: 0.05s;
   }

   #navbar-items.show .navbar-item:nth-child(2) {
       animation-delay: 0.1s;
   }

   #navbar-items.show .navbar-item:nth-child(3) {
       animation-delay: 0.15s;
   }

   @keyframes fadeUp {
       from {
           transform: translateY(10px);
           opacity: 0;
       }

       to {
           transform: translateY(0);
           opacity: 1;
       }
   }



   /*       nav#nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 22;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.06));
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(8px)
        }*/

   /*   .logo {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            background: linear-gradient(135deg, rgba(var(--lava-1), 1), rgba(var(--lava-2), 1));
            box-shadow: 0 6px 28px rgba(255, 94, 0, 0.12)
        }*/
   /*  .logo {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(255, 94, 0, 0.1), rgba(255, 34, 34, 0.08));
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;

        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 0 6px rgba(255, 94, 0, 0.6));
        }*/

   @keyframes lavaPulse {

       0%,
       100% {
           box-shadow: 0 0 12px rgba(255, 94, 0, 0.45), 0 0 24px rgba(255, 34, 34, 0.25);
       }

       50% {
           box-shadow: 0 0 28px rgba(255, 94, 0, 0.85), 0 0 38px rgba(255, 34, 34, 0.45);
       }
   }


   .brand {
       color: rgb(var(--text));
       font-weight: 800;
       letter-spacing: 1px;
       text-decoration: none
   }

   main.container {
       flex: 1 0 auto;
       position: relative;
       z-index: 10;
       max-width: 1200px;
       margin: 92px auto 28px;
       padding: 0 18px
   }

   header.h {
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 12px;
       margin-bottom: 8px
   }

   .title-lg {
       font-size: 20px;
       font-weight: 900
   }

   .subtitle {
       color: rgba(var(--muted), 0.95);
       font-weight: 700;
       font-size: 13px
   }

   #landing {
       transition: opacity .25s ease, transform .25s ease
   }

   .cards {
       display: grid;
       gap: 14px;
       grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
       margin-top: 12px
   }

   .node-card {
       border-radius: 12px;
       padding: 14px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 12px;
       background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
       border: 1px solid rgba(255, 255, 255, 0.03);
       box-shadow: 0 10px 36px rgba(0, 0, 0, 0.6);
       cursor: pointer;
       transition: transform .22s, box-shadow .22s, border-color .22s;
       overflow: hidden
   }

   .node-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 18px 64px rgba(0, 0, 0, 0.7)
   }

   .node-card.online {
       border-color: rgba(255, 94, 0, 0.9)
   }

   .node-left {
       display: flex;
       align-items: center;
       gap: 12px;
       flex: 1;
       overflow: hidden
   }

   .node-icon {
       width: 56px;
       height: 56px;
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: 900;
       background: linear-gradient(135deg, rgba(255, 94, 0, 0.12), rgba(255, 34, 34, 0.08));
       flex-shrink: 0
   }

   .node-meta h3,
   .node-meta p {
       margin: 0;
       white-space: nowrap;
       overflow: hidden;
       text-overflow: ellipsis
   }

   .node-meta h3 {
       font-size: 16px;
       font-weight: 800;
       max-width: 200px
   }

   .node-meta p {
       font-size: 13px;
       color: rgba(var(--muted), 0.95);
       max-width: 260px
   }

   #detail {
       margin-top: 18px;
       display: none;
       opacity: 0;
       transform: translateY(12px);
       transition: opacity .28s ease, transform .28s ease
   }

   #detail.show {
       display: block;
       opacity: 1;
       transform: translateY(0)
   }

   .detail-box {
       border-radius: 14px;
       padding: 14px;
       background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
       border: 1px solid rgba(255, 255, 255, 0.03);
       box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6)
   }

   .detail-grid {
       display: grid;
       grid-template-columns: 1fr 360px;
       gap: 14px;
       align-items: start
   }

   @media(max-width:980px) {
       .detail-grid {
           grid-template-columns: 1fr
       }
   }

   .cards-row {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 12px
   }

   @media(max-width:640px) {
       .cards-row {
           grid-template-columns: 1fr
       }
   }

   .card {
       border-radius: 10px;
       padding: 12px;
       background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.10));
       border: 1px solid rgba(255, 255, 255, 0.03)
   }

   .label {
       font-size: 12px;
       color: rgba(var(--muted), 0.95);
       letter-spacing: 1px;
       text-transform: uppercase;
       font-weight: 800
   }

   .value {
       font-size: 28px;
       font-weight: 900;
       margin-top: 6px
   }

   .status-pill {
       display: inline-flex;
       gap: 10px;
       padding: 8px 12px;
       border-radius: 999px;
       align-items: center;
       background: rgba(0, 0, 0, 0.32);
       border: 1px solid rgba(255, 255, 255, 0.03)
   }

   .status-dot {
       width: 14px;
       height: 14px;
       border-radius: 50%;
       box-shadow: 0 0 18px rgba(255, 94, 0, 0.5), 0 0 28px rgba(255, 34, 34, 0.12);
       animation: pulse 1.8s infinite
   }

   @keyframes pulse {
       0% {
           transform: scale(1);
           opacity: 1
       }

       50% {
           transform: scale(0.86);
           opacity: 0.55
       }

       100% {
           transform: scale(1);
           opacity: 1
       }
   }

   .progress {
       height: 12px;
       border-radius: 999px;
       background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.005));
       overflow: hidden;
       margin-top: 10px;
       border: 1px solid rgba(255, 255, 255, 0.02)
   }

   .fill {
       height: 100%;
       width: 0%;
       border-radius: 999px;
       transition: width 900ms cubic-bezier(.2, .9, .3, 1);
       background: linear-gradient(90deg, rgba(var(--lava-1), 1), rgba(var(--lava-3), 0.95), rgba(var(--lava-2), 1));
       position: relative;
       overflow: hidden
   }

   .fill::after {
       content: '';
       position: absolute;
       inset: 0;
       background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
       transform: translateX(-100%);
       animation: shimmer 2.6s linear infinite;
       mix-blend-mode: overlay
   }

   @keyframes shimmer {
       100% {
           transform: translateX(100%)
       }
   }

   .charts {
       margin-top: 14px;
       display: grid;
       gap: 12px
   }

   .chart-card {
       padding: 10px;
       border-radius: 10px;
       background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
       border: 1px solid rgba(255, 255, 255, 0.03);
       height: 220px;
       display: flex;
       flex-direction: column
   }

   .chart-card canvas {
       width: 100% !important;
       height: 140px !important
   }

   .legend-row {
       display: flex;
       gap: 12px;
       align-items: center;
       margin-bottom: 6px
   }

   .legend-item {
       display: flex;
       align-items: center;
       gap: 8px;
       font-weight: 800;
       color: rgba(var(--muted), 0.95)
   }

   .legend-badge {
       width: 18px;
       height: 18px;
       border-radius: 6px;
       display: inline-block;
       box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6)
   }

   .legend-badge.pulse {
       animation: legendPulse 1.8s infinite
   }

   @keyframes legendPulse {
       0% {
           transform: scale(1)
       }

       50% {
           transform: scale(1.06)
       }

       100% {
           transform: scale(1)
       }
   }

   .back {
       margin-bottom: 8px;
       display: inline-flex;
       align-items: center;
       gap: 8px;
       padding: 8px 12px;
       border-radius: 8px;
       color: rgb(255, 94, 0);
       background: rgba(0, 0, 0, 0.32);
       border: 1px solid rgba(255, 255, 255, 0.03);
       cursor: pointer
   }

   footer.footer {
       flex-shrink: 0;
       margin-top: auto;
       padding: 20px 0;
       text-align: center;
       color: rgba(255, 255, 255, 0.75);
       font-weight: 700;
       font-size: 13px;
       border-top: 1px solid rgba(255, 255, 255, 0.04);
       background: linear-gradient(180deg, rgba(255, 94, 0, 0.03), rgba(255, 34, 34, 0.02));
       position: relative;
       z-index: 12;
       backdrop-filter: blur(10px)
   }

   .footer span {
       background: linear-gradient(90deg, rgba(255, 94, 0, 1), rgba(255, 160, 60, 1));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       font-weight: 900
   }

   .footer a {
       color: rgba(255, 160, 60, 0.9);
       text-decoration: none;
       transition: opacity .3s
   }

   .footer a:hover {
       opacity: 0.85
   }

   @media(max-width:640px) {
       main.container {
           margin: 80px 12px 16px
       }

       .chart-card {
           height: 180px
       }

       .chart-card canvas {
           height: 120px !important
       }

       .node-meta h3 {
           max-width: 110px
       }

       .node-meta p {
           max-width: 120px
       }
   }

   .loading-screen {
       position: fixed;
       inset: 0;
       display: flex;
       justify-content: center;
       align-items: center;
       z-index: 999999999;
       background-color: #000000;
   }

   .loading-header {
       top: 0;
       left: 0;
       right: 0;
       z-index: 100;
       height: 68px;
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 20px 0;
       transform: translateX(-50%);
       color: var(--backgroundColor);
       pointer-events: none;
   }

   .loading-marquee {
       position: absolute;
       top: 50%;
       left: 0;
       width: 100%;
       transform: translateY(-50%);
       color: rgba(139, 139, 139, 0.06);
       font-size: 60px;
       font-weight: 600;
       text-transform: uppercase;
       z-index: 1;
       pointer-events: none;
   }

   .loading-marquee .marquee-inner {
       display: flex;
       gap: 20px;
       animation: marqueeScroll 18s linear infinite;
       white-space: nowrap;
   }

   @keyframes marqueeScroll {
       0% {
           transform: translateX(0);
       }

       100% {
           transform: translateX(-50%);
       }
   }

   .loaderGame {
       pointer-events: none;
       z-index: 999999999;
   }

   .loaderGame-container {
       width: 200px;
       transition: 0.3s;
       height: 100px;
       overflow: hidden;
       position: relative;
       transform: scale(0.4);
       transform-origin: top right;
   }

   .loaderGame-in {
       width: 1200px;
       position: absolute;
       overflow: hidden;
       left: 0;
       animation: loaderGame 7s linear infinite;
       top: 0;
   }

   @keyframes loaderGame {
       0% {
           transform: translateX(0);
       }

       100% {
           transform: translateX(-300px);
       }
   }

   .loaderGame-line {
       float: left;
       margin: 0 20px;
       margin-bottom: 40px;
       width: 10px;
       height: 60px;
       background: #ff0000;
       display: block;
   }

   .loaderGame-line:nth-child(2n) {
       margin-top: 40px;
       margin-bottom: 0;
   }

   .loaderGame-ball {
       position: absolute;
       left: 20%;
       top: 0;
       width: 15px;
       height: 15px;
       border-radius: 50%;
       background: #ffffff;
       animation: ball25 7s infinite;
       transform: translateY(10px);
       animation-timing-function: cubic-bezier(0.3, 1.18, 0.63, 1.28);
       z-index: 2;
   }

   @keyframes ball25 {
       0% {
           transform: translateY(70px);
       }

       15% {
           transform: translateY(10px);
       }

       30% {
           transform: translateY(70px);
       }

       45% {
           transform: translateY(10px);
       }

       67% {
           transform: translateY(70px);
       }

       80% {
           transform: translateY(10px);
       }

       90% {
           transform: translateY(70px);
       }

       100% {
           transform: translateY(70px);
       }
   }

   .loader-out .loaderGame-container {
       opacity: 0;
       transition: opacity .5s;
   }

   .loading-wrap {
       --Lsize: var(--Lsize);
       padding: 6px;
       position: relative;
       border-radius: 100px;
       background-color: #000;
       overflow: hidden;
       transition: 0.8s ease-in-out;
       transition-delay: 0.2s;
       box-shadow: 0 15px 15px rgba(0, 0, 0, 0.2);
       display: flex;
       justify-content: center;
       align-items: center;
       z-index: 10;
   }

   .loading-button.expand {
       position: absolute !important;
       left: 50%;
       top: 50%;
       transform: translate(-50%, -50%) scale(1);
       animation: expandButton 1.2s ease forwards;
   }

   @keyframes expandButton {
       0% {
           transform: translate(-50%, -50%) scale(1);
           background-color: #000;
           border-radius: 100px;
           opacity: 1;
       }

       40% {
           transform: translate(-50%, -50%) scale(4);
           background-color: rgba(0, 0, 0, 0.5);
       }

       70% {
           transform: translate(-50%, -50%) scale(14);
           background-color: rgba(0, 0, 0, 0.2);
           opacity: .7;
       }

       100% {
           transform: translate(-50%, -50%) scale(40);
           background-color: transparent;
           border-radius: 5000px;
           opacity: 0;
       }
   }

   .loading-button.expand * {
       opacity: 0;
       transition: opacity .3s ease;
   }


   @keyframes growTransparent {
       0% {
           transform: scale(1);
           background-color: #000000;
           border-radius: 100px;
           opacity: 1;
       }

       40% {
           transform: scale(4);
           background-color: rgba(0, 0, 0, 0.4);
       }

       70% {
           transform: scale(12);
           background-color: rgba(0, 0, 0, 0.15);
           opacity: 0.7;
       }

       100% {
           transform: scale(40);
           background-color: transparent;
           border-radius: 5000px;
           opacity: 0;
       }
   }

   .loading-button.expand * {
       opacity: 0;
       transition: opacity .3s ease;
   }



   .loading-hover {
       background-color: #ff0000;
       width: 250px;
       height: 120px;
       position: absolute;
       top: var(--mouse-y);
       left: var(--mouse-x);
       border-radius: 50%;
       transform: translate(-50%, -50%);
       filter: blur(30px);
       opacity: 1;
       transition: opacity 500ms;
       pointer-events: none;
       z-index: 5;
   }

   .loading-clicked .loading-hover {
       opacity: 0;
   }

   .loading-button {
       padding: 20px 50px;
       border-radius: 100px;
       background-color: #000;
       overflow: hidden;
       font-size: 18px;
       font-weight: 500;
       position: relative;
       z-index: 9;
       color: #fff;
   }

   .loading-button::before {
       content: "";
       background-color: #ffffff;
       top: var(--mouse-y);
       left: var(--mouse-x);
       border-radius: 50%;
       width: 60px;
       height: 60px;
       opacity: 0;
       position: absolute;
       z-index: 99;
       filter: blur(60px);
       transform: translate(-50%, -50%);
       transition: opacity 160ms ease;
       pointer-events: none;
   }

   .loading-button:hover::before {
       opacity: 1;
   }

   .loading-clicked .loading-button::before {
       opacity: 0;
   }

   .loading-container {
       position: absolute;
       width: 100%;
       max-width: var(--Lsize);
       top: 50%;
       left: 50px;
       transform: translateY(-50%);
       transition: 1s;
       z-index: 9;
   }

   .loading-content {
       position: relative;
       background-color: #000;
       width: 100%;
       overflow: hidden;
       transition: .6s;
       text-transform: uppercase;
       z-index: 9;
   }

   .loading-content-in {
       position: relative;
       width: var(--Lsize);
       overflow: hidden;
       white-space: nowrap;
       letter-spacing: .8px;
       font-weight: 700;
       display: inline-block;
   }

   .loading-content-in span {
       font-weight: 300;
       position: absolute;
       top: 50%;
       right: 0;
       transform: translateY(-50%);
       opacity: .9;
   }

   #loadPercent {
       position: relative;
       z-index: 999999;
   }

   .loading-box {
       position: absolute;
       right: 0;
       top: 50%;
       transform: translate(100%, -50%);
       width: 15px;
       height: 25px;
       background: #fff;
       animation: blink 1s linear infinite;
       z-index: 9;
   }

   @keyframes blink {
       0% {
           opacity: 0
       }

       25% {
           opacity: 1
       }

       75% {
           opacity: 1
       }

       100% {
           opacity: 0
       }
   }

   .loading-icon {
       transform: scale(0);
       opacity: 0;
       transition: .5s;
       transition-delay: .5s;
   }

   .loading-complete .loading-icon {
       transform: scale(1);
       opacity: 1;
   }

   .loading-content2 {
       position: relative;
       letter-spacing: 2px;
       text-transform: uppercase;
       width: var(--Lsize);
       overflow: hidden;
       display: flex;
       justify-content: center;
       align-items: center;
       column-gap: 10px;
       text-align: center;
       transition: 1s;
       max-width: var(--Lsize);
       z-index: 9;
       opacity: 0;
       transform: translateY(12px);
   }

   .loading-clicked .loading-content2 {
       overflow: visible;
   }

   .loading-clicked .loading-content2 span {
       transition: 1s;
       transform: translateY(100px);
       opacity: 0;
   }

   .loading-complete .loading-content {
       opacity: 0;
       transform: translateY(-20px);
   }

   .loading-complete .loading-content2 {
       opacity: 1;
       transform: translateY(0);
   }

   .loading-complete .loading-box {
       animation: blinkDone 0.3s forwards;
       animation-delay: 1s;
       opacity: 1;
   }

   @keyframes blinkDone {
       to {
           opacity: 0;
       }
   }


   .loading-screen.hidden {
       opacity: 0;
       pointer-events: none;
       transition: opacity .6s ease;
   }


   @media only screen and (min-width:1400px) {
       :root {
           --Lsize: 210px;
       }

       .loading-button {
           padding: 30px 70px;
           font-size: 25px;
       }

       .loading-container {
           left: 70px;
       }

       .loading-marquee {
           font-size: 100px;
       }
   }

   @media only screen and (min-width:500px) {
       .loading-header {
           padding: 20px 0;
       }

       .loader-title {
           font-size: 16px;
       }
   }

   @media only screen and (min-width:1200px) {
       .loading-header {
           padding: 35px 0;
       }

       .loader-title {
           font-size: 18px;
       }
   }

   @media (max-width:640px) {
       .loading-marquee {
           display: none;
       }

       .loaderGame-container {
           display: none;
       }

       .loading-button {
           padding: 16px 28px;
           font-size: 16px;
       }

       :root {
           --Lsize: 120px;
       }
   }


   .hidden {
       display: none !important;
   }
