
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    background-color: #0D0D0D !important;
}

a {
    text-decoration: none !important;
    color: #E4E4E4;
}

p {
    margin-bottom: 0px !important;
}
        .pre-order-link {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .live-dot {
            width: 8px;
            height: 8px;

            border-radius: 50%;

            background: #00ff88;

            animation: blink 2s infinite;
        }

        @keyframes blink {

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

            50% {
                opacity: .3;
                transform: scale(0);
            }

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

#mainHeader {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: transform 3s ease-out, opacity .5s ease-out;
}

#mainHeader.hide {
    transform: translateY(-100%);
    opacity: 0;
}

#mainHeader .nav-inner {
    transition: all 500ms ease;
    backdrop-filter: blur(0px);
    width: 100% !important;

}

#mainHeader.sticky {
    top: 0;
}

#mainHeader.sticky .nav-inner {
    padding: 10px 20px;
    /* shrink */
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0;
    max-width: 1600px !important;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-container {
    width: 100%;
}


/* Chrome, Safari */
::-webkit-scrollbar {
    display: none;
}

/* Firefox */
html {
    scrollbar-width: none;
}




.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SIDE DRAWER */
.side-drawer {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    top: 115px !important;

    opacity: 0;
    visibility: hidden;
    z-index: 9998;
}

.side-drawer.active {
    opacity: 1;
    visibility: visible;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #00d1ff;
    transition: 0.5s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* MENU */
.drawer-menu {
    width: 100%;
    padding: 32px 20px;
    border-radius: 16px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 0.5px rgba(255, 255, 255, 0.2);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.drawer-menu a {
    font-size: 22px;
    color: #ccc;
    text-align: center;
}


.webnav .cursor-pointer.active,
.drawer-menu a.active {
    color: #00d1ff !important;
}



.primary-btn {
    background: #00d1ff;
    border: none;
}

@media (max-width: 575px) {
    #mainHeader {
        top: 20px;
    }

    nav,
    .webnav,
    #mainHeader a.contact-btn {
        display: none;
    }


    .hamburger {
        display: flex;
    }
}

@media (min-width: 576px) and (max-width: 992px) {
    #mainHeader {
        top: 20px;
    }

    /* ================= NAV ================= */
    .webnav,
    #mainHeader a.contact-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #mainHeader {
        top: 10px;
    }
}
.footer-section {
  background: #0A0A0A;

  .footer-logo {
    width: 170px;
  }

  .footer-link {
    color: #EDEDEDA3;
    text-decoration: none;
    transition: 0.3s ease;

    &:hover {
      color: #01E2FD;
    }
  }

  .store-btn {
    width: 180px;
    cursor: pointer;
  }

  .footer-bottom-link {
    color: #EDEDEDA3;
  }
}

.social-icons {
  width: 45px;
  height: 45px;

  &:hover {
    color: #000 !important;
    background: #01E2FD !important;
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

  .footer-section {

    .wrapper-1290 {
        text-align: center !important;

      > .d-flex:first-child {
        flex-wrap: wrap;
        gap: 48px;
        padding-left: 16px !important;
        padding-right: 16px !important;
      }

      > .d-flex:last-child {
        flex-direction: column;
        gap: 24px;
        margin-top: 0px !important;
      }
    }

    .footer-brand {
      width: 100%;
    }
  }
}

@media (max-width: 768px) {

  .footer-section {
    padding-left: 20px !important;
    padding-right: 20px !important;

    .wrapper-1290 {

      > .d-flex:first-child {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px !important;
      }
    }

    .footer-logo {
      width: 150px;
    }

    .store-btn {
      width: 160px;
    }


    .footer-bottom-link {
      font-size: 14px !important;
    }
  }
}

@media (max-width: 575px) {

  .footer-section {

    .store-btn {
      width: 150px;
    }

    .social-icons {
      width: 40px;
      height: 40px;
    }

    .footer-bottom-link {
      font-size: 13px !important;
    }

    .footer-section p,
    .footer-link {
      font-size: 14px !important;
    }
  }
}