@font-face {
    font-family: "Beaufort for LoL";
    src: url("../fonts/beaufort-regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

html.is-loading body {
    overflow: hidden;
}

.site-loader {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 18px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background:
        radial-gradient(circle at 50% 46%, rgba(112, 21, 28, 0.22), transparent 30%),
        linear-gradient(145deg, #05070c, #09111d 52%, #05070c);
    transition: opacity 520ms ease, visibility 520ms ease;
    pointer-events: none;
}

.site-loader::before, .site-loader::after {
    position: absolute;
    top: 50%;
    width: min(28vw, 420px);
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(212, 161, 78, 0.42));
}

.site-loader::before {
    right: calc(50% + 170px);
}

.site-loader::after {
    left: calc(50% + 170px);
    transform: scaleX(-1);
}

.is-loading .site-loader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-loader-emblem {
    position: relative;
    display: grid;
    width: min(330px, 68vw);
    height: 150px;
    place-items: center;
}

.site-loader-emblem img {
    position: relative;
    z-index: 2;
    width: min(290px, 62vw);
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.82));
    animation: siteLoaderLogo 1.8s ease-in-out infinite;
}

.site-loader-glow {
    position: absolute;
    inset: 15px 25px;
    border: 1px solid rgba(214, 166, 82, 0.14);
    background: radial-gradient(ellipse, rgba(184, 43, 39, 0.22), transparent 68%);
    filter: blur(5px);
    animation: siteLoaderGlow 1.8s ease-in-out infinite;
}

.site-loader p {
    margin: 0;
    color: #c6a260;
    font: 800 12px/1 Tahoma, Arial, sans-serif;
    letter-spacing: 0.2em;
    text-shadow: 0 0 14px rgba(205, 157, 76, 0.2);
}

.site-loader-track {
    position: relative;
    width: min(240px, 58vw);
    height: 2px;
    overflow: hidden;
    background: rgba(219, 177, 103, 0.12);
}

.site-loader-track i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    background: linear-gradient(90deg, transparent, #bd3035, #edc779, transparent);
    box-shadow: 0 0 14px rgba(221, 176, 93, 0.46);
    animation: siteLoaderTrack 1.05s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .site-loader-emblem img, .site-loader-glow, .site-loader-track i {animation: none;}
}

main > section { contain: paint; }

main > section.performance-paused, main > section.performance-paused *, main > section.performance-paused::before, main > section.performance-paused::after, main > section.performance-paused *::before, main > section.performance-paused *::after { animation-play-state: paused !important; }

@font-face {
    font-family: "Beaufort for LoL";
    src: url("../fonts/beaufort-medium.otf") format("opentype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Beaufort for LoL";
    src: url("../fonts/beaufort-bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --bg: #0a0f1c;
    --surface: #121a2a;
    --surface-2: #19243a;
    --text: #f8f2e8;
    --muted: #a9a39c;
    --gold: #dfaa53;
    --gold-light: #ffe4a0;
    --red: #dc403d;
    --red-deep: #7f1823;
    --line: rgba(255, 255, 255, 0.11);
    --font: "Beaufort for LoL", Georgia, serif;
    --shell: min(1180px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font);
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

img, video {
    display: block;
    max-width: 100%;
}

button:focus-visible, a:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

.page-progress {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 2px;
}

.page-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #9a2029, #f45246, #f2c46f);
    box-shadow: 0 0 16px rgba(242, 196, 111, 0.68);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 18px;
    left: 0;
    width: 100%;
    transition: top 0.35s ease;
}

.site-header.scrolled {
    top: 0;
}

.header-shell {
    width: min(1340px, calc(100% - 52px));
    min-height: 74px;
    margin: auto;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 8px 9px 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(110deg, rgba(10, 15, 27, 0.78), rgba(20, 27, 42, 0.7));
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px) saturate(1.25);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled .header-shell {
    border-color: rgba(223, 170, 83, 0.19);
    background: rgba(10, 15, 27, 0.95);
}

.brand {
    width: 145px;
}

.brand img {
    width: 100%;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    padding: 12px 0;
    color: #cac4bc;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.main-nav a > i {
    font-size: 0.78em;
    color: var(--gold-light);
    opacity: 0.72;
    transition: opacity 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover > i, .main-nav a.active > i {
    opacity: 1;
    color: var(--gold);
    transform: translateY(-1px);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--red), var(--gold-light));
    box-shadow: 0 0 10px rgba(223, 170, 83, 0.6);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: white;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.nav-play-menu {
    position: relative;
    justify-self: end;
}

.nav-action {
    position: relative;
    min-width: 156px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    overflow: hidden;
    border: 1px solid rgba(255, 173, 111, 0.42);
    color: white;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.11), transparent 38%),
        linear-gradient(120deg, #861a25, #df3f3d 58%, #ef7650);
    box-shadow: 0 12px 30px rgba(159, 30, 37, 0.3), inset 0 1px rgba(255, 255, 255, 0.14);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-action::before, .gradient-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: rotate(20deg);
    transition: left 0.55s ease;
}

.nav-action:hover, .gradient-button:hover {
    transform: translateY(-3px);
}

.nav-action:hover {
    box-shadow: 0 17px 38px rgba(159, 30, 37, 0.42), inset 0 1px rgba(255, 255, 255, 0.18);
}

.nav-action:hover::before, .gradient-button:hover::before {
    left: 125%;
}

.nav-play-menu.open .nav-action, .nav-play-menu:focus-within .nav-action {
    box-shadow: 0 17px 38px rgba(159, 30, 37, 0.42), inset 0 1px rgba(255, 255, 255, 0.18);
}

.nav-play-dropdown {
    position: absolute;
    z-index: 12;
    top: calc(100% + 11px);
    right: 0;
    width: 286px;
    display: grid;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(218, 169, 86, 0.34);
    opacity: 0;
    visibility: hidden;
    background: rgba(7, 12, 22, 0.98);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.52), inset 0 1px rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    transform-origin: top right;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    pointer-events: none;
}

