@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
:root {
    font-size: 16px;
    --lexend-ff: "Lexend", sans-serif;;

    --darkest-surface: hsl(240, 7%, 6%);
    --darker-surface: hsl(240, 4%, 10%);
    --dark-surface: hsl(240, 9%, 16%);

    --primary-link-clr: #9fc0ff;
    --secondary-link-clr: hsla(219, 100%, 81%, .25);

    --solid-blue: hsla(219, 100%, 81%, 1);
    --transparent-blue: hsla(219, 100%, 81%, .25);

    --transparent-primary-purple: hsla(249, 87%, 65%, .25);
    --primary-purple: #7059f3;
    --transparent-accent-purple: hsla(249, 86%, 80%, .25);
    --accent-purple: #ada0f8;

    --primary-txt-clr: rgba(255,255,255,1);
    --accent-txt-clr: rgba(255,255,255,.5);
    --balance-txt-clr: hsl(0, 0%, 80%);

    --transparent-surface: rgba(255,255,255,.0275);

    --transform-timing: .0975s;

    --lt-transparent-surface: hsla(245, 16%, 20%, .75);
    --lt-transparent-surface-hover: hsla(245, 16%, 24%, .75);
}
*::before, *::after {
    box-sizing: border-box;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--lexend-ff);
    text-decoration: none;
    color: #fff;
}
body {
    background: var(--darkest-surface);
    background-image: radial-gradient(var(--darker-surface) 1px, transparent 1px);
    background-size: 10px 10px;
}
h1,h2,h3,h4,h5,h6 {
    text-transform: uppercase;
    text-wrap: balance;
}
main h1 {
    font-size: 2rem;
    font-weight: 900;
}
p, a {
    word-wrap: break-word;
    white-space: pre-wrap;
    text-wrap: pretty;
}
p,span {
    line-height: 1.75;
    font-weight: 300;
}
li {
    list-style-position: inside;
    line-height: 1.5;
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    background: none;
}
input {
    border: none;
}

/*---- Scrollbar ----*/
::-webkit-scrollbar {
   display: none;
}
::-webkit-scrollbar-track {
    display: none;
}
::-webkit-scrollbar-thumb {
    display: none;
}
/* ---- Overflow Fading Effect ---- */
.a-very-important-tingy-ting {
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 2rem, black calc(100% - 2rem), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 2rem, black calc(100% - 2rem), transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

/*---- Layout ----*/
.grid-auto-fill {
    --grid-min-col-size: 300px;
    
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--grid-min-col-size), 100%), 1fr));
    gap: 1rem;
}

/*---- Line Clamp ----*/
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* height: 7.5ex;
    line-height: 2.5ex; */
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/*---- Hard Coded Styling ----*/
main {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding: 5rem 0;
    position: relative;
    transition: padding .175s ease-in-out, gap .175s ease-in-out;
}
main > .main__hero-bg-container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    z-index: -1;
}
main > .main__hero-bg-container .primary-bg-img {
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 60%;
    background-image: radial-gradient(hsla(240, 7%, 6%, 0), hsla(240, 7%, 6%, .5)), linear-gradient(hsla(240, 7%, 6%, .975), hsla(240, 7%, 6%, .875), hsla(240, 7%, 6%, 1)), url('/images/global/main__bg-img__state-1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
}
main > .main__hero-bg-container .blurry-offset {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, hsla(240, 7%, 6%, 1),hsla(240, 7%, 6%, .75), transparent);
}
main > .main__hero-bg-container .fading-animation {
    inset: 0;
    background: var(--darkest-surface);
    opacity: 0;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}
main .main__prominent-heading {
    font-size: 1.25rem;
    border-bottom: 2px solid dodgerblue;
    padding-bottom: .5rem;
    font-family: var(--lexend-ff);
    font-weight: 400;
    display: flex;
    align-items: center;
}
main .main__prominent-heading span {
    font-weight: 500;
    font-size: .8rem;
    margin-left: auto;
    padding: .125rem .5rem;
    border-radius: 100vw;
    background: var(--transparent-surface);
    color: var(--accent-txt-clr);
}
main .main__prominent-heading::before {
    content: '';
    display: inline-block;
    min-width: .875rem;
    max-width: .875rem;
    height: .875rem;
    background: dodgerblue;
    border-radius: 2px;
    margin-right: .75rem;
}
.s-tier-label {
    background: hsl(0, 100%, 75%);
}
.a-tier-label {
    background: hsl(30, 100%, 75%);
}
.b-tier-label {
    background: hsl(45, 100%, 75%);
}
.c-tier-label {
    background: hsl(56, 100%, 75%);
}
.d-tier-label {
    background: hsl(86, 88%, 73%);
}
.wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}
.wrapper-no-pd {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
@media(max-width: 720px) {
    main {
        gap: 3rem;
        padding: 3rem 0;
    }
    main > .main__hero-bg-container .primary-bg-img {
        aspect-ratio: 1/1;
    }
}
main .wip {
    text-align: center;
    background: hsla(43, 74%, 49%, .25);
    width: fit-content;
    border-radius: 100vw;
    border: 1px solid hsla(43, 74%, 49%, 1);
    padding: .25rem 1rem;
    margin: 2rem auto;
}
.animate-onView {
    visibility: hidden;
}
@keyframes onView {
    0% {
        transform: scale(0);
        opacity: .5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* ---- Marquee TOP Banner ---- */
.marquee-top-banner {
    display: flex;
    gap: 1rem;
    overflow: clip;
    position: relative;
}
.marquee-top-banner__content {
    display: flex;
    justify-content: space-around;
    min-width: 100vw;
    flex-shrink: 0;
    gap: 1rem;
    animation: infinite-marquee 30s linear infinite;
}
.marquee-top-banner,
.marquee-top-banner__content {
    background: var(--primary-purple);
}
.marquee-top-banner p {
    font-size: .875rem;
}
.marquee-top-banner__content a {
    font-weight: 500;
}
@keyframes infinite-marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - 1rem));
    }
}
/* ---- Header ACTIVE State ---- */
.header__secondary a {
    opacity: .5;
}
.header__secondary a.active {
    opacity: 1;
}
.header__secondary a.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    height: 4px;
    border-radius: 100vw 100vw 0 0;
    background: goldenrod;
}

.bg-fade-overlay {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
body.no-scroll {
  overflow: hidden;
}
.img__global__item {
    position: relative;
}
.img__global__item::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 2px;
    font-size: .7rem;
    text-shadow: 1px 2px 10px black;
}
.img__global__item.outline {
    border: 2px solid goldenrod;
    border-radius: 0 10px 0 10px;
    overflow: hidden;
    background: hsla(43, 74%, 49%, .25);
    min-width: max-content;
}
.img__global__item.num-1::before {
    content: '1';
}
.img__global__item.num-200::before {
    content: '200';
}
.img__global__item.num-500::before {
    content: '500';
}
.img__global__item.num-750::before {
    content: '750';
}
.img__global__item.num-5k::before {
    content: '5k';
}
.img__global__item.num-20b::before {
    content: '20B';
}
@keyframes ghostEffect {
    0% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}
@media(max-width: 720px) {
    main h1 {
        font-size: 1.5rem;
    }
}