/* Configuration -------------------------------------------------------------------------------- */
html {
    scrollbar-width: none; /* Firefox */

    font-size: 16px !important;
    font-family: var(--defaultFont), monospace;
    font-weight: normal;
    font-style: normal;
    font-optical-sizing: auto;
}
body {
    animation: fadeIn forwards 1s ease-in-out;
}
.no-scroll {
    overflow: hidden;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
::-webkit-scrollbar {
    display: none;
}

/* Global Styling */
@media screen and (min-width: 500px) {
    html {
        background: var(--dark);
    }
    body {
        display: none;
        opacity: 0;
        pointer-events: none;
    }
}

/* 00 : Nexus -------------------------------------------------------------------------------- */
@media screen and (max-width: 999px) {
    /* Block */
    .block {
        display: flex;

        width: 100%;
        height: 5.5rem;
    }

    /* Nexus -------------------------------------------------------------------------------- */
    .nexus {
        z-index: 997;

        position: fixed;
        top: 0;
        left: 0;

        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;

        width: 100%;
        background: var(--dark01);

        transition: all 500ms ease-in-out;
    }
    .nexus-frame {
        position: relative;

        display: flex;
        flex-direction: column;

        width: 100%;

        margin: 0;
        padding: 0;
    }

    /* Nexus => Core */
    .nexus-core {
        position: relative;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        flex-direction: row;

        padding-left: 1rem;
        padding-right: 1rem;
        width: calc(100% - 2rem);
        height: 3rem;

        transition: all 500ms ease-in-out;
    }

    /* Nexus => Core => Brand */
    .nexus-core-brand {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        align-content: center;
        justify-content: flex-start;

        overflow: visible;

        margin: 0;
        padding: 0;

        gap: 0.5rem;
    }
    .nexus-core-brand-icon {
        min-width: 12px;
        height: 12px;

        transform: translateY(1px);

        transition: all 500ms ease-in-out;
    }
    .nexus-core-brand-title {
        position: relative;

        font-family: var(--titleFont);
        font-size: 1.35rem;
        font-weight: 800;
        font-style: normal;
        text-decoration: none;
        color: var(--light);

        margin: 0;
        padding: 0;

        transition: all 500ms ease;
    }

    /* Nexus => Core => Action */
    .nexus-core-action {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        gap: 1rem;
    }
    .nexus-core-action-frame {
        position: relative;
        cursor: pointer;

        display: flex;
        flex-direction: column;
        -webkit-tap-highlight-color: transparent;

        margin: 0;
        padding: 0;

        gap: 3px;

        transition: all 500ms ease-in-out;
    }
    .nexus-core-action-frame-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: center;

        gap: 3px;
    }
    .nexus-core-action-frame-group-dot {
        width: 3px;
        height: 3px;

        border-radius: 50%;
        transform: translate(0) scale(1);
        background: white;

        transition: all 500ms ease;
    }

    /* Nexus => Navigation -------------------------------------------------------------------------------- */
    .nexus-navigation {
        z-index: 998;
        position: relative;
        top: 0;
        left: 0;

        display: flex;
        flex-direction: column;

        margin: 0;
        padding: 0;
        height: 2.5rem;

        border-bottom: var(--noBorder);

        transition: all 500ms ease;
    }
    .nexus-navigation-frame {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: flex-start;

        overflow-x: scroll;
        scroll-behavior: smooth;

        height: 100%;
        width: calc(100% - 0rem);

        background: transparent;

        transition: all 500ms ease;
    }
    .nexus-navigation-frame-background {
        display: none;
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        opacity: 0;

        transition: all 500ms ease;
    }

    .nexus-navigation-brand {
        z-index: 0;
        pointer-events: none;

        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;


        max-width: max-content;
        height: 100%;

        padding-left: 0;
        padding-right: 0;

        color: white;

        text-decoration: none;

        transition: all 300ms ease;
    }

    .nexus-navigation-actions {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: flex-start;

        margin: 0;
        padding-left: 1rem;
        padding-right: 1rem;

        height: 100%;

        gap: 1rem;

        transition: all 150ms ease;
    }
    .reset-view {
        position: relative;

        width: 20px;
        height: 20px;

        opacity: 0;
        pointer-events: none;

        transition: all 500ms ease;
    }

    .nexus-navigation-actions-frame {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: flex-start;
        overflow-x: scroll;

        gap: 1.5rem;
        height: 100%;

        transition: all 500ms ease;
    }
    .nexus-navigation-actions-frame-title {
        z-index: 1;
        position: relative;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;

        text-align: center;
        font-size: 0.75rem;
        font-weight: 500;
        text-decoration: none;
        letter-spacing: 1px;

        height: 100%;

        backface-visibility: hidden;
        will-change: transform, opacity;
        transform: translate3d(0, 0, 0);

        min-width: max-content;

        color: var(--light);

        transition: all 500ms ease;
    }
    .active-title {
      color: var(--theme00); /* or any color to indicate active */
    }

    .nexus-navigation-icon {
        display: none;
    }

    /* Menu --------------------------------------------------------------------------- */
    .menu {
        z-index: 999;

        position: fixed;
        top: 0;
        left: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;

        pointer-events: none;
        transform: scale(1) translateX(-100%) rotate(0);
        transform-origin: center center;

        overflow: hidden;

        height: 100%;
        width: 100%;

        transition: all 300ms ease-in-out 150ms;
    }
    .menu-frame {
        z-index: 2;
        position: relative;

        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        align-content: flex-end;

        width: 100%;
        height: 100%;
    }
    .menu-frame-container {
        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;

        transform: translateX(0) rotate(0);

        width: 100%;
        height: 100%;

        transition: all 500ms ease-in-out 150ms;
    }

    /* Menu => Heading */
    .menu-heading {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        overflow: visible;

        margin: 0;
        padding-right: 1rem;
        padding-left: 1rem;

        height: 3.5rem;

        width: calc(100% - 2rem);

        gap: 0.5rem;

        transition: all 500ms ease-in-out;
    }
    .menu-heading-icon {
        min-width: 16px;
        height: 16px;

        background: url("/assets/icons/general/crescent-moon-light.png") no-repeat center center;
        background-size: contain;

        transition: all 500ms ease-in-out;
    }
    .close-menu {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 1px;

        color: var(--light);
        opacity: 0.3;


        margin: 0;
        padding: 0.5rem;

        transition: all 300ms ease;
    }

    /* Menu => Core */
    .menu-core {
        z-index: 1;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        align-content: center;

        height: 100%;
        width: 100%;

        margin-top: 1rem;
    }
    .menu-core-frame {
        display: flex;
        flex-direction: column;

        margin: 0;
        padding: 0;
        width: 100%;

        overflow-y: hidden;

        gap: 1rem;
    }

    /* Menu => Core => Group */
    .menu-core-group {
        cursor: pointer;

        display: flex;
        justify-content: right;
        text-align: right;

        margin-right: 1rem;
        margin-left: 1rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        width: calc(100% - 2rem);
        border-bottom: 0 solid transparent;

        transition: all 500ms ease;
    }
    .menu-core-group-title {
        position: relative;

        transform: translateX(-100%);
        font-size: 1rem;
        font-weight: 500;
        font-style: normal;
        -webkit-tap-highlight-color: transparent;

        text-decoration: none;

        opacity: 0;

        margin: 0;
        padding: 0;

        color: var(--theme00);

        transition: all 500ms ease 150ms;
    }
} /* Nexus => mobile */
@media screen and (min-width: 1000px) {
    /* Block */
    .block {
        display: flex;

        width: 100%;
        height: 6.6rem;
    }

    /* Nexus -------------------------------------------------------------------------------- */
    .nexus {
        z-index: 997;

        position: fixed;
        top: 0;
        left: 0;

        display: flex;
        flex-direction: column;
        align-content: center;
        justify-content: center;
        align-items: center;

        width: 100%;

        transition: all 500ms ease;
    }
    .nexus-frame {
        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;

        width: 100%;

        margin: 0;
        padding: 0;
    }

    /* Core -------------------------------------------------------------------------------- */
    .nexus-core {
        position: relative;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        flex-direction: column;

        padding-left: 2rem;
        padding-right: 2rem;
        width: calc(100% - 4rem);

        height: 5rem;

        border-bottom: var(--defaultBorder);

        transition: all 500ms ease-in-out;
    }
    .nexus-core-background {
        display: none;
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;
    }

    /* Core Controls */
    .nexus-core-controls {
        z-index: 998;

        position: relative;

        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        align-content: center;
        justify-content: flex-end;

        opacity: 1;

        width: 100%;
        overflow: visible;
        max-width: calc(1440px - 4rem) !important;
        gap: 0.5rem;

        transition: all 300ms ease;
    }

    .nexus-core-controls-branding {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        align-content: center;
        justify-content: center;

        overflow: visible;

        margin: 0;
        padding: 0;

        gap: 0.5rem;
    }
    .nexus-core-controls-branding-icon {
        min-width: 11px;
        height: 11px;

        transform: translateY(1px);
        background: url("/assets/icons/general/crescent-moon-light.png") no-repeat center center;
        background-size: contain;

        transition: all 500ms ease;
    }
    .nexus-core-controls-branding-title {
        position: relative;

        font-family: var(--titleFont);
        font-size: 1.5rem;
        font-weight: 600;
        font-style: normal;
        text-decoration: none;

        margin: 0;
        padding: 0;

        transition: all 500ms ease;
    }

    .nexus-core-control-action {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        gap: 1rem;
    }

    .nexus-access {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        overflow: visible;

        gap: 0.5rem;

        transition: all 300ms ease-in-out;
    }
    .nexus-access-frame {
        position: relative;
        cursor: pointer;

        display: flex;
        flex-direction: column;
        -webkit-tap-highlight-color: transparent;

        margin: 0;
        padding: 0;

        gap: 3px;

        transition: all 500ms ease-in-out;
    }
    .nexus-access-frame-group {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: center;

        gap: 3px;
    }
    .nexus-access-frame-group-dot {
        width: 3px;
        height: 3px;

        border-radius: 50%;
        transform: translate(0) scale(1);
        background: white;

        transition: all 500ms ease;
    }

    /* Nexus => Navigation -------------------------------------------------------------------------------- */
    .nexus-navigation {
        z-index: 998;
        position: relative;
        top: 0;
        left: 0;

        display: flex;
        flex-direction: column;

        margin: 0;
        padding: 0;
        height: 3rem;

        border-bottom: 0 solid transparent;
        box-shadow: 0 0 0 transparent;

        transition: all 500ms ease;
    }
    .nexus-navigation-frame {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: center;

        overflow-x: scroll;
        scroll-behavior: smooth;

        height: 100%;
        width: calc(100% - 0rem);

        background: transparent;

        transition: all 500ms ease;
    }
    .nexus-navigation-frame-background {
        display: none;
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        opacity: 0;

        transition: all 500ms ease;
    }

    .nexus-navigation-brand {
        z-index: 0;
        pointer-events: none;

        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;


        max-width: max-content;
        height: 100%;

        padding-left: 0;
        padding-right: 0;

        color: white;

        text-decoration: none;

        transition: all 300ms ease;
    }

    .nexus-navigation-actions {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: center;

        margin: 0;
        padding-left: 2rem;
        padding-right: 2rem;

        height: 100%;
        width: calc(100% - 4rem);
        max-width: calc(1440px - 4rem);

        gap: 1rem;

        transition: all 150ms ease;
    }
    .reset-view {
        position: relative;

        width: 20px;
        height: 20px;

        opacity: 0;
        pointer-events: none;

        transition: all 500ms ease;
    }

    .nexus-navigation-actions-frame {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        overflow-x: scroll;

        gap: 1.5rem;
        height: 100%;
        width: 100%;

        transition: all 500ms ease;
    }
    .nexus-navigation-actions-frame-title {
        z-index: 1;
        position: relative;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;

        text-align: center;
        font-size: 0.72rem;
        font-weight: 500;
        text-decoration: none;
        letter-spacing: 1px;
        height: 100%;

        min-width: max-content;

        transition: all 500ms ease;
    }
    .active-title {
      color: var(--theme00); /* or any color to indicate active */
    }

    .nexus-navigation-icon {
        display: none;
    }
} /* Nexus => mobile */