.nav-play-dropdown::before {
    position: absolute;
    top: -6px;
    right: 28px;
    width: 11px;
    height: 11px;
    border-top: 1px solid rgba(218, 169, 86, 0.34);
    border-left: 1px solid rgba(218, 169, 86, 0.34);
    background: #080d18;
    content: "";
    transform: rotate(45deg);
}

.nav-play-menu.open .nav-play-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.nav-platform-link {
    min-height: 62px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #eee9df;
    background: linear-gradient(110deg, rgba(31, 43, 58, 0.9), rgba(13, 21, 33, 0.96));
    letter-spacing: 0;
    text-transform: none;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.nav-platform-link > i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(218, 169, 86, 0.3);
    color: #e0ad57;
    background: rgba(126, 82, 26, 0.12);
    font-size: 1.05rem;
}

.nav-platform-link > span {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.nav-platform-link small {
    color: #8f969f;
    font: 800 8px/1 Tahoma, Arial, sans-serif;
    letter-spacing: 0.1em;
}

.nav-platform-link strong {
    color: #f0e5d0;
    font: 700 16px/1 "Beaufort for LoL", Georgia, serif;
}

.nav-platform-link:hover, .nav-platform-link:focus-visible {
    border-color: rgba(223, 170, 83, 0.5);
    background-color: rgba(36, 47, 62, 0.96);
    transform: translateX(-2px);
}

.nav-mobile-platforms {
    display: none;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    color: white;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: end center;
    overflow: hidden;
    padding: 0 24px 64px;
    isolation: isolate;
}

.hero-media, .hero-blur, .hero-shade, .hero-noise {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    z-index: -2;
    overflow: hidden;
    background: #0b101b url("../images/characters/footer-bg.webp?v3") center 2% / cover no-repeat;
}

.hero-warrior-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 2%;
    filter: saturate(0.92) contrast(1.06) brightness(0.88);
}

.hero-blur {
    z-index: 1;
    background:
        radial-gradient(ellipse at center 78%, rgba(5, 7, 12, 0.18) 0%, rgba(6, 8, 14, 0.08) 42%, transparent 70%);
}

.hero-shade {
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(5, 6, 10, 0.08) 0%, transparent 18%, rgba(5, 7, 12, 0.22) 52%, rgba(8, 12, 20, 0.78) 78%, #0a0f1c 100%),
        linear-gradient(90deg, rgba(5, 7, 12, 0.28), transparent 24%, transparent 76%, rgba(5, 7, 12, 0.28));
}

.hero-noise {
    z-index: 3;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.light-orb {
    position: absolute;
    z-index: 2;
    display: block;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
    animation: orbFloat 7s ease-in-out infinite;
}

.light-orb-one {
    top: 22%;
    left: 17%;
    width: 330px;
    height: 330px;
    background: radial-gradient(circle, rgba(198, 38, 44, 0.18), transparent 67%);
}

.light-orb-two {
    right: 15%;
    bottom: 14%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(234, 177, 81, 0.13), transparent 67%);
    animation-delay: -3s;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: min(860px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 52vh;
    padding-bottom: 8px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 0 13px;
    color: var(--gold-light);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-eyebrow span {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red));
}

.hero-eyebrow span:last-child {
    background: linear-gradient(90deg, var(--red), transparent);
}

.hero h1 {
    margin: 0;
    color: #fffaf0;
    font-size: clamp(2.35rem, 4vw, 4.7rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    text-shadow: 0 10px 38px rgba(0, 0, 0, 0.46);
}

.hero h1 em {
    color: var(--gold-light);
    font-style: normal;
    text-shadow: 0 0 34px rgba(223, 170, 83, 0.22);
}

.hero-description {
    max-width: 650px;
    margin: 14px auto 0;
    color: #c6c0b8;
    font-size: 0.93rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.hero-actions {
    width: min(720px, 100%);
    margin-top: 15px;
}

.gradient-button {
    position: relative;
    isolation: isolate;
    min-width: 0;
    flex: 1 1 0;
    min-height: 66px;
    display: grid;
    grid-template-columns: 42px 1fr 22px;
    align-items: center;
    gap: 13px;
    overflow: hidden;
    padding: 8px 19px 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    text-align: left;
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gradient-red {
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 211, 162, 0.2), transparent 27%),
        linear-gradient(120deg, #741521, #c53235 52%, #ec6a4c);
}

.gradient-gold {
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.18), transparent 27%),
        linear-gradient(120deg, #58401b, #a8752e 50%, #d6a34d);
}

.gradient-button:hover {
    border-color: rgba(255, 231, 185, 0.5);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.36), 0 0 30px rgba(205, 68, 55, 0.12), inset 0 1px rgba(255, 255, 255, 0.18);
}

.button-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: rgba(9, 10, 16, 0.18);
}

.button-copy small, .button-copy strong {
    display: block;
}

