:root {
    --bg-color: #0a0a0a;
    --accent-color: #ff6b00;
    --secondary-bg-color: #1f1f1f;
    --glow-color: rgba(255, 107, 0, 0.5);
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-color);
    color: #fff;
    font-family: 'Archivo Variable', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
}

h2 {
    color: var(--accent-color);
    font-variation-settings: "wdth" 125;
    font-size: 72px;
    font-weight: 700;

    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
    transition: text-shadow 0.3s;
}

h2:hover {
    text-shadow: 0 0 20px var(--glow-color);
}

p {
    font-size: 18px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

a {
    color: #fff;
    text-decoration: none;
    font-family: 'Archivo Variable', sans-serif;
    transition: color 0.3s, transform 0.3s;
}

a:hover {
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
}

.section {
    position: relative;
    overflow: hidden;
}

.section.secondary {
    background-color: var(--secondary-bg-color);
}

.button {
    background: linear-gradient(135deg, var(--accent-color), #ff4500);
    color: var(--bg-color);
    text-transform: uppercase;
    border-radius: 0;
    padding: 24px 42px;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 4px 15px var(--glow-color);
    transition: box-shadow 0.4s, transform 0.4s;
    display: inline-block;
}

.button:hover {
    box-shadow: 0 8px 25px var(--glow-color);
    transform: translateY(-3px);
}

.navbar {
    z-index: 19;
    background-color: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: sticky;
    top: 0;
}

.navbar-container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 12px;
    display: flex;
}

.nav-menu {
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 40vw;
    height: 100%;
    margin: 0;
    position: fixed;
    inset: 0% 0% 0% auto;
    overflow: hidden;
    display: none;
}

.nav-menu-link-holder {
    background-color: var(--accent-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    width: 40vw;
    min-width: 40vw;
    max-width: 40vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 82px 13px;
    display: flex;
}

.nav-links {
    grid-column-gap: 6px;
    border-bottom: 1px solid var(--bg-color);
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    transition: background-color 0.8s cubic-bezier(.175, .885, .32, 1.275);
    display: flex;
}

.nav-link {
    font-variation-settings: "wdth" 125, "wght" 900;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    font-size: 62px;
    font-weight: 800;
    transition: font-variation-settings 0.45s, opacity 0.6s;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.w--current {
    color: #000;
    font-variation-settings: "wdth" 125, "wght" 100;
}

.menu-button {
    background-color: var(--accent-color);
    justify-content: center;
    align-items: center;
    width: 69px;
    height: 69px;
    transition: background-color 0.375s cubic-bezier(.175, .885, .32, 1.275);
    display: flex;
    position: relative;
}

.brand {
    justify-content: center;
    align-items: center;
    width: 69px;
    min-width: 69px;
    padding-bottom: 0;
    display: flex;
}

.middle-name {
    -webkit-backdrop-filter: blur(21px);
    backdrop-filter: blur(21px);
    background-color: #02112038;
    padding: 9px 11px;
}

.game-name {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.red-text {
    color: var(--accent-color);
}

.menu-icon {
    width: 32px;
    position: relative;
}

.loader-holder {
    z-index: 22;
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: none;
    position: fixed;
    inset: 0%;
    overflow: hidden;
}

.loader-container {
    grid-row-gap: 21px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    position: absolute;
    inset: 0%;
}

.loading-text {
    color: var(--accent-color);
    font-variation-settings: "wdth" 62, "wght" 100;
    font-size: 32px;
    font-weight: 700;
}

.loading-bar {
    background-color: var(--secondary-bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 200px;
    height: 10px;
    display: flex;
}

.loading {
    background-color: var(--accent-color);
    width: 60%;
    height: 100%;
}

.loading-logo {
    width: 48px;
}

.bg-overlay {
    background-image: radial-gradient(circle, #0000, #0003);
    position: absolute;
    inset: 0%;
}

.fade-in-on-scroll {
    opacity: 0;
}

/* Hero Section */
.about-hero {
    padding: 130px 0;
    text-align: center;
    position: relative;
}

.about-hero-text {
    z-index: 100;
    color: var(--accent-color);
    font-variation-settings: "wght" 900, "wdth" 125;
    font-size: 11vw;
    font-weight: 700;
    line-height: 0.9;
    text-shadow: 0 0 15px var(--glow-color);
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.02);
    }
}

.main-background-holder {
    width: 100%;
    position: absolute;
    inset: 0% 0% auto;
    height: 100%;
}

.main-background-image {
    opacity: 0.8;
    width: 100%;
    transform: translate3d(0px, 4.9485%, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    filter: brightness(0.85) contrast(1.1);
    transition: filter 0.5s;
}

.main-background-image:hover {
    filter: brightness(1) contrast(1.2);
}

.heroes-grid,
.fan-art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s;
    perspective: 1000px;
}

.fan-art-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s;
    perspective: 1000px;
}

.hero-card:hover,
.fan-art-card:hover {
    transform: translateY(-10px);
}

.hero-image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.fan-art-image {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--bg-color), transparent);
    padding: 20px;
    color: #fff;
}

.hero-name {
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 5px var(--glow-color);
}

.icons-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.icon,
.social-icon,
.number-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s, filter 0.3s;
}

.icon:hover,
.social-icon:hover,
.number-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.2) drop-shadow(0 0 5px var(--glow-color));
}