/* 01 : Menu -------------------------------------------------------------------------------- */
@media screen and (min-width: 1000px) {
    /* Slides => Main Menu */
    .menu {
        z-index: 999;

        position: fixed;
        top: 0;
        left: 0;

        display: none;
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;

        opacity: 0;
        pointer-events: none;
        transform: scale(1.1) translateX(0) rotate(0);

        overflow: hidden;

        height: 100%;
        width: calc(100% - 0rem);

        background: rgba(0, 0, 0, 0.7);

        transition: all 300ms ease;
    }
    .menu-shell {
        z-index: 2;
        position: relative;

        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;

        height: 100%;
    }
    .menu-shell-frame {
        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;

        background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.9), black);
        border-right: 2px solid var(--dark);

        transform: translateX(0);

        width: 400px;
        height: 100%;

        transition: all 300ms ease;
    }

    .menu-background {
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        opacity: 0.1;

        background: url("/assets/stock/stock-corona.jpg") no-repeat center center;
        background-size: cover;
    }

    /* Main Menu => Heading */
    .menu-heading {
        position: relative;

        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-content: center;

        padding-right: 2rem;
        padding-left: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        width: calc(100% - 4rem);

        border-bottom: 1px solid var(--alienBlue);
    }
    .menu-heading-title {
        position: relative;

        font-size: 0.8rem;
        font-weight: 600;
        font-style: normal;
        text-decoration: none;
        letter-spacing: 1px;
        -webkit-tap-highlight-color: transparent;

        margin: 0;
        padding: 0;

        color: var(--dark);
        opacity: 0.3;

        transition: all 300ms ease;
    }
    .menu-heading-close {
        cursor: pointer;

        font-size: 1rem;
        font-weight: 500;
        color: var(--dark);
        opacity: 0.3;
        text-align: right;

        padding: 0.5rem;

        transition: all 100ms ease;
    }
    .menu-heading-close:hover {
        opacity: 1;
    }

    /* Main Menu => Core */
    .main-menu-core {
        z-index: 2;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        align-content: center;

        color: var(--dark);

        height: 100%;
        width: 100%;
    }

    /* Main Menu => Core => Container */
    .main-menu-core-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

        margin: 0;
        padding-top: 1rem;
        width: 100%;

        gap: 1rem;
    }

    .main-menu-core-container-group {
        cursor: pointer;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        color: var(--dark);

        padding-top: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        width: calc(100% - 4rem);

        transition: all 600ms ease;
    }
    .main-menu-core-container-group-title {
        position: relative;

        font-size: 1rem;
        font-weight: 800;
        font-style: normal;
        letter-spacing: 0;
        -webkit-tap-highlight-color: transparent;

        text-decoration: underline 1px transparent;

        margin: 0;
        padding: 0;

        color: var(--light);

        transition: all 300ms ease-in-out;
    }
    .main-menu-core-container-group-title:hover {
        letter-spacing: 1px;
    }
    .main-menu-core-container-group-icon {
        width: 0.75rem;
        height: 0.75rem;

        background: url("/assets/icons/controls/Right-Arrow.png") no-repeat center center;
        background-size: contain;
    }

    .main-menu-credits-social {
        left: 0;

        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        text-align: center;

        padding: 2rem;
        width: calc(100% - 4rem);

        gap: 2rem;
    }
    .main-menu-credits-social-title {
        position: relative;

        font-size: 0.7rem;
        font-weight: 600;

        color: var(--dark);

        width: 100%;
    }
    .main-menu-credits-social-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: center;

        gap: 2rem;
    }
    .main-menu-credits-social-container-cover {
        cursor: pointer;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;

        padding: 0.5rem;
        min-width: 1.75rem;
        height: 1.75rem;
        border-radius: 50%;
        text-decoration: none;

        transform: scale(1);

        border: 1px solid var(--dark);
        background: var(--dark);

        transition: all 500ms ease;
    }
    .main-menu-credits-social-container-cover:hover {
        background: var(--dark);
        border: 1px solid var(--alienBlue);

        transform: scale(1.1);

        transition: all 250ms ease;
    }
    .main-menu-credits-social-container-cover-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;

        width: 1.1rem;
        height: 1.1rem;

        transition: all 250ms ease;
    }

    /* Main Menu => Core */
    .actions-menu-slide {
        z-index: 1;

        position: absolute;
        top: 0;
        left: 0;

        display: flex;
        justify-content: center;
        align-items: flex-start;
        align-content: center;

        width: calc(100% - 400px);
        height: 100%;

        transform: translateX(-100%) rotate(5deg);
        pointer-events: none;

        transition: all 500ms ease;
    }
    .actions-menu-slide-frame {
        z-index: 1;
        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        align-content: center;

        max-width: calc(1080px - 4rem);
        width: calc(100% - 4rem);

        margin: 0;
        padding: 2rem;

        gap: 2rem;
    }

    .actions-menu-slide-frame-heading {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        text-align: center;

        width: 100%;
    }
    .actions-menu-slide-frame-heading-title {
        font-size: 2rem;
        font-weight: 900;
        text-align: center;
    }
    .actions-menu-slide-frame-heading-info {
        cursor: pointer;

        font-size: 0.8rem;
        font-weight: 700;
        text-align: center;
        text-decoration: underline 1px transparent;

        padding: 0.5rem;

        color: var(--alienBlue);

        transition: all 100ms ease;
    }
    .actions-menu-slide-frame-heading-info:hover {
        text-decoration: underline 1px var(--alienBlue);
    }

    .actions-menu-slide-frame-core {
        display: flex;
        flex-direction: column;

        width: 100%;
        border-top: 1px solid var(--dark);
        border-bottom: 1px solid var(--dark);

        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .actions-menu-slide-frame-core-focus {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        gap: 2rem;

        width: 100%;
    }
    .actions-menu-slide-frame-core-base {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

        gap: 0.5rem;
    }
    .actions-menu-slide-frame-core-info {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--dark);
    }
    .actions-menu-slide-frame-core-link {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--alienBlue);
    }

    .actions-menu-slide-frame-core-container {
        cursor: pointer;

        display: flex;
        flex-direction: column;

        padding: 1rem;

        width: 100%;
        background: var(--dark);
        border-radius: var(--r);
        outline: 1px solid var(--dark);

        gap: 1rem;

        transition: all 300ms ease;
    }
    .actions-menu-slide-frame-core-container:hover {
        outline: 1px solid var(--alienThemeCurrent);
        background: var(--dark);
    }
    .actions-menu-slide-frame-core-container-focus-title {
        font-size: 1.1rem;
        font-weight: 700;

        max-width: max-content;
        color: var(--light);
    }

    .actions-menu-slide-frame-core-container-rate {
        display: flex;
        flex-direction: column;
    }
    .actions-menu-slide-frame-core-container-focus-body {
        font-size: 0.8rem;
        font-weight: 500;

        color: var(--lightFaded);
    }
    .actions-menu-slide-frame-core-container-rate-title {
        font-size: 0.8rem;
        font-weight: 700;

        margin-top: 2rem;

        color: var(--alienThemeCurrent);
    }

    .actions-menu-slide-frame-core-container-connect {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        text-align: center;

        width: 100%;

        margin: 0;
        padding: 0;

        gap: 0.5rem;
    }
    .actions-menu-slide-frame-core-container-connect-info {
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--lightFaded);
    }
    .actions-menu-slide-frame-core-container-connect-title {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--alienBlue);
    }

    .actions-menu-slide-frame-core-footer {
        display: flex;
        flex-direction: column;

        width: 100%;
        gap: 0.5rem;
    }
    .actions-menu-slide-frame-core-footer-title {
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--light);
    }
    .actions-menu-slide-frame-core-footer-action {
        font-size: 0.75rem;
        font-weight: 500;

        color: var(--alienThemeCurrent);
    }

    .actions-menu-slide-frame-model {
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;

        pointer-events: none;
        opacity: 0;

        transition: all 300ms ease;
    }
    .actions-menu-slide-frame-model-frame {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        text-align: center;

        margin: 1rem;
        padding: 1rem;

        width: calc(100% - 4rem);

        gap: 1rem;
    }
    .actions-menu-slide-frame-model-frame-heading {
        position: relative;

        display: flex;

        width: 100%;
    }
    .actions-menu-slide-frame-model-close {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(-50%, -50%);
    }
    .actions-menu-slide-frame-model-cover {
        display: flex;
        margin: 0;
        padding: 0;

        height: 100%;
        width: 100%;
    }
    .actions-menu-slide-frame-model-cover-image {
        width: 100%;
        height: 100%;

        object-position: center center;
        object-fit: cover;
    }
} /* Menu => Desktop */