.button-copy small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.54rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.button-copy strong {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.button-arrow {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.gradient-button:hover .button-arrow {
    transform: translateX(5px);
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.hero-socials > span {
    margin-right: 6px;
    color: #8f8a84;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-socials a {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    color: #bcb6af;
    background: rgba(8, 10, 17, 0.44);
    backdrop-filter: blur(12px);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-socials a:hover {
    color: var(--gold-light);
    border-color: rgba(223, 170, 83, 0.4);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    z-index: 5;
    bottom: 16px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #85807c;
    font-size: 0.51rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-down i {
    color: var(--gold);
    animation: scrollBounce 1.8s ease-in-out infinite;
}

.scroll-down span {
    white-space: nowrap;
}

.general-features {
    position: relative;
    overflow: hidden;
    padding: 130px 0 120px;
    background: #0c1220;
    isolation: isolate;
}

.features-backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 15, 27, 0.96) 0%, rgba(9, 15, 27, 0.7) 38%, rgba(9, 15, 27, 0.82) 72%, #0c1220 100%),
        linear-gradient(90deg, rgba(9, 15, 27, 0.94) 0%, rgba(9, 15, 27, 0.42) 48%, rgba(9, 15, 27, 0.92) 100%),
        url("../images/characters/npc-bg.webp") center 42% / cover no-repeat;
}

.general-features::before, .general-features::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(12px);
}

.general-features::before {
    top: 10%;
    left: -250px;
    background: radial-gradient(circle, rgba(178, 37, 42, 0.14), transparent 68%);
}

.general-features::after {
    right: -260px;
    bottom: 6%;
    background: radial-gradient(circle, rgba(223, 170, 83, 0.1), transparent 68%);
}

.section-shell {
    width: var(--shell);
    margin: auto;
}

.site-footer {
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 20px max(24px, calc((100% - 1180px) / 2));
    border-top: 1px solid var(--line);
    background: #080d18;
}

.site-footer > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer img {
    width: 120px;
}

.site-footer p {
    margin: 0;
    color: #ffe39e;
    font-size: 13px
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 22px;
}

.site-footer nav a {
    color: #ffe39e;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.site-footer nav a:hover {
    color: var(--gold-light);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 961px) and (max-height: 860px) {
    .hero {padding-top: 100px;
        padding-bottom: 70px;}

    .hero h1 {font-size: clamp(2rem, 3.25vw, 3.65rem);}

    .hero-description {margin-top: 10px;
        font-size: 0.86rem;}

    .hero-actions {margin-top: 10px;}

    .gradient-button {min-height: 58px;}

    .button-icon {width: 38px;
        height: 38px;}

    .hero-socials {margin-top: 9px;}
}

@media (max-width: 1120px) {
    .header-shell {grid-template-columns: 150px 1fr auto;
        gap: 18px;}

    .main-nav {gap: 19px;}

    .main-nav a {font-size: 0.68rem;}
}

@media (max-width: 900px) {
    .site-header {top: 10px;}

    .header-shell {width: calc(100% - 24px);
        min-height: 64px;
        grid-template-columns: 1fr auto auto;
        padding-left: 14px;}

    .brand {width: 125px;}

    .menu-toggle {position: relative;
        z-index: 2;
        display: block;
        grid-column: 3;}

    .nav-action {grid-column: 2;
        grid-row: 1;
        min-width: 132px;
        min-height: 48px;}

    .nav-play-menu {grid-column: 2;
        grid-row: 1;}

    .main-nav {position: fixed;
        top: 0;
        right: 0;
        width: min(390px, 88vw);
        height: 100svh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 108px 38px 38px;
        background:
            radial-gradient(circle at 100% 0%, rgba(164, 34, 38, 0.18), transparent 35%),
            rgba(7, 9, 15, 0.98);
        box-shadow: -25px 0 70px rgba(0, 0, 0, 0.42);
        transform: translateX(104%);
        transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);}

    .main-nav.open {transform: none;}

    .main-nav::before {content: "MARKMT2";
        margin-bottom: 20px;
        color: #665f5b;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.24em;}

    .main-nav a {padding: 18px 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.78rem;}

    .main-nav a::after {display: none;}

    .menu-toggle.active span:nth-child(1) {transform: translateY(6px) rotate(45deg);}

    .menu-toggle.active span:nth-child(2) {opacity: 0;}

    .menu-toggle.active span:nth-child(3) {transform: translateY(-6px) rotate(-45deg);}

    .hero {min-height: 100svh;
        padding: 0 24px 56px;}
}

@media (max-width: 640px) {
    :root {--shell: calc(100% - 30px);}

    .header-shell {grid-template-columns: 1fr auto;}

    .nav-action {display: none;}

    .nav-play-menu {display: none;}

    .nav-mobile-platforms {display: grid;
        gap: 9px;
        margin-top: 24px;}

    .main-nav .nav-platform-link {min-height: 60px;
        padding: 9px 11px;
        border: 1px solid rgba(223, 170, 83, 0.2);
        letter-spacing: 0;
        text-transform: none;}

    .main-nav .nav-platform-link::after {display: none;}

    .main-nav .nav-platform-link:hover, .main-nav .nav-platform-link:focus-visible {transform: none;}

    .menu-toggle {grid-column: 2;}

    .hero {min-height: 100svh;
        padding: 0 15px 48px;}

    .hero-media {background-position: 62% 8%;}

    .hero-eyebrow {gap: 9px;
        font-size: 0.52rem;
        line-height: 1.5;}

    .hero-eyebrow span {width: 24px;}

    .hero h1 {font-size: clamp(2.1rem, 10.8vw, 3.2rem);}

    .hero-description {max-width: 370px;
        font-size: 0.82rem;
        line-height: 1.6;}

    .hero-actions {flex-direction: column;}

    .gradient-button {width: 100%;
        min-height: 62px;
        flex: none;}

    .hero-socials {margin-top: 12px;}

    .scroll-down {display: none;}

    .general-features {padding: 90px 0 80px;}

    .site-footer {align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        padding-block: 30px;}

    .site-footer > div {align-items: flex-start;
        flex-direction: column;
        gap: 10px;}

    .site-footer nav {justify-content: flex-start;
        gap: 14px 20px;}
}

@media (prefers-reduced-motion: reduce) {
    html {scroll-behavior: auto;}

    * {animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;}

    .reveal {opacity: 1;
        transform: none;}
}

.foreword-glow {
    position: absolute;
    z-index: -1;
    top: 18%;
    left: 50%;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 145, 194, 0.14), rgba(166, 38, 43, 0.08) 38%, transparent 70%);
    filter: blur(16px);
    transform: translateX(-50%);
    pointer-events: none;
}

