* {
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Press Start 2P', cursive;
    line-height: 1em;
    font-weight: 400;
    margin: 0;
    transition: 300ms ease-in-out;
}
p, a {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    line-height: 1.6em;
}
a {
    text-decoration: none;
}
p:last-of-type {
    padding-bottom: 0;
}
img {
    max-width: 100%;
}
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    background: url(../content/preloader.gif) center no-repeat rgba(0, 0, 0, 0.8);
    background-size: 130px 130px;
    overflow-x: hidden;
}
.page-container {
    position: relative;
    overflow: hidden;
}
/* Header and Navigation Styles */
header {
    position: fixed;
    color: #fff;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 999999;
    transition: 300ms ease-in-out;
}
.nav-container {
    position: relative;
    width: 90%;
    max-width: 1440px;
    margin: auto;
}
.nav-container:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 2px;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #32CD32 75%, #32CD32 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #32CD32 75%, #32CD32 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #32CD32 75%, #32CD32 100%);
    animation: animatedLine 5s 0s infinite;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-fill-mode: forwards;
}
@keyframes animatedLine {
    0% {
        left: -150px;
    }
    60% {
        left: calc(100% + 150px);
    }
    100% {
        left: calc(100% + 250px);
    }
}
.nav-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
}
.nav-wrapper .logo-wrapper img {
    width: 100px;
}
.nav-wrapper .menu-wrapper {
    padding-left: 60px;
}
.nav-wrapper .menu-wrapper ul {
    list-style-type: none;
    padding: 0;
}
.nav-wrapper .menu-wrapper ul li {
    position: relative;
    display: inline-block;
    padding-right: 30px;
}
.nav-wrapper .menu-wrapper ul li:last-child {
    padding-right: 0;
}
.nav-wrapper .menu-wrapper ul li a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: 300ms ease-in-out;
}
.nav-wrapper .menu-wrapper ul li a:hover {
    text-shadow: -1px -1px 0 #32CD32, 1px -1px 0 #32CD32, 2px 2px 0 #32CD32, 3px 3px 0 #32CD32;
    letter-spacing: 3px;
}
.nav-wrapper .social-links-wrapper {
    margin-left: auto;
}
.nav-wrapper .social-links-wrapper ul {
    display: flex;
    gap: 10px;
    align-items: center;
    list-style-type: none;
    padding: 0;
}
.nav-wrapper .social-links-wrapper ul li a {
    line-height: 0;
}
.nav-wrapper .social-links-wrapper ul li img {
    width: 40px;
    border-radius: 50%;
}
.nav-wrapper .mobile-menu-toggle {
    display: none;
}
.nav-wrapper .mobile-menu-wrapper {
    display: none;
}
/* Main Content */
.section {
    position: relative;
}
.row {
    position: relative;
    width: 90%;
    max-width: 1440px;
    margin: auto;
}
.video-bg video {
    position: fixed;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.video-bg img {
    position: fixed;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.video-bg .overlay {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 300ms ease-in-out;
}
body.light .video-bg .overlay {
    background: #E0DEBF;
    z-index: -1;
}
body.dark .video-bg .overlay {
    background: #000;
    z-index: -1;
}
.section.intro-section {
    z-index: 9;
}
.intro-section .intro-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.intro-content-wrapper .info-container {
    position: relative;
    width: 760px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    margin: 0 auto;
    text-align: center;
    transition: 300ms ease-in-out;
}
.intro-content-wrapper .info-container.hidden {
    opacity: 0;
}
.info-container h1 {
    position: relative;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
}
.info-container .intro-text h1 a {
    line-height: 0;
}
.info-container h1 span {
    font-size: 16px;
    color: #32CD32;
    text-decoration: none;
    animation: flickerText 5s ease-in-out infinite;
    z-index: 9;
}
.wallet-table table {
    margin-top: 15px;
    width: 100%;
    color: #FFF;
    border-collapse: collapse;
    text-shadow: 0 0 5px #32CD32, 0 0 10px #32CD32, 0 0 15px #32CD32;
}
.wallet-table th, .wallet-table td {
    padding: 15px;
    text-align: center;
}
.wallet-table th {
    text-shadow: 0 0 5px #32CD32, 0 0 10px #32CD32;
}
.wallet-table td {
    font-size: 14px;
}
.wallet-table td, .wallet-table th {
    animation: flickerText 5s ease-in-out infinite;
}
@keyframes flickerText {
    0%, 15%, 30%, 40%, 50%, 60%, 100% {
        text-shadow: 0 0 5px #32CD32, 0 0 10px #32CD32, 0 0 15px #32CD32;
    }
    5%, 10%, 25%, 55% {
        text-shadow: none;
    }

    /* 0%, 15%, 30%, 40%, 50%, 60%, 100% {
        text-shadow: 0 0 5px #32CD32, 0 0 10px #32CD32, 0 0 15px #32CD32;
    }
    
    5%, 10%, 25% {
        text-shadow: none;
    } */
}
.contract-address {
    display: inline-block;
    float: right;
    padding: 5px 10px;
    margin-top: 25px;
    border-radius: 5px;
    box-shadow: 0 0 1px #32CD32, 0 0 0px #32CD32, 0 0 0px #32CD32, 0px 0px 10px #32CD32;
}
.contract-address a {
    display: inline-block;
    font-size: 10px;
    text-decoration: none;
    color: #fff;
}
.contract-address a.short-address {
    display: none;
}
.contract-address .copy-address {
    display: inline-block;
    vertical-align: middle;
}
.copy-address button {
    position: relative;
    line-height: 1em;
    background: transparent;
    border: none;
    cursor: pointer;
}
.copy-address button:after {
    content: "Copy";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    opacity: 0;
    transition: 300ms ease-in-out;
}
.copy-address button:hover:after {
    opacity: 1;
    top: -20px;
}
.copy-address button.clicked:after {
    content: "Copied";
}
.copy-address button svg path {
    fill: #fff;
}

/* Modal Popup */
.modal-popup {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    overflow: hidden;
    z-index: 9999999999999;
}
.modal-popup .slider-wrapper .swiper-slide img {
    width: 100%;
}
.modal-popup.memes-popup {
    width: 960px;
}
.modal-popup.stickers-popup {
    width: 500px;
}
body.light .modal-popup.memes-popup .coming-soon-slide {
    background: #0f0f0f;
}
body.dark .modal-popup.memes-popup .coming-soon-slide {
    background: #444;
}
body.light .modal-popup.stickers-popup .coming-soon-slide {
    background: #E0DCC2;
}
body.dark .modal-popup.stickers-popup .coming-soon-slide {
    background: #000;
}
.modal-popup .coming-soon-slide p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 80%;
    text-align: center;
    animation: flickerText 5s ease-in-out infinite;
}
body.light .modal-popup.stickers-popup .coming-soon-slide p {
    color: #0f0f0f;
}
.popup-wrapper span.download-slider-img {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 10px;
    padding: 10px 15px 10px 35px;
    cursor: pointer;
    z-index: 9;
    transition: 300ms ease-in-out;
}
.popup-wrapper span.download-slider-img:hover {
    text-shadow: -1px -1px 0 #32CD32, 1px -1px 0 #32CD32, 1px 1px 0 #32CD32, 2px 2px 0 #32CD32;
}
.popup-wrapper span.download-slider-img:before, .popup-wrapper span.download-slider-img:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 15px;
    top: 52%;
}
.popup-wrapper span.download-slider-img:before {
    width: 10px;
    height: 2px;
    border-style: solid;
    border-width: 0 2px 2px;
}
.popup-wrapper span.download-slider-img:after {
    width: 0;
    height: 0;
    margin-left: 3px;
    margin-top: -7px;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: transparent;
    border-top-color: inherit;
    animation: downloadArrow 2s linear infinite;
    animation-play-state: paused;
}
.popup-wrapper span.download-slider-img:before {
    border-color: #32CD32;
}
.popup-wrapper span.download-slider-img:after {
    border-top-color: #32CD32;
    animation-play-state: running;
}
@keyframes downloadArrow {
    0% {
        margin-top: -7px;
        opacity: 1;
    }
    0.001% {
        margin-top: -15px;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        margin-top: 0;
        opacity: 0;
    }
}
.modal-popup .swiper-button-next:after, .modal-popup .swiper-button-prev:after {
    font-weight: 700;
    color: #32CD32;
    transition: 300ms ease-in-out;
}
/* Background overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9;
}
body.dark .modal-overlay {
    background: rgba(68, 68, 68, 0.5);
}
/* footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
footer .copyright {
    padding: 0 0 5px;
    text-align: center;
}
footer .copyright img {
    margin-bottom: -5px;
}
footer .copyright p {
    font-size: 12px;
    text-align: center;
    margin: 0;
    transition: 300ms ease-in-out;
    color: #0f0f0f;
}
/* theme switch */
.theme-switch {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 9999;
}
.theme-switch .checkbox {
    opacity: 0;
    position: absolute;
}
.theme-switch .label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-radius: 50px;
    position: relative;
    height: 64px;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.theme-switch .label:hover .moon,