/* 00 : End -------------------------------------------------------------------------------- */
@media screen and (max-width: 999px) {
    /* End */
    .end {
        z-index: 10;

        position: relative;

        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;

        border-top: var(--defaultBorder);
    }
    .end-frame {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;
        width: 100%;


        border-top-left-radius: var(--r);
        border-top-right-radius: var(--r);
    }

    /* End => Core */
    .end-core {
        display: flex;
        flex-direction: column-reverse;
        border-top-left-radius: var(--r);
        border-top-right-radius: var(--r);
        padding: 0;
        width: calc(100% - 0rem);
    }

    /* End => Magazine */
    .end-core-magazine {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;

        -webkit-tap-highlight-color: transparent;

        margin: 0;
        padding: 0;

        height: 12rem;
        width: 100%;

        object-fit: cover;
        object-position: center center;

        transition: all 300ms ease;
    }
    .end-core-magazine-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center center;

        transition: all 500ms ease-in-out;
    }

    /* End => Content */
    .end-core-content {
        display: flex;
        flex-direction: column;
    }
    .end-core-content-frame {
        display: flex;
        flex-direction: column;
    }

    /* End => Content => Primary -------------------------------------------------------------------------------- */
    .end-core-content-primary {
        position: relative;

        display: flex;
        flex-direction: column;

        margin: 0;
        padding: 0;
    }

    /* End => Content => Primary => Social */
    .end-core-content-primary-social {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        color: var(--light);
        border-bottom: var(--defaultBorder);

        padding-top: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1.5rem;

        width: calc(100% - 2rem);
        gap: 1rem;
    }
    .end-core-content-primary-social-title {
        font-size: 1.2rem;
        font-weight: 700;

        transition: all 300ms ease;
    }
    .end-core-content-primary-social-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: flex-start;

        gap: 2rem;
    }
    .end-core-content-primary-social-container-cover {
        cursor: pointer;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;

        transition: all 300ms ease;
    }
    .end-core-content-primary-social-container-cover-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;

        width: 1.25rem;
        height: 1.25rem;

        transition: all 500ms ease;
    }

    /*  End => Content => Primary => Insight */
    .end-core-content-primary-insight {
        position: relative;

        display: flex;
        flex-direction: column;

        color: var(--light);

        padding-top: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1.5rem;

        width: calc(100% - 2rem);

        border-bottom: var(--defaultBorder);
        gap: 0.5rem;
    }
    .end-core-content-primary-insight-title {
        font-size: 1.2rem;
        font-weight: 700;

        text-decoration: none;

        transition: all 300ms ease;
    }
    .end-core-content-primary-insight-info {
        font-size: 0.8rem;
        font-style: normal;
        font-weight: 600;
        color: var(--theme00);
    }
    .end-core-content-primary-insight-body {
        margin-top: 0.5rem;
        font-size: 0.8rem;
    }

    /* End => Content => Secondary -------------------------------------------------------------------------------- */
    .end-core-content-frame-secondary {
        position: relative;

        display: flex;
        flex-direction: column;

        color: white;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;

        gap: 0.5rem;
    }

    /* End => Secondary => Funding */
    .end-core-content-frame-secondary-funding {
        position: relative;

        display: flex;
        flex-direction: column;

        text-decoration: none;

        color: var(--light);

        padding-top: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1.5rem;

        width: calc(100% - 2rem);

        gap: 0.5rem;

        transition: all 500ms ease;
    }
    .end-core-content-frame-secondary-funding-title {
        position: relative;
        font-size: 1.2rem;
        font-weight: 700;
    }
    .end-core-content-frame-secondary-funding-info {
        font-size: 0.8rem;
        font-style: normal;
        font-weight: 600;
        color: var(--theme00);
    }
    .end-core-content-frame-secondary-funding-body {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-top: 0.5rem;

        color: var(--light01);
    }
    .end-core-content-frame-secondary-funding-group {
        display: flex;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;

        margin-top: 1.5rem;

        gap: 1rem;
    }
    .end-core-content-frame-secondary-funding-group-link {
        font-size: 0.8rem;
        font-style: normal;
        font-weight: 400;
        text-decoration: none;
        letter-spacing: 2px;

        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;

        border-radius: var(--r);
        padding-top: 1rem;
        padding-bottom: 1rem;
        width: 100%;

        border: var(--defaultBorder);
        background: var(--dark);

        color: var(--theme00);
    }

    /* End => Credits */
    .end-credits {
        position: relative;

        display: flex;

        width: 100%;

        margin: 0;
        padding: 0;
    }
    .end-credits-frame {
        display: flex;
        justify-content: center;

        margin: 0;
        padding-top: 2rem;
        padding-right: 1rem;
        padding-left: 1rem;
        padding-bottom: 2rem;
        width: calc(100% - 2rem);

    }
    .end-credits-title {
        font-size: 0.65rem;
        font-weight: 400;
        color: var(--lightFaded);
        font-style: normal;

        text-align: center !important;

        line-height: 1.5;
    }
} /* End => Mobile */
@media screen and (min-width: 1000px) {
    /* End */
    .end {
        z-index: 998;
        position: relative;

        display: none;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;

        margin: 0;
        padding: 0;

        border-top: 1px solid var(--dark);
        background: var(--dark);
    }
    .end-core {
        position: relative;

        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        justify-content: center;

        width: 100%;
    }
    .end-core-frame {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;


        max-width: calc(1440px - 2rem);
        width: calc(100% - 2rem);

        gap: 1rem !important;
    }

    /* End => Magazine */
    .end-magazine {
        cursor: pointer;

        display: flex;

        overflow: hidden;

        min-width: 18rem;
        max-width: 18rem;
        height: 22rem;

        border-radius: var(--r);

        margin: 0;
        padding: 0;

        transition: all 300ms ease;
    }
    .end-magazine-image {
        height: 100%;
        width: 100%;

        object-position: center top;
        object-fit: cover;

        border-radius: var(--r);

        transition: all 300ms ease;
    }
    .end-magazine-image:hover {
        transform: scale(1.05);
    }

    /* End => Content */
    .end-content {
        display: flex;
        flex-direction: column;

        width: 100%;
        gap: 1rem;
    }

    /* Content => Focus */
    .end-focus {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: space-between;

        gap: 1rem;
    }

    /* Content => Focus => Main */
    .end-focus-main {
        position: relative;
        display: flex;
        flex-direction: column;

        width: 100%;
        border-right: 1px solid var(--dark);
        padding-right: 1rem;

        gap: 1rem;
    }
    .divide {
        width: 100%;
        height: 1px;

        background: var(--dark);
    }

    /* Content => Focus => Main => Social */
    .end-social {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: space-between;

        gap: 2rem;

        border-bottom: 1px solid var(--dark);
        padding-bottom: 1rem;
        padding-left: 1rem;

        color: var(--light);
    }
    .end-social-title {
        position: relative;

        font-size: 1.3rem;
        font-weight: 900;
        min-width: max-content;
    }
    .end-social-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        align-content: center;
        justify-content: flex-start;

        min-width: max-content;
        gap: 1rem;
    }
    .end-social-container-cover {
        cursor: pointer;

        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;

        padding: 0.75rem;
        border-radius: 50%;

        border: 1px solid var(--dark);
        background: var(--dark);

        transition: all 300ms ease;
    }
    .end-social-container-cover:hover {
        background: var(--dark);
    }
    .end-social-container-cover-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;

        width: 1rem;
        height: 1rem;

        transition: all 300ms ease-in;
    }

    /* Content => Focus => Main => Insight */
    .end-insight {
        display: flex;
        flex-direction: column;

        color: var(--light);
        margin-left: 1rem;

        gap: 1rem;
    }
    .end-insight-heading {
        position: relative;

        display: flex;
        flex-direction: column;

        gap: 0.25rem;
    }
    .end-insight-heading-title {
        position: relative;

        font-size: 1.3rem;
        font-weight: 900;
        min-width: max-content;
    }
    .end-insight-heading-info {
        font-size: 0.7rem;
        font-weight: 600;
        font-style: italic;
        letter-spacing: 2px;

        min-width: max-content;

        color: var(--alienThemeCurrent);
    }
    .end-insight-heading-description {
        font-size: 0.8rem;
        line-height: 1.5;

        max-width: 85%;
        color: var(--lightFaded);
    }
    .end-insight-heading-author {
        position: relative;
        font-family: "Euphoria Script", serif;

        font-size: 0.9rem;
        font-weight: 800;
        font-style: normal;
        letter-spacing: 1px;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;

        color: var(--alienThemeCurrent);

        margin-top: 2rem;
        transition: all 300ms ease;
    }

    /* Content => Focus => Sub */
    .end-content-focus-sub {
        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;

        color: var(--light);
        min-width: 35%;
    }

    /* Content => Focus => Sub => Funding */
    .end-funding {
        position: relative;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        text-align: center;

        text-decoration: none;

        color: var(--light);

        padding-right: 1rem;
        padding-left: 1rem;

        transition: all 500ms ease;
    }
    .end-funding-icon {
        min-width: 2rem;
        height: 2rem;

        background: url("/assets/icons/Heart (Pixel).png") no-repeat center center;
        background-size: contain;
    }
    .end-funding-title {
        position: relative;

        font-size: 1.3rem;
        font-weight: 900;
        min-width: max-content;

        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .end-funding-description {
        font-size: 0.8rem;
        line-height: 1.5;

        color: var(--light01);
        opacity: 0.9;
    }
    .end-funding-group {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;

        width: 100%;

        margin-top: 2rem;

        gap: 1rem;
    }
    .end-funding-group-link {
        font-size: 0.75rem;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        letter-spacing: 1px;

        color: var(--light);

        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        padding-left: 4rem;
        padding-right: 4rem;

        border: 1px solid var(--dark);
        background: var(--dark);

        border-radius: var(--r);

        transition: all 300ms ease;
    }
    .end-funding-group-link:hover {
        background: var(--dark);
    }


    /* End => Actions */
    .end-actions {
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;

        gap: 1rem;
    }

    .end-actions-group {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        text-align: left;

        min-height: 10rem;
        width: 100%;
    }
    .end-actions-group-title {
        font-size: 0.75rem;
        font-weight: 800;
        color: var(--lightFaded);
        opacity: 0.3;

        width: 100%;
        margin-bottom: 0.5rem;

        max-width: max-content;
    }
    .end-actions-group-container {
        display: flex;
        flex-direction: column;

        gap: 0.25rem;
    }
    .end-actions-group-container-title {
        cursor: pointer;

        font-size: 0.85rem;
        font-weight: 500;
        color: var(--lightFaded);
        text-decoration: none;

        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
        min-width: max-content;

        transition: all 100ms ease;
    }
    .end-actions-group-container-title:hover {
        opacity: 1;
        color: var(--alienThemeCurrent);
    }
    .end-actions-divider {
        height: 100%;
        width: 1px;

        background: var(--dark);
    }

    /* End => Credits */
    .end-credits {
        z-index: 10;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;

        text-align: center;

        width: 100%;
        background: var(--dark);
        border-top: 1px solid var(--dark);

        color: var(--light);

        gap: 1rem;
    }
    .end-credits-frame {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-content: center;

        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
        padding-top: 1rem;

        width: calc(100% - 2rem);
    }
    .end-credits-frame-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-content: center;

        text-align: center;

        margin: 0;
        padding: 0;

        width: 100%;

        gap: 0.5rem;
    }
    .end-credits-frame-content-logo {
        min-width: 2.25rem;
        height: 2.25rem;

        background: url("/assets/icons/company/alien-icon-light.png") no-repeat center center;
        background-size: cover;
    }
    .end-credits-frame-content-description {
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 400;
        text-align: center;
    }
    #end-credits-frame-content-logo-alt {
        min-width: 2.25rem;
        height: 2.25rem;

        background: url("/assets/icons/company/alien-icon-light.png") no-repeat center center;
        background-size: cover;
    }

} /* End => Desktop */

/* Social Media Icons */
[data-id="threads"] {
    background: url("/assets/icons/social-media/threads-white.png") no-repeat center center;
    background-size: contain;
}
[data-id="instagram"] {
    background: url("/assets/icons/social-media/instagram-white.png") no-repeat center center;
    background-size: contain;
}
[data-id="x"] {
    background: url("/assets/icons/social-media/x-white.png") no-repeat center center;
    background-size: contain;
}

/* Advertisement Media */
[data-id="menu-background"] {
    background: url("/assets/stock/stock-corona.jpg") no-repeat center bottom;
    background-size: cover;
}

[data-id="down"] {
    background: url("/assets/icons/player/down-arrow-white.png") no-repeat center center;
    background-size: contain;

    transform: rotate(180deg);
}
[data-id="play"] {
    background: url("/assets/icons/player/play-neon.png") no-repeat center center;
    background-size: contain;


}

/* Interaction Icons */
[data-id="moon"] {
    background: url("/assets/icons/general/crescent-moon-light.png") no-repeat center center;
    background-size: contain;
}
[data-id="heart"] {
    background: url("/assets/icons/interactions/heart.png") no-repeat center center;
    background-size: contain;
}