.ornate-heading {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.ornate-heading > p:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 0 14px;
    color: #d7ae68;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.ornate-heading > p:first-child span {
    width: 46px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red));
}

.ornate-heading > p:first-child span:last-child {
    background: linear-gradient(90deg, var(--red), transparent);
}

.ornate-heading h2 {
    margin: 0;
    color: #fffaf0;
    font-size: clamp(3rem, 5.4vw, 5.8rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.95;
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.35);
}

.ornate-heading h2 em {
    color: var(--gold-light);
    font-style: normal;
}

.ornate-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin: 22px auto 0;
}

.ornate-rule i {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 170, 83, 0.6));
}

.ornate-rule i:last-child {
    background: linear-gradient(90deg, rgba(223, 170, 83, 0.6), transparent);
}

.ornate-rule b {
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.ornate-description {
    max-width: 560px;
    margin: 20px auto 0;
    color: #9d9892;
    font-size: 0.9rem;
    line-height: 1.7;
}

.general-features {
    padding-block: 64px 58px;
}

.general-features .section-shell {
    width: min(1360px, calc(100% - 64px));
}

.general-features .ornate-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 34px;
    padding: 27px 34px 25px;
}

.general-features .ornate-heading::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    border-top: 1px solid rgba(141, 157, 190, 0.08);
    border-bottom: 1px solid rgba(171, 65, 68, 0.08);
    background: linear-gradient(90deg, transparent, rgba(24, 34, 54, 0.42) 30%, rgba(24, 34, 54, 0.42) 70%, transparent);
}

.general-features .ornate-heading h2 {
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.general-features .ornate-description {
    max-width: 720px;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.section-bridge {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 50%;
    width: min(980px, calc(100% - 48px));
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: none;
    transform: translateX(-50%);
}

.section-bridge > span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 145, 178, 0.28), rgba(207, 57, 57, 0.42));
}

.section-bridge > span:last-child {
    background: linear-gradient(90deg, rgba(207, 57, 57, 0.42), rgba(223, 170, 83, 0.3), transparent);
}

.section-bridge b {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 22px;
    border: 1px solid rgba(223, 170, 83, 0.24);
    color: #c9a15f;
    background: linear-gradient(110deg, #111a2b, #171626 54%, #23151c);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.045);
    clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0 50%);
    font-size: 0.55rem;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.section-bridge b i {
    color: #d75349;
    font-size: 0.46rem;
}

.platform-stores {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 18px;
}

.features-platform-stores {
    width: min(660px, 100%);
    margin: 28px auto 0;
}

.hero-platform-stores {
    width: min(430px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 9px auto 0;
}

.hero-platform-stores .store-button {
    min-height: 48px;
    padding-block: 6px;
}

.hero-platform-stores .store-button > i {
    font-size: 1.05rem;
}

.hero-platform-stores .store-button small {
    font-size: 10px;
}

.hero-platform-stores .store-button strong {
    font-size: 12px;
}

.store-button {
    position: relative;
    min-height: 58px;
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: white;
    box-shadow: 0 11px 24px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.store-button::before {
    content: "";
    position: absolute;
    top: -90%;
    left: -60%;
    width: 36%;
    height: 280%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: rotate(22deg);
    transition: left 0.5s ease;
}

.store-button:hover {
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.28), 0 0 20px rgba(211, 155, 68, 0.08);
    transform: translateY(-2px);
}

.store-button:hover::before {
    left: 125%;
}

.store-apple {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 44%),
        linear-gradient(120deg, #303541, #151a26 62%, #4d5361);
    border-color: rgba(196, 204, 219, 0.26);
}

.store-play {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 44%),
        linear-gradient(120deg, #173d3d, #17304a 55%, #845d25);
    border-color: rgba(99, 191, 169, 0.22);
}

.store-pc {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 44%),
        linear-gradient(120deg, #5e1722, #862127 54%, #b36f2c);
    border-color: rgba(232, 155, 87, 0.28);
}

.store-button > i {
    position: relative;
    font-size: 1.35rem;
    text-align: center;
}

.store-button span {
    position: relative;
}

.store-button small, .store-button strong {
    display: block;
}

.store-button small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    letter-spacing: 0.045em;
}

.store-button strong {
    margin-top: 2px;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .ornate-heading {margin-bottom: 42px;}

    .ornate-heading > p:first-child {gap: 9px;
        font-size: 0.52rem;}

    .ornate-heading > p:first-child span {width: 26px;}

    .ornate-heading h2 {font-size: clamp(2.8rem, 14vw, 4rem);}

    .general-features {padding: 58px 0 46px;}

    .general-features .section-shell {width: calc(100% - 30px);}

    .section-bridge {top: 10px;
        width: calc(100% - 30px);
        gap: 8px;}

    .section-bridge b {min-height: 30px;
        padding: 7px 14px;
        font-size: 0.48rem;}

    .general-features .ornate-heading {margin-bottom: 28px;
        padding: 24px 10px 20px;}

    .general-features .ornate-description {font-size: 0.92rem;
        line-height: 1.65;}

    .platform-stores {grid-template-columns: 1fr;}

    .hero-platform-stores {grid-template-columns: repeat(2, minmax(0, 1fr));}

    .store-button {min-height: 56px;}
}

.feature-groups {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.feature-group {
    min-width: 0;
}

.feature-group-heading {
    display: grid;
    grid-template-columns: 42px max-content minmax(40px, 1fr);
    align-items: center;
    gap: 14px;
    margin-bottom: 13px;
}

.feature-group-heading > span {
    display: grid;
    width: 42px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(217, 170, 88, 0.4);
    color: #e7b866;
    background: rgba(102, 65, 23, 0.22);
    font: 800 10px/1 Tahoma, Arial, sans-serif;
}

.feature-group-heading h3 {
    margin: 0;
    color: #e9ddc7;
    font: 800 12px/1 Tahoma, Arial, sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-group-heading > i {
    height: 1px;
    background: linear-gradient(90deg, rgba(216, 170, 88, 0.36), rgba(103, 137, 161, 0.15) 55%, transparent);
}

.feature-primary-grid, .feature-core-grid, .feature-missing-grid {
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
}

.feature-primary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.feature-primary-grid li {
    --feature-accent: #d8a44c;
    position: relative;
    min-height: 390px;
    display: grid;
    grid-template-rows: 224px minmax(0, 1fr);
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(198, 153, 77, 0.3);
    border-radius: 5px;
    background: #0b0d12;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.035);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-primary-grid li::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 78px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--feature-accent));
    content: "";
    opacity: 0.7;
}

.feature-primary-grid li:hover {
    border-color: rgba(222, 177, 94, 0.58);
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.feature-primary-visual {
    position: relative;
    overflow: hidden;
    background: #090c12;
}

.feature-primary-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(4, 7, 11, 0.42), transparent 22%, transparent 78%, rgba(4, 7, 11, 0.42));
    pointer-events: none;
}

.feature-primary-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: saturate(0.82) contrast(1.04);
    transition: opacity 220ms ease;
}

.feature-primary-visual > span {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    display: grid;
    min-width: 38px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(222, 174, 91, 0.42);
    color: #e5bd75;
    background: rgba(9, 10, 13, 0.8);
    font: 900 10px/1 Tahoma, Arial, sans-serif;
}

.feature-primary-copy {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 20px 22px 22px;
    background: linear-gradient(145deg, rgba(52, 37, 20, 0.2), rgba(10, 12, 17, 0.96) 54%);
}

.feature-primary-grid small {
    color: var(--feature-accent);
    font: 800 9px/1 Tahoma, Arial, sans-serif;
    letter-spacing: 0.13em;
}

.feature-primary-grid strong {
    color: #f1e7d4;
    font: 700 clamp(1.15rem, 1.65vw, 1.5rem)/1.15 "Beaufort for LoL", Georgia, serif;
}

.feature-primary-grid p {
    margin: 3px 0 0;
    color: #9fa3a6;
    font: 500 12px/1.65 Tahoma, Arial, sans-serif;
}

.feature-core-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 11px;
}