/* Sections */
.mission-section,
.vision-section,
.history-section,
.community-section,
.tech-section {
    padding: 100px 0;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    transition: transform 0.5s, filter 0.5s;
    margin-top: 20px;
}

.section-image:hover {
    transform: scale(1.1);
    filter: brightness(1.2) drop-shadow(0 0 10px var(--glow-color));
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--glow-color);
    transition: transform 0.4s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.team-member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--bg-color), transparent);
    padding: 20px;
    color: #fff;
}

.team-member-name {
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 5px var(--glow-color);
}

.team-member-role {
    font-size: 16px;
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Running Numbers Section */
.running-numbers-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.number-item {
    color: #fff;
    font-size: 48px;
    font-weight: 700;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.number-label {
    font-size: 18px;
    font-weight: 300;
    margin-top: 10px;
}

.number-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}


/* History Carousel */
.history-carousel {
    display: flex;
    overflow: hidden;
    margin-top: 20px;
}

.carousel-item {
    flex: 0 0 33.33%;
    padding: 0 10px;
}

.carousel-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

/* Footer */
.footer-container {
    z-index: 2;
    background-color: var(--bg-color);
    padding-top: 100px;
    padding-bottom: 20px;
    position: relative;
}

.footer-grid-holder {
    grid-column-gap: 230px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: grid;
}

.footer-grid-content {
    grid-row-gap: 8px;
    flex-direction: column;
    display: flex;
}

.footer-heading {
    color: var(--accent-color);
    font-variation-settings: "wdth" 125;
    font-size: 52px;
    font-weight: 900;
}

.footer-links-holder {
    justify-content: space-between;
    display: flex;
}

.footer-links-container {
    grid-row-gap: 12px;
    flex-direction: column;
    display: flex;
}

.footer-links {
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-links:hover {
    color: var(--accent-color);
}

.footer-copy-right {
    grid-row-gap: 24px;
    flex-direction: column;
    padding-top: 120px;
    display: flex;
}

.footer-copy-right-content {
    grid-column-gap: 16px;
    border-top: 1px solid #2f2f2f;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    display: flex;
}

.footer-copy-right-links {
    color: #c9c9c9;
    font-size: 18px;
    transition: color 0.35s;
}

.footer-copy-right-links:hover {
    color: var(--accent-color);
}

.footer-copy-right-links.white {
    color: #fff;
}

.links-holder {
    grid-column-gap: 16px;
    display: flex;
}

.footer-logo-holder {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.footer-logo-container {
    width: 69px;
}

.footer-logo {
    width: 100%;
}

/* Responsive */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1340px;
    }
}

@media screen and (max-width: 991px) {
    h2 {
        font-size: 48px;
    }

    .about-hero-text {
        font-size: 10vh;
    }

    .nav-menu-link-holder {
        width: 60vw;
        min-width: 60vw;
        max-width: 60vw;
    }

    .nav-menu {
        width: 60vw;
    }

    .footer-grid-holder {
        grid-column-gap: 130px;
    }

    .footer-heading {
        font-size: 32px;
    }

    .footer-links-holder {
        grid-column-gap: 40px;
    }

    .footer-copy-right-content {
        grid-row-gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .heroes-grid,
    .fan-art-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .carousel-item {
        flex: 0 0 50%;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        font-size: 36px;
    }

    p {
        font-size: 16px;
    }

    .nav-menu-link-holder {
        width: 80vw;
        min-width: 80vw;
        max-width: 80vw;
    }

    .nav-menu {
        width: 80vw;
    }

    .about-hero-text {
        font-size: 7vh;
    }

    .footer-grid-holder {
        grid-row-gap: 60px;
        flex-direction: column;
        display: flex;
    }

    .footer-heading {
        font-size: 42px;
    }

    .footer-links-holder {
        grid-column-gap: 0px;
    }

    .links-holder {
        justify-content: space-between;
        width: 100%;
    }

    .carousel-item {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 479px) {

    .container,
    .container.navbar-container {
        padding: 1em;
    }

    h2 {
        font-size: 28px;
    }

    .about-hero-text {
        font-size: 13vw;
    }

    .nav-menu-link-holder {
        grid-row-gap: 70px;
        justify-content: center;
        align-items: center;
        width: 90vw;
        min-width: 90vw;
        max-width: 90vw;
        padding: 80px 14px;
    }

    .nav-menu {
        justify-content: center;
        align-items: center;
        width: 90vw;
        display: flex;
    }

    .nav-link {
        font-size: 38px;
    }

    .button {
        padding: 18px 30px;
        font-size: 15px;
    }

    .footer-heading {
        font-size: 32px;
    }

    .footer-links {
        font-size: 20px;
    }

    .footer-copy-right-content {
        grid-row-gap: 30px;
    }

    .links-holder._02 {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        flex-direction: column;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr;
        grid-auto-columns: 1fr;
        display: grid;
    }

    .number-item {
        font-size: 36px;
    }

    .number-icon {
        width: 40px;
        height: 40px;
    }
}

@font-face {
    font-family: 'Archivo Variable';
    src: url('https://cdn.prod.website-files.com/66db7f57ef9c0c7a7026f696/66db7f57ef9c0c7a7026f6ca_Archivo-VariableFont_wdth%2Cwght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}