.theme-switch .label:hover .sun {
    transform: rotate(360deg);
}
.theme-switch .ball {
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    position: absolute;
    border-radius: 50%;
    top: 5px;
    left: 5px;
    height: 30px;
    width: 30px;
    transform: translateY(0);
}
.theme-switch .moon {
    color: #32CD32;
    transform-origin: center center;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    transform: rotate(0);
}
.theme-switch .sun {
    color: #32CD32;
    transform-origin: center center;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    transform: rotate(0);
}
.dark .theme-switch .ball {
    transform: translateY(40px);
}
body.light header {
    background: #444;
}
body.light .intro-content-wrapper .info-container {
    background-color: #0f0f0f;
}
body.light .wallet-table th {
    background: #444;
}
body .wallet-table tbody tr {
    cursor: pointer;
}
body.light .wallet-table tr:nth-child(even) {
    background-color: #444;
}
body.light .theme-switch .label {
    background-color: #0f0f0f;
}
body.light .theme-switch .ball {
    background-color: #fff;
}
body.dark header {
    background: #0f0f0f;
}
body.dark .intro-content-wrapper .info-container {
    background-color: #444;
}
body.dark .wallet-table th {
    background: #0f0f0f;
}
body.dark .wallet-table tr:nth-child(even) {
    background-color: #0f0f0f;
}
body.dark .theme-switch .label {
    background-color: #444;
    box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.6);
}
body.dark .theme-switch .ball {
    background-color: #0f0f0f;
}
body.light .popup-wrapper span.download-slider-img {
    background: #0f0f0f;
}
body.dark .popup-wrapper span.download-slider-img {
    background: #444;
}
body.dark footer .copyright p {
    color: #fff;
}
body.light footer .copyright p {
    color: #0f0f0f;
}
@media (max-width: 1440px) {
    .nav-wrapper .logo-wrapper img {
        width: 80px;
    }
    .info-container h1 {
        font-size: 14px;
        line-height: 22px;
    }
    .wallet-table th, .wallet-table td {
        padding: 12px;
    }
    .wallet-table th {
        font-size: 14px;
        line-height: 10px;
    }
    .wallet-table td {
        font-size: 13px;
        line-height: 10px;
    }
}
@media (max-width: 980px) {
    .nav-wrapper .logo-wrapper img {
        width: 70px;
    }
    .nav-wrapper .logo-wrapper img {
        width: 80px;
    }
    .nav-wrapper .menu-wrapper {
        padding-left: 40px;
    }
    .nav-wrapper .menu-wrapper ul li {
        padding-right: 20px;
    }
    .nav-wrapper .menu-wrapper ul li a {
        font-size: 16px;
    }
    .nav-wrapper .social-links-wrapper ul li img {
        width: 30px;
    }
    .intro-content-wrapper .info-container {
        width: 85%;
    }
    .modal-popup.memes-popup {
        width: 85%;
    }
}
@media (min-width: 768px) and (max-width: 860px) {
    .nav-wrapper .menu-wrapper {
        padding-left: 30px;
    }
    .nav-wrapper .menu-wrapper ul li {
        padding-right: 10px;
    }
    .nav-wrapper .menu-wrapper ul li a {
        font-size: 16px;
    }
    .nav-wrapper .social-links-wrapper ul li img {
        width: 25px;
    }
}
@media (max-width: 767px) {
    header.toggleMobileMenu {
        background: rgba(0, 0, 0, 0.85);
    }
    .nav-wrapper .menu-wrapper {
        display: none;
    }
    .nav-wrapper .logo-wrapper img {
        width: 50px;
    }
    .nav-wrapper .social-links-wrapper ul li img {
        width: 25px;
    }
    .nav-wrapper .mobile-menu-toggle {
        display: block;
        margin-left: 20px;
    }
    .hamburger {
        width: 40px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        position: relative;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 4px;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(12px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-12px) rotate(-45deg);
    }
    .nav-wrapper .mobile-menu-wrapper {
        width: 100%;
        display: block;
        opacity: 0;
        visibility: hidden;
        height: 0;
        transition: 300ms ease-in-out;
    }
    .nav-wrapper .mobile-menu-wrapper ul {
        list-style-type: none;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        opacity: 0;
        visibility: hidden;
        height: 0;
    }
    .nav-wrapper .mobile-menu-wrapper ul li a {
        font-size: 12px;
        color: #fff;
    }
    .logo-wrapper, .social-links-wrapper, .mobile-menu-toggle {
        transition: 300ms ease-in-out;
    }
    header.toggleMobileMenu .logo-wrapper, header.toggleMobileMenu .menu-wrapper, header.toggleMobileMenu .social-links-wrapper, header.toggleMobileMenu .mobile-menu-toggle {
        display: none;
    }
    header.toggleMobileMenu .nav-wrapper .mobile-menu-wrapper {
        opacity: 1;
        visibility: visible;
        height: 100%;
    }
    header.toggleMobileMenu .nav-wrapper .mobile-menu-wrapper ul {
        opacity: 1;
        visibility: visible;
        height: 50px;
        padding-left: 30px;
    }
    .nav-wrapper .mobile-menu-wrapper .back-arrow {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        left: -5px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 500ms ease-in-out;
    }
    header.toggleMobileMenu .nav-wrapper .mobile-menu-wrapper .back-arrow {
        opacity: 1;
        visibility: visible;
    }

    .intro-content-wrapper .info-container {
        width: 100%;
    }
    .info-container h1, .info-container h1 span {
        font-size: 13px;
        line-height: 21px;
    }
    .wallet-table {
        overflow: scroll;
    }
    .wallet-table table {
        table-layout: fixed;
    }
    .wallet-table th, .wallet-table td {
        padding: 10px;
    }
    .wallet-table th {
        font-size: 13px;
    }
    .wallet-table td {
        font-size: 10px;
        line-height: 12px;
    }
    .wallet-table tr td:last-child {
        font-size: 8px;
        padding: 10px 5px;
    }
    .contract-address {
        display: block;
        float: none;
        padding: 8px;
        margin-top: 20px;
    }
    .contract-address a.full-address {
        display: none;
    }
    .contract-address a.short-address {
        display: inline-block;
        font-size: 8px;
        vertical-align: middle;
        line-height: 1em;
    }
    .copy-address button svg {
        width: 13px;
        height: 13px;
    }
    .theme-switch {
        position: absolute;
        top: -25px;
        right: 0;
    }
    .theme-switch .label {
        flex-direction: row;
        width: 64px;
        height: auto;
        padding: 5px;
    }
    .theme-switch .ball {
        height: 25px;
        width: 25px;
        transform: translateX(0);
    }
    .dark .theme-switch .ball {
        transform: translateX(40px) translateY(0);
    }
    .modal-popup.memes-popup {
        width: 90%;
    }
    .modal-popup.stickers-popup {
        width: 500px;
    }
    .modal-popup .coming-soon-slide p {
        width: 80%;
        font-size: 14px;
        text-align: center;
    }
    .popup-wrapper span.download-slider-img {
        font-size: 8px;
        padding: 5px 10px 5px 30px;
    }
    .popup-wrapper span.download-slider-img:before, .popup-wrapper span.download-slider-img:after {
        left: 10px;
    }
    footer .copyright p {
        font-size: 10px;
    }
    .preloader {
        background-size: 100px 100px;
    }
}
@media (max-width: 480px) {
    .modal-popup.stickers-popup {
        width: 320px;
    }
    .modal-popup .coming-soon-slide p {
        width: 80%;
        font-size: 12px;
        text-align: center;
    }
}
@media (max-width: 480px) and (max-height: 700px) {
    .info-container h1, .info-container h1 span {
        font-size: 12px;
        line-height: 20px;
    }
    .wallet-table th {
        font-size: 11px;
    }
    .wallet-table td {
        font-size: 9px;
        line-height: 5px;
    }
    .wallet-table th, .wallet-table td {
        padding: 8px;
    }
}
@media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-wrapper {
        padding: 6px 0;
    }
    .hamburger {
        width: 35px;
        height: 25px;
    }
    .nav-wrapper .logo-wrapper img {
        width: 45px;
    }
    header.toggleMobileMenu .nav-wrapper .mobile-menu-wrapper ul {
        height: 45px;
    }
    .nav-wrapper .mobile-menu-wrapper ul li a, .nav-wrapper .menu-wrapper ul li a {
        font-size: 10px !important;;
    }
    .intro-content-wrapper .info-container {
        padding: 15px;
    }
    .info-container h1, .info-container h1 span {
        font-size: 8px !important;
        line-height: 14px !important;;
    }
    .wallet-table {
        height: 65px;
        overflow: scroll;
    }
    .wallet-table th {
        font-size: 8px !important;;
    }
    .wallet-table td {
        font-size: 6px !important;;
        line-height: 6px !important;;
    }
    .wallet-table th, .wallet-table td {
        padding: 5px;
    }
    .wallet-table tr td:last-child {
        font-size: 6px !important;;
        padding: 5px;
    }
    .contract-address {
        margin-top: 15px;
        padding: 1px 5px;
    }
    .contract-address a {
        font-size: 6px !important;;
        line-height: 6px !important;;
        vertical-align: middle;
    }
    .contract-address .copy-address {
        line-height: 0;
    }
    .copy-address button svg {
        width: 12px;
        height: 12px;
    }
    .modal-popup.memes-popup {
        width: 350px;
    }
    .modal-popup.stickers-popup {
        width: 190px;
        top: 30% !important;
    }
    .popup-wrapper span.download-slider-img {
        font-size: 7px !important;;
        padding: 5px 10px 5px 30px;
    }
    .popup-wrapper span.download-slider-img:before, .popup-wrapper span.download-slider-img:after {
        left: 10px;
    }
    .modal-popup .swiper-button-next:after, .modal-popup .swiper-button-prev:after {
        font-size: 24px;
    }
    footer .copyright p {
        font-size: 8px !important;;
    }
    .theme-switch .label {
        padding: 5px;
    }
    .theme-switch .ball {
        height: 25px;
        width: 25px;
    }
}
@media screen and (max-width: 700px) and (orientation: landscape) {
    .intro-content-wrapper .info-container {
        padding: 15px;
    }
    .info-container h1, .info-container h1 span {
        font-size: 7px !important;
        line-height: 13px !important;
    }
    .wallet-table th {
        font-size: 7px !important;
    }
}