.feature-core-grid li {
    min-height: 68px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding: 12px 18px;
    border: 1px solid rgba(191, 145, 69, 0.3);
    border-left: 3px solid rgba(216, 164, 76, 0.72);
    border-radius: 5px;
    color: #dcdedc;
    background: linear-gradient(115deg, rgba(61, 43, 21, 0.34), rgba(10, 18, 30, 0.9));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
    font: 700 13px/1.3 Tahoma, Arial, sans-serif;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.feature-core-grid li:hover {
    border-color: rgba(208, 171, 100, 0.48);
    color: #fff4df;
    transform: translateY(-2px);
}

.feature-group-missing .feature-group-heading > span {
    border-color: rgba(208, 79, 75, 0.48);
    color: #e57069;
    background: rgba(118, 34, 37, 0.2);
}

.feature-group-missing .feature-group-heading > i {
    background: linear-gradient(90deg, rgba(207, 77, 73, 0.46), rgba(127, 47, 56, 0.13) 55%, transparent);
}

.feature-missing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.feature-missing-grid li {
    min-height: 78px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 12px;
    border: 1px solid rgba(174, 63, 65, 0.34);
    border-radius: 5px;
    background: linear-gradient(120deg, rgba(73, 24, 31, 0.5), rgba(17, 14, 23, 0.9));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.feature-missing-grid li > i {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(210, 83, 78, 0.42);
    color: #d8625d;
    background: rgba(134, 39, 42, 0.14);
    font-size: 13px;
}

.feature-missing-icon {
    position: relative;
    display: grid;
    width: 37px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(193, 77, 75, 0.3);
    background: rgba(7, 11, 17, 0.72);
}

.feature-missing-icon img {
    width: auto;
    max-width: 32px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    filter: saturate(0.72) brightness(0.78);
}

.feature-missing-icon i {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ef5e58;
    font-size: 22px;
    text-shadow: 0 1px 2px #250708, 0 0 8px rgba(220, 52, 49, 0.58);
}

.feature-missing-grid li > span {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.feature-missing-grid strong {
    color: #d9d2cc;
    font: 700 11px/1.3 Tahoma, Arial, sans-serif;
}

.feature-missing-grid small {
    color: #e46a63;
    font: 900 10px/1 Tahoma, Arial, sans-serif;
    letter-spacing: 0.14em;
}

@media (max-width: 1120px) {
    .feature-core-grid {grid-template-columns: repeat(3, minmax(0, 1fr));}

    .feature-missing-grid {grid-template-columns: repeat(4, minmax(0, 1fr));}
}

@media (max-width: 760px) {
    .feature-groups {gap: 27px;}

    .feature-group-heading {grid-template-columns: 36px max-content minmax(24px, 1fr);
        gap: 10px;}

    .feature-group-heading > span {width: 36px;
        height: 28px;}

    .feature-group-heading h3 {font-size: 10px;}

    .feature-primary-grid {grid-template-columns: 1fr;
        gap: 10px;}

    .feature-primary-grid li {min-height: 330px;
        grid-template-rows: 185px minmax(0, 1fr);}

    .feature-primary-grid strong {font-size: 1.12rem;}

    .feature-primary-copy {padding: 16px;}

    .feature-primary-grid p {font-size: 11px;}

    .feature-core-grid, .feature-missing-grid {grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;}

    .feature-core-grid li {min-height: 68px;
        grid-template-columns: minmax(0, 1fr);
        padding: 10px;}

    .feature-missing-grid li {min-height: 68px;
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 9px;
        padding: 10px;}

    .feature-missing-grid li > i {width: 30px;
        height: 30px;
        font-size: 11px;}

    .feature-missing-icon {width: 31px;
        height: 40px;}

    .feature-missing-icon img {max-width: 27px;
        max-height: 34px;}

    .feature-missing-icon i {font-size: 18px;}

    .feature-core-grid li {font-size: 11px;}

    .feature-missing-grid strong {font-size: 13px;}
}

@media (max-width: 350px) {
    .feature-core-grid, .feature-missing-grid {grid-template-columns: 1fr;}
}

main {
    background: #07101a;
    --section-art-fade: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.06) 28px,
        rgba(0, 0, 0, 0.18) 56px,
        rgba(0, 0, 0, 0.38) 92px,
        rgba(0, 0, 0, 0.62) 132px,
        rgba(0, 0, 0, 0.82) 176px,
        #000 230px,
        #000 calc(100% - 230px),
        rgba(0, 0, 0, 0.82) calc(100% - 176px),
        rgba(0, 0, 0, 0.62) calc(100% - 132px),
        rgba(0, 0, 0, 0.38) calc(100% - 92px),
        rgba(0, 0, 0, 0.18) calc(100% - 56px),
        rgba(0, 0, 0, 0.06) calc(100% - 28px),
        transparent 100%
    );
}

main > .general-features::before, main > .general-features::after, main > .general-features > .features-backdrop {
    -webkit-mask-image: var(--section-art-fade);
    mask-image: var(--section-art-fade);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    mask-mode: alpha;
}

.general-features > .section-bridge {
    display: none;
}

.nav-play-menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
}

.nav-play-menu > .nav-action {
    min-width: 130px;
    border-right: 0;
}

.nav-action-toggle {
    position: relative;
    display: grid;
    min-width: 40px;
    min-height: 54px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 173, 111, 0.42);
    border-left-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: linear-gradient(120deg, #b52c31, #e05443 70%, #ef7650);
    box-shadow: 0 12px 30px rgba(159, 30, 37, 0.3), inset 0 1px rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

.nav-action-toggle i {
    font-size: 9px;
    transition: transform 180ms ease;
}

.nav-action-toggle:hover, .nav-action-toggle:focus-visible {
    color: #fff5dc;
    background: linear-gradient(120deg, #c73438, #eb624b 70%, #f3865e);
    outline: 0;
}

.nav-play-menu.open .nav-action-toggle i {
    transform: rotate(180deg);
}

.feature-group-heading {
    grid-template-columns: max-content minmax(24px, 1fr);
    margin-bottom: 18px;
}

.feature-group-heading h3 {
    color: #f0e2c8;
    font-size: 13px;
    letter-spacing: 0.13em;
}

.feature-core-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-core-grid li {
    position: relative;
    min-height: 390px;
    display: block;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(199, 154, 80, 0.28);
    border-radius: 7px;
    background: #090b0f;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.035);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.feature-core-grid li::after {
    position: absolute;
    right: 18px;
    bottom: 0;
    left: 18px;
    z-index: 3;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 174, 87, 0.72), transparent);
    content: "";
    opacity: 0;
    transition: opacity 220ms ease;
}

.feature-core-grid li > a {
    position: relative;
    height: 100%;
    min-height: 390px;
    display: block;
    isolation: isolate;
    color: inherit;
    text-decoration: none;
}

.feature-core-grid li > a::before, .feature-core-grid li > a::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
}

.feature-core-grid li > a::before {
    background:
        linear-gradient(180deg, rgba(5, 7, 10, 0.03) 0%, rgba(5, 7, 10, 0.08) 32%, rgba(6, 8, 12, 0.72) 59%, #090b0f 82%, #090b0f 100%),
        linear-gradient(90deg, rgba(5, 7, 10, 0.18), transparent 35%, transparent 65%, rgba(5, 7, 10, 0.18));
}

.feature-core-grid li > a::after {
    border: 1px solid transparent;
    background: linear-gradient(145deg, rgba(255, 232, 184, 0.09), transparent 24%) border-box;
    opacity: 0.65;
}

.feature-core-grid img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.74) brightness(0.72) contrast(1.08);
    transform: scale(1.01);
    transition: filter 300ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-core-grid a > span {
    position: absolute;
    right: 24px;
    bottom: 25px;
    left: 24px;
    z-index: 2;
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 13px;
    padding-top: 18px;
    border-top: 1px solid rgba(222, 180, 108, 0.2);
}

.feature-core-grid strong {
    color: #f1d38f;
    font: 700 20px/1.15 "Beaufort for LoL", Georgia, serif;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.9);
}

.feature-core-grid p {
    margin: 0;
    color: #bbb5aa;
    font: 500 11px/1.7 Tahoma, Arial, sans-serif;
    text-shadow: 0 2px 8px #000;
}

.feature-core-grid a > i {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(225, 184, 110, 0.32);
    border-radius: 50%;
    color: #e8bd70;
    background: rgba(6, 9, 14, 0.72);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
    font-size: 9px;
    transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.feature-core-grid li:hover img, .feature-core-grid li:focus-within img {
    filter: saturate(0.95) brightness(0.84) contrast(1.05);
    transform: scale(1.075);
}

.feature-core-grid li:hover a > i, .feature-core-grid li:focus-within a > i {
    color: #fff4d4;
    background: rgba(144, 91, 26, 0.78);
    transform: translateX(2px);
}

.feature-core-grid li:hover, .feature-core-grid li:focus-within {
    border-color: rgba(224, 178, 94, 0.58);
    box-shadow: 0 30px 58px rgba(0, 0, 0, 0.48), 0 0 24px rgba(190, 127, 37, 0.08);
    transform: translateY(-5px);
}

.feature-core-grid li:hover::after, .feature-core-grid li:focus-within::after {
    opacity: 1;
}

.feature-core-grid a:focus-visible {
    outline: 1px solid #d8a44c;
    outline-offset: -2px;
}

.feature-missing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
}

.feature-missing-grid li {
    min-height: 66px;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 11px;
    padding: 8px 11px;
}

.feature-missing-grid .feature-missing-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-color: rgba(202, 80, 77, 0.36);
}

.feature-missing-grid .feature-missing-icon img {
    max-width: 42px;
    max-height: 42px;
    filter: saturate(0.72) brightness(0.88);
}

.feature-missing-grid .feature-missing-icon > i, .feature-missing-grid .feature-missing-icon > b {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ef5e58;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 1px 2px #250708, 0 0 8px rgba(220, 52, 49, 0.6);
}

.feature-missing-grid .feature-missing-symbol > i {
    color: #76676a;
    font-size: 22px;
    text-shadow: none;
}

.feature-missing-grid .feature-missing-symbol > b {
    color: #ef5e58;
}

.feature-missing-grid li > span:last-child {
    gap: 4px;
}

.feature-missing-grid strong {
    font-size: 13px;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px 42px;
    padding-top: 30px;
    padding-bottom: 20px;
}

.footer-follow {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    padding: 20px 22px;
    border: 1px solid rgba(207, 163, 85, 0.22);
    border-left: 3px solid rgba(210, 162, 76, 0.78);
    background: linear-gradient(105deg, rgba(37, 27, 20, 0.34), rgba(10, 16, 25, 0.88));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.footer-follow > span:first-child {
    display: grid;
    gap: 7px;
}

.footer-follow small {
    color: #a9854c;
    font: 800 8px/1 Tahoma, Arial, sans-serif;
    letter-spacing: 0.16em;
}

.footer-follow strong {
    color: #e9dfcf;
    font: 700 18px/1.1 "Beaufort for LoL", Georgia, serif;
}

.site-footer > .site-footer-brand {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-since {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    min-width: min(340px, 100%);
}

.footer-since article {
    display: grid;
    place-content: center;
    gap: 6px;
    min-width: 0;
    padding: 8px 14px;
    text-align: center;
}

.footer-since small {
    color: #c4b48a;
    font: 800 8px/1 Tahoma, Arial, sans-serif;
    letter-spacing: 0.16em;
}

.footer-since strong {
    color: #f4d28f;
    font: 700 15px/1 "Beaufort for LoL", Georgia, serif;
    letter-spacing: 0.08em;
}

.footer-since-rule {
    width: 1px;
    margin: 6px 0;
    background: linear-gradient(180deg, transparent, rgba(232, 174, 76, 0.45), transparent);
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    min-width: 110px;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(206, 161, 84, 0.24);
    color: #f3d998;
    background: rgb(9 15 27);
    font-size: 17px;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-socials a span {
    font: 700 10px/1 Tahoma, Arial, sans-serif;
    letter-spacing: 0.06em;
}

.footer-socials a:hover, .footer-socials a:focus-visible {
    border-color: rgba(224, 178, 94, 0.62);
    color: #f1cf8e;
    outline: 0;
    transform: translateY(-2px);
}

.fixed-community-card {
    position: fixed;
    z-index: 80;
    bottom: 22px;
    width: auto;
    max-width: 220px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(10, 14, 22, 0.88);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}

.fixed-community-discord {
    left: 22px;
    border-color: rgba(88, 101, 242, 0.22);
    animation: fixedCommunityEnterLeft 500ms 450ms ease both;
}

.fixed-community-whatsapp {
    right: 22px;
    border-color: rgba(37, 211, 102, 0.22);
    animation: fixedCommunityEnterRight 500ms 600ms ease both;
}

.fixed-community-card > a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 6px 14px 6px 6px;
    color: #eee8dc;
    text-decoration: none;
}

.fixed-community-mark {
    display: grid;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    font-size: 16px;
}

.fixed-community-discord .fixed-community-mark {
    color: #fff;
    background: rgba(88, 101, 242, 0.9);
}

.fixed-community-whatsapp .fixed-community-mark {
    color: #fff;
    background: rgba(37, 211, 102, 0.9);
}

.fixed-community-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.fixed-community-copy strong {
    color: #f0ebe3;
    font: 700 0.68rem/1.2 Tahoma, Arial, sans-serif;
    letter-spacing: 0.04em;
}

.fixed-community-copy small {
    color: #8a919a;
    font: 500 0.58rem/1.3 Tahoma, Arial, sans-serif;
}

.fixed-community-arrow {
    flex-shrink: 0;
    margin-left: 2px;
    color: #6f7782;
    font-size: 0.62rem;
    transition: color 180ms ease, transform 180ms ease;
}

.fixed-community-card:hover, .fixed-community-card:focus-within {
    background: rgba(14, 18, 28, 0.94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    transform: translateY(-2px);
}

.fixed-community-discord:hover, .fixed-community-discord:focus-within {
    border-color: rgba(88, 101, 242, 0.42);
}

.fixed-community-whatsapp:hover, .fixed-community-whatsapp:focus-within {
    border-color: rgba(37, 211, 102, 0.42);
}

.fixed-community-card:hover .fixed-community-arrow, .fixed-community-card:focus-within .fixed-community-arrow {
    color: var(--gold-light);
    transform: translate(1px, -1px);
}

@media (max-width: 1120px) {
    .feature-core-grid {grid-template-columns: repeat(3, minmax(0, 1fr));}

    .feature-missing-grid {grid-template-columns: repeat(3, minmax(0, 1fr));}
}

@media (max-width: 760px) {
    .nav-action-toggle {min-height: 48px;}

    .feature-core-grid {grid-template-columns: repeat(2, minmax(0, 1fr));}

    .feature-missing-grid {grid-template-columns: 1fr;}

    .feature-core-grid li, .feature-core-grid li > a {min-height: 350px;}

    .feature-core-grid a > span {right: 18px;
        bottom: 20px;
        left: 18px;
        padding-top: 14px;}

    .feature-core-grid strong {font-size: 15px;}

    .feature-core-grid p {font-size: 10px;}

    .feature-missing-grid li {min-height: 62px;
        grid-template-columns: 46px minmax(0, 1fr);
        padding: 7px 10px;}

    .feature-missing-grid .feature-missing-icon {width: 44px;
        height: 44px;}

    .feature-missing-grid .feature-missing-icon img {max-width: 38px;
        max-height: 38px;}

    .site-footer {grid-template-columns: 1fr;
        padding-bottom: 82px;}

    .footer-follow {display: grid;
        justify-items: center;
        text-align: center;}

    .footer-socials {flex-wrap: wrap;
        justify-content: center;}

    .footer-socials a {min-width: 96px;}

    .site-footer > .site-footer-brand, .site-footer nav {justify-content: center;}

    .site-footer > .site-footer-brand {flex-direction: column;
        align-items: center;
        text-align: center;}

    .fixed-community-card {bottom: 12px;
        max-width: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;}

    .fixed-community-discord {left: 12px;}

    .fixed-community-whatsapp {right: 12px;}

    .fixed-community-card > a {justify-content: center;
        min-height: 44px;
        padding: 0;}

    .fixed-community-mark {width: 36px;
        height: 36px;
        font-size: 15px;}

    .fixed-community-copy, .fixed-community-arrow {display: none;}
}

@media (max-width: 520px) {
    .feature-core-grid {grid-template-columns: 1fr;}

    .feature-core-grid li, .feature-core-grid li > a {min-height: 390px;}
}

@media (max-width: 640px) {
    .nav-play-menu {display: none;}
}

@media (max-width: 760px) {
    main {--section-art-fade: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.08) 18px,
            rgba(0, 0, 0, 0.24) 38px,
            rgba(0, 0, 0, 0.5) 68px,
            rgba(0, 0, 0, 0.78) 104px,
            #000 146px,
            #000 calc(100% - 146px),
            rgba(0, 0, 0, 0.78) calc(100% - 104px),
            rgba(0, 0, 0, 0.5) calc(100% - 68px),
            rgba(0, 0, 0, 0.24) calc(100% - 38px),
            rgba(0, 0, 0, 0.08) calc(100% - 18px),
            transparent 100%
        );}
}

.hero-brand-title {
    display: grid;
    margin: 0;
    color: #fff8ec;
    font-family: "Beaufort for LoL", Georgia, serif;
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.72);
}

.hero-brand-title span {
    font-size: 0.52em;
    line-height: 1.2;
}

.hero-brand-title em {
    color: #f4d28f;
    font-style: normal;
}

.hero-brand-title strong {
    margin-top: 8px;
    color: #dfac54;
    font-size: 0.48em;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.hero-brand-copy {
    max-width: 720px;
    margin-top: 18px;
    font-size: 1rem;
}

.heritage-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(520px, 100%);
    margin: 18px auto 0;
}

.heritage-badges article {
    padding: 12px 16px;
    border: 1px solid rgba(232, 174, 76, 0.22);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(8, 10, 17, 0.55));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.heritage-badges small {
    display: block;
    color: #c4b48a;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.heritage-badges strong {
    display: block;
    margin-top: 4px;
    color: #f4d28f;
    font-family: "Beaufort for LoL", Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
}

.heritage {
    position: relative;
    padding: 92px 0 48px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 12%, rgba(184, 43, 39, 0.12), transparent 32%),
        radial-gradient(circle at 82% 88%, rgba(212, 161, 78, 0.08), transparent 36%),
        #07101a;
}

.heritage-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 8px 0 36px;
    padding: 0;
    list-style: none;
}

.heritage-timeline li {
    display: grid;
    gap: 10px;
    padding: 22px 22px 24px;
    border: 1px solid rgba(214, 166, 82, 0.22);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(8, 12, 20, 0.72));
}

.heritage-timeline time {
    color: #dfac54;
    font-family: "Beaufort for LoL", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.heritage-timeline strong {
    display: block;
    margin-bottom: 8px;
    color: #fff6e8;
    font-size: 1.05rem;
}

.heritage-timeline p {
    margin: 0;
    color: #c5c1ba;
    font-size: 0.92rem;
    line-height: 1.7;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.heritage-card {
    padding: 28px 28px 32px;
    border: 1px solid rgba(214, 166, 82, 0.2);
    background: linear-gradient(180deg, rgba(18, 14, 12, 0.72), rgba(7, 10, 16, 0.86));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.heritage-card small {
    display: block;
    margin-bottom: 10px;
    color: #ddb46d;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.heritage-card h3 {
    margin: 0 0 14px;
    color: #fff8ec;
    font-family: "Beaufort for LoL", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.heritage-card p {
    margin: 0;
    color: #c6c0b8;
    font-size: 0.96rem;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .heritage-timeline, .heritage-grid {grid-template-columns: 1fr;}
}

@media (max-width: 640px) {
    .heritage {padding: 68px 0 28px;}

    .heritage-badges {grid-template-columns: 1fr;}

    .hero-brand-title {font-size: clamp(2.2rem, 12vw, 3.4rem);}

    .hero-content {margin-top: 46vh;}

    .hero-warrior-photo {object-position: center 0%;}
}

@keyframes siteLoaderLogo {
    0%, 100% { opacity: 0.78; transform: scale(0.985); }
    50% { opacity: 1; transform: scale(1.015); }
}

@keyframes siteLoaderGlow {
    0%, 100% { opacity: 0.45; transform: scale(0.92); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes siteLoaderTrack {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(350%); }
}

@keyframes orbFloat {
    0%,
    100% { opacity: 0.65; transform: translate3d(0, 0, 0) scale(0.95); }
    50% { opacity: 1; transform: translate3d(0, -18px, 0) scale(1.06); }
}

@keyframes scrollBounce {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes fixedCommunityEnterLeft {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fixedCommunityEnterRight {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}
