/*
Theme Name: Legend Melli
Author: Legend Melli
Description: Premium gaming magazine WordPress theme with cinematic video hero, featured games, latest videos, news, reviews, streams and responsive UI.
Version: 3.1.0
Requires at least: 6.4
Requires PHP: 8.0
License: GPL-2.0-or-later
Text Domain: legend-melli
*/

/* ==========================================================
   DESIGN SYSTEM
========================================================== */

:root {
    --bg: #05060a;
    --panel: #0b0e15;
    --panel-2: #10141d;

    --text: #f5f7fb;
    --white: #f5f7fb;
    --silver: #dde2ea;
    --muted: #8e98aa;

    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .14);

    --purple: #9b5cff;
    --purple-electric: #7a2cff;
    --purple-soft: #caaaff;
    --cyan: #00e5ff;

    --danger: #ff5570;

    --max: 1360px;
    --radius: 18px;

    --font-logo: 'Ethnocentric', sans-serif;
    --font-hero: 'Orbitron', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);
}


/* ==========================================================
   RESET / BASE
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    color: #fff;
    background: rgba(155, 92, 255, .55);
}

.container {
    width: min(var(--max), calc(100% - 44px));
    margin-inline: auto;
}


/* ==========================================================
   HEADER
========================================================== */

.lm-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3, 4, 8, .96),
            rgba(3, 4, 8, .25)
        );

    border-bottom: 1px solid transparent;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transform: translateY(0);

    transition:
        background .35s var(--ease-smooth),
        border-color .35s var(--ease-smooth),
        box-shadow .35s var(--ease-smooth),
        transform .35s var(--ease-out);
}

.lm-header.scrolled {
    background: rgba(5, 6, 10, .94);
    border-bottom-color: var(--line);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .22);
}

.lm-nav {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 35px;
}


/* ==========================================================
   LOGO
========================================================== */

.lm-logo {
    flex: 0 0 auto;

    display: flex;
    align-items: center;

    font-family: var(--font-logo);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;

    letter-spacing: .06em;

    white-space: nowrap;
    text-transform: uppercase;

    transition:
        color .25s ease,
        transform .25s var(--ease-out);
}

.lm-logo:hover {
    transform: translateY(-1px);
}

.lm-logo span {
    color: var(--purple);

    transition:
        color .25s ease,
        text-shadow .25s ease;
}

.lm-logo:hover span {
    color: #b77aff;

    text-shadow:
        0 0 18px rgba(155, 92, 255, .45);
}

.lm-logo img,
.lm-logo .custom-logo {
    width: auto;
    max-height: 48px;
}


/* ==========================================================
   DESKTOP NAVIGATION
========================================================== */

.lm-menu {
    min-width: 0;
    flex: 0 1 auto;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 22px;
}

.lm-menu > ul,
.lm-menu .lm-primary-menu {
    display: flex;
    align-items: center;

    gap: 24px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.lm-menu li {
    position: relative;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* ==========================================================
   NORMAL NAV LINKS
========================================================== */

.lm-menu li a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 0;

    color: #cbd0da;

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: .08em;

    white-space: nowrap;
    text-transform: uppercase;

    border: 1px solid transparent;
    border-radius: 999px;

    transition:
        color .25s ease,
        opacity .25s ease,
        transform .25s var(--ease-out),
        text-shadow .25s ease;
}

.lm-menu li a:hover {
    color: #fff;
    opacity: 1;
    transform: translateY(-1px);
}


/* Subtle focus on hovered navigation item */

.lm-menu:has(li a:hover) li:not(:has(a:hover)) > a {
    opacity: .55;
}

.lm-menu:has(.lm-video-library:hover) > .lm-video-library,
.lm-menu:has(.lm-search:hover) > .lm-search {
    opacity: 1;
}


/* ==========================================================
   ACTIVE NORMAL MENU ITEM
========================================================== */

.lm-menu li.current-menu-item > a,
.lm-menu li.current-menu-parent > a,
.lm-menu li.current-menu-ancestor > a,
.lm-menu li.current_page_item > a {
    color: #fff;

    text-shadow:
        0 0 18px rgba(255, 255, 255, .12);
}

.lm-menu li.current-menu-item > a::after,
.lm-menu li.current-menu-parent > a::after,
.lm-menu li.current-menu-ancestor > a::after,
.lm-menu li.current_page_item > a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 3px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--purple);

    box-shadow:
        0 0 10px rgba(155, 92, 255, .7);

    transform: translateX(-50%);

    animation: lmActiveDot .8s var(--ease-out) both;
}

@keyframes lmActiveDot {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}


/* ==========================================================
   VIDEO LIBRARY CTA
========================================================== */

.lm-menu > .lm-video-library,
.lm-menu > .cta,
.lm-menu li.cta > a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    padding: 10px 17px;

    border: 1px solid rgba(155, 92, 255, .55);
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            rgba(155, 92, 255, .16),
            rgba(122, 44, 255, .08)
        );

    color: #f5f7fb;

    font-size: 12px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: .05em;

    white-space: nowrap;

    overflow: hidden;

    box-shadow:
        0 0 25px rgba(155, 92, 255, .08);

    transition:
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        color .3s ease,
        transform .3s var(--ease-out);
}

.lm-menu > .lm-video-library::before,
.lm-menu > .cta::before,
.lm-menu li.cta > a::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent
        );

    transform: skewX(-20deg);

    transition: left .7s ease;
}

.lm-menu > .lm-video-library:hover::before,
.lm-menu > .cta:hover::before,
.lm-menu li.cta > a:hover::before {
    left: 140%;
}

.lm-menu > .lm-video-library:hover,
.lm-menu > .cta:hover,
.lm-menu li.cta > a:hover {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            rgba(155, 92, 255, .28),
            rgba(122, 44, 255, .15)
        );

    border-color: rgba(155, 92, 255, .9);

    box-shadow:
        0 0 30px rgba(155, 92, 255, .2),
        inset 0 0 20px rgba(155, 92, 255, .05);

    transform: translateY(-2px);
}


/* ==========================================================
   SEARCH
========================================================== */

.lm-menu > .lm-search {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 0;

    border: 0;
    border-radius: 0;

    background: transparent;
    box-shadow: none;

    color: #8e98aa;

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: .08em;

    white-space: nowrap;

    transition:
        color .25s ease,
        transform .25s var(--ease-out);
}

.lm-menu > .lm-search::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 4px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--cyan)
        );

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform .3s var(--ease-out);
}

.lm-menu > .lm-search:hover {
    color: #fff;

    background: transparent;

    border: 0;

    box-shadow: none;

    transform: translateY(-1px);
}

.lm-menu > .lm-search:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* Keep WordPress search controls clean */

.lm-menu .search-submit,
.lm-menu button.search,
.lm-menu a.search,
.lm-menu button[type="submit"],
.lm-menu .search,
.lm-menu .search-button,
.lm-menu .search-toggle {
    border: 0;
    border-color: transparent;

    background: transparent;

    box-shadow: none;
    outline: none;
}

.lm-menu .search:hover,
.lm-menu .search-button:hover,
.lm-menu .search-toggle:hover,
.lm-menu .search-submit:hover,
.lm-menu button.search:hover,
.lm-menu a.search:hover,
.lm-menu button[type="submit"]:hover,
.lm-menu .search:focus,
.lm-menu .search-button:focus,
.lm-menu .search-toggle:focus,
.lm-menu .search-submit:focus,
.lm-menu button.search:focus,
.lm-menu a.search:focus,
.lm-menu button[type="submit"]:focus {
    border: 0;
    border-color: transparent;

    background: transparent;

    box-shadow: none;
    outline: none;
}


/* ==========================================================
   SEARCH
========================================================== */

.lm-search {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 0;

    border: 0;
    background: transparent;

    color: #8e98aa;

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;

    letter-spacing: .08em;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .25s ease,
        transform .25s cubic-bezier(.22,1,.36,1);
}

.lm-search::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 4px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--cyan)
        );

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform .35s cubic-bezier(.22,1,.36,1);
}

.lm-search:hover {
    color: #fff;

    transform: translateY(-1px);
}

.lm-search:hover::after,
.lm-search[aria-expanded="true"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lm-search:focus-visible {
    outline: 2px solid rgba(155,92,255,.7);
    outline-offset: 7px;

    border-radius: 4px;
}


/* ==========================================================
   SEARCH OVERLAY
========================================================== */

.lm-search-overlay {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 0 24px;

    visibility: hidden;
    pointer-events: none;

    opacity: 0;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.lm-search-overlay.is-open {
    visibility: visible;
    pointer-events: auto;

    opacity: 1;
}


/* ==========================================================
   SEARCH BACKDROP
========================================================== */

.lm-search-backdrop {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(155,92,255,.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(0,229,255,.06),
            transparent 25%
        ),
        rgba(3,4,8,.94);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}


/* ==========================================================
   SEARCH PANEL
========================================================== */

.lm-search-panel {
    position: relative;
    z-index: 2;

    width: min(920px, 100%);

    padding-top: clamp(130px, 18vh, 210px);

    transform:
        translateY(-25px)
        scale(.98);

    opacity: 0;

    transition:
        transform .5s cubic-bezier(.22,1,.36,1),
        opacity .35s ease;
}

.lm-search-overlay.is-open .lm-search-panel {
    transform:
        translateY(0)
        scale(1);

    opacity: 1;
}


/* ==========================================================
   SEARCH INNER
========================================================== */

.lm-search-inner {
    position: relative;

    width: 100%;
}


/* ==========================================================
   SEARCH EYEBROW
========================================================== */

.lm-search-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: var(--cyan);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .2em;

    text-transform: uppercase;
}

.lm-search-eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background: currentColor;

    box-shadow:
        0 0 12px rgba(0,229,255,.5);
}


/* ==========================================================
   SEARCH TITLE
========================================================== */

.lm-search-inner h2 {
    margin: 0 0 32px;

    font-family: var(--font-hero);

    font-size: clamp(56px, 9vw, 110px);
    line-height: .85;

    letter-spacing: -.045em;

    font-weight: 800;

    color: #fff;

    text-transform: uppercase;

    text-shadow:
        0 0 40px rgba(155,92,255,.08);
}

.lm-search-inner h2 span {
    color: var(--purple);

    text-shadow:
        0 0 30px rgba(155,92,255,.55);
}


/* ==========================================================
   SEARCH FORM
========================================================== */

.lm-search-form {
    width: 100%;
}


/* ==========================================================
   SEARCH FIELD
========================================================== */

.lm-search-field {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 76px;

    padding: 0 9px 0 25px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.04);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.lm-search-field::after {
    content: "";

    position: absolute;

    left: 22px;
    right: 22px;
    bottom: -1px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--purple),
            var(--cyan),
            transparent
        );

    opacity: 0;

    transform: scaleX(.6);

    transition:
        opacity .3s ease,
        transform .4s cubic-bezier(.22,1,.36,1);
}

.lm-search-field:focus-within {
    border-color: rgba(155,92,255,.45);

    background:
        linear-gradient(
            135deg,
            rgba(155,92,255,.07),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 30px 90px rgba(0,0,0,.45),
        0 0 45px rgba(155,92,255,.08),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.lm-search-field:focus-within::after {
    opacity: 1;

    transform: scaleX(1);
}


/* ==========================================================
   SEARCH ICON
========================================================== */

.lm-search-icon {
    flex: 0 0 auto;

    display: grid;
    place-items: center;

    margin-right: 15px;

    color: #737d91;

    transition:
        color .3s ease,
        transform .3s ease;
}

.lm-search-field:focus-within .lm-search-icon {
    color: var(--purple);

    transform: scale(1.08);
}


/* ==========================================================
   SEARCH INPUT
========================================================== */

.lm-search-field input {
    min-width: 0;
    flex: 1;

    width: 100%;

    padding: 8px 15px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #fff;

    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;

    line-height: 1.4;
}

.lm-search-field input::placeholder {
    color: #667084;

    transition:
        color .25s ease;
}

.lm-search-field input:focus::placeholder {
    color: #7d8799;
}


/* ==========================================================
   SEARCH SUBMIT
========================================================== */

.lm-search-submit {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 56px;

    padding: 0 20px;

    border: 1px solid rgba(155,92,255,.5);
    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-electric)
        );

    color: #fff;

    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 10px 30px rgba(155,92,255,.2);

    transition:
        transform .3s cubic-bezier(.22,1,.36,1),
        box-shadow .3s ease,
        filter .3s ease;
}

.lm-search-submit strong {
    font-size: 18px;
    font-weight: 400;

    line-height: 1;

    transition:
        transform .3s cubic-bezier(.22,1,.36,1);
}

.lm-search-submit:hover {
    filter: brightness(1.08);

    transform: translateY(-2px);

    box-shadow:
        0 15px 40px rgba(155,92,255,.32);
}

.lm-search-submit:hover strong {
    transform: translateX(4px);
}

.lm-search-submit:active {
    transform: translateY(0) scale(.98);
}

.lm-search-submit:focus-visible {
    outline: 2px solid rgba(255,255,255,.8);
    outline-offset: 3px;
}


/* ==========================================================
   SEARCH FOOTER
========================================================== */

.lm-search-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 18px;

    color: #596274;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.lm-search-esc {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 34px;
    height: 24px;

    padding: 0 7px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 5px;

    color: #7b8597;

    font-size: 8px;

    letter-spacing: .08em;

    background: rgba(255,255,255,.025);
}


/* ==========================================================
   SEARCH CLOSE
========================================================== */

.lm-search-close {
    position: absolute;

    top: 42px;
    right: 0;

    z-index: 5;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;

    background: rgba(255,255,255,.035);

    color: #aeb7c7;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .35s cubic-bezier(.22,1,.36,1);
}

.lm-search-close span {
    position: absolute;

    width: 16px;
    height: 1px;

    background: currentColor;

    transition:
        transform .3s cubic-bezier(.22,1,.36,1);
}

.lm-search-close span:first-child {
    transform: rotate(45deg);
}

.lm-search-close span:last-child {
    transform: rotate(-45deg);
}

.lm-search-close:hover {
    color: #fff;

    border-color: rgba(155,92,255,.55);

    background: rgba(155,92,255,.1);

    transform: rotate(90deg);
}

.lm-search-close:focus-visible {
    outline: 2px solid rgba(155,92,255,.7);
    outline-offset: 4px;
}


/* ==========================================================
   SEARCH OPEN — BODY LOCK
========================================================== */

body.lm-search-open {
    overflow: hidden;
}


/* ==========================================================
   ACCESSIBILITY
========================================================== */

.screen-reader-text {
    position: absolute !important;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* ==========================================================
   SEARCH MOBILE
========================================================== */

@media (max-width: 700px) {

    .lm-search-overlay {
        padding: 0 16px;
    }

    .lm-search-panel {
        padding-top: 105px;
    }

    .lm-search-close {
        top: 28px;
        right: 0;

        width: 42px;
        height: 42px;
    }

    .lm-search-inner h2 {
        margin-bottom: 25px;

        font-size: clamp(50px, 17vw, 78px);
    }

    .lm-search-field {
        min-height: 64px;

        padding: 0 7px 0 17px;

        border-radius: 13px;
    }

    .lm-search-icon {
        margin-right: 7px;
    }

    .lm-search-icon svg {
        width: 19px;
        height: 19px;
    }

    .lm-search-field input {
        padding: 7px;

        font-size: 15px;
    }

    .lm-search-submit {
        min-height: 48px;

        padding: 0 14px;

        border-radius: 9px;
    }

    .lm-search-submit span {
        display: none;
    }

    .lm-search-submit strong {
        font-size: 20px;
    }

    .lm-search-footer {
        margin-top: 14px;

        font-size: 8px;
    }
}


/* ==========================================================
   SEARCH SMALL MOBILE
========================================================== */

@media (max-width: 460px) {

    .lm-search-panel {
        padding-top: 95px;
    }

    .lm-search-close {
        top: 22px;
    }

    .lm-search-eyebrow {
        font-size: 8px;
    }

    .lm-search-inner h2 {
        font-size: 48px;
    }

    .lm-search-field {
        min-height: 60px;

        padding-left: 14px;
    }

    .lm-search-icon {
        display: none;
    }

    .lm-search-field input {
        font-size: 14px;
    }

    .lm-search-submit {
        min-height: 44px;

        padding: 0 12px;
    }

    .lm-search-footer > span:first-child {
        max-width: 220px;

        line-height: 1.4;
    }
}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .lm-search,
    .lm-search::after,
    .lm-search-overlay,
    .lm-search-panel,
    .lm-search-field,
    .lm-search-field::after,
    .lm-search-icon,
    .lm-search-submit,
    .lm-search-submit strong,
    .lm-search-close,
    .lm-search-close span {
        transition: none !important;
    }
}

/* ==========================================================
   WORDPRESS SUBMENUS
========================================================== */

.lm-menu .sub-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 0;

    min-width: 190px;

    margin: 0;
    padding: 8px;

    list-style: none;

    background:
        linear-gradient(
            145deg,
            #10141d,
            #090b11
        );

    border: 1px solid var(--line);
    border-radius: 12px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .45);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-7px) scale(.98);
    transform-origin: top left;

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .25s var(--ease-out);
}

.lm-menu li:hover > .sub-menu,
.lm-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
}

.lm-menu .sub-menu li {
    width: 100%;
}

.lm-menu .sub-menu a {
    display: block;
    width: 100%;

    padding: 10px 12px;

    border: 0;
    border-radius: 7px;

    color: #aeb7c7;

    letter-spacing: .04em;

    transform: none;
}

.lm-menu .sub-menu a:hover {
    background: rgba(155, 92, 255, .1);
    color: #fff;

    transform: translateX(3px);
}


/* ==========================================================
   MOBILE TOGGLE
========================================================== */

.lm-toggle {
    display: none;

    margin-left: auto;
    padding: 5px;

    background: transparent;
    border: 0;

    color: #fff;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;

    transition:
        color .2s ease,
        transform .25s var(--ease-out);
}

.lm-toggle:hover {
    color: var(--purple-soft);
    transform: scale(1.05);
}


/* ==========================================================
   MOBILE MENU
========================================================== */

.mobile-menu {
    position: fixed;
    z-index: 90;

    top: 75px;
    left: 14px;
    right: 14px;

    display: block;

    padding: 12px;

    background:
        linear-gradient(
            145deg,
            #10141d,
            #090b11
        );

    border: 1px solid var(--line);
    border-radius: 16px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .45);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-12px) scale(.98);
    transform-origin: top center;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .3s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
}

.mobile-menu a {
    position: relative;

    display: block;

    padding: 12px;

    color: #cbd0da;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .08em;
    text-transform: uppercase;

    border-radius: 8px;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s var(--ease-out);
}

.mobile-menu a:hover {
    color: #fff;
    background: rgba(155, 92, 255, .1);

    transform: translateX(3px);
}


/* ==========================================================
   HERO
========================================================== */

.lm-hero {
    position: relative;

    min-height: 790px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #05060a;
}

.lm-hero-media,
.lm-hero-shade {
    position: absolute;
    inset: 0;
}

.lm-hero-media {
    transform: scale(1.04);

    animation:
        lmHeroDrift 18s ease-in-out infinite alternate;
}

.lm-hero-media video,
.lm-hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.lm-hero-shade {
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 4, 8, .99),
            rgba(3, 4, 8, .82) 33%,
            rgba(3, 4, 8, .25) 75%,
            rgba(3, 4, 8, .7)
        ),
        linear-gradient(
            0deg,
            #05060a 0%,
            transparent 35%
        );
}

.lm-hero-content {
    position: relative;
    z-index: 2;

    max-width: 780px;

    padding-top: 100px;

    animation:
        lmHeroContentIn .9s var(--ease-out) both;
}

@keyframes lmHeroDrift {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.09) translate3d(-1%, -1%, 0);
    }
}

@keyframes lmHeroContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================
   TYPOGRAPHY
========================================================== */

.eyebrow {
    color: var(--cyan);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .2em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    display: inline-block;

    width: 25px;
    height: 2px;

    margin: 0 9px 3px 0;

    background: currentColor;

    box-shadow:
        0 0 10px rgba(0, 229, 255, .35);
}

.lm-hero h1 {
    margin: 18px 0 25px;

    font-family: var(--font-hero);

    font-size: clamp(52px, 7vw, 100px);
    line-height: .88;

    letter-spacing: -.045em;

    font-weight: 800;

    text-transform: uppercase;
}

.gradient {
    background:
        linear-gradient(
            90deg,
            #fff,
            #caaaff,
            #6ff2ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.lm-hero p {
    max-width: 620px;

    color: #c2c9d5;

    font-size: 18px;
}


/* ==========================================================
   BUTTONS
========================================================== */

.actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 20px;

    border: 1px solid var(--line);
    border-radius: 12px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .08em;
    text-transform: uppercase;

    overflow: hidden;

    transition:
        transform .3s var(--ease-out),
        border-color .25s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.btn::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            transparent 25%,
            rgba(255, 255, 255, .12) 50%,
            transparent 75%
        );

    transform: translateX(-120%);

    transition:
        transform .65s ease;
}

.btn:hover::after {
    transform: translateX(120%);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-electric)
        );

    box-shadow:
        0 14px 40px rgba(155, 92, 255, .25);
}

.btn-primary:hover {
    box-shadow:
        0 18px 50px rgba(155, 92, 255, .38);
}

.btn-secondary {
    background: rgba(255, 255, 255, .06);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
}


/* ==========================================================
   HERO STATS
========================================================== */

.hero-stats {
    display: flex;
    gap: 28px;

    margin-top: 34px;
}

.hero-stats > * {
    transition:
        transform .25s var(--ease-out),
        color .25s ease;
}

.hero-stats > *:hover {
    transform: translateY(-3px);
}

.hero-stats b {
    display: block;

    font-size: 20px;
}

.hero-stats span {
    display: block;

    color: #778195;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}


/* ==========================================================
   SECTIONS
========================================================== */

.section {
    padding: 85px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 28px;
}

.section-head h2 {
    margin: 7px 0 0;

    font-family: var(--font-heading);

    font-size: clamp(36px, 4vw, 56px);
    line-height: .9;

    letter-spacing: -.015em;

    font-weight: 800;

    text-transform: uppercase;
}

.viewall {
    position: relative;

    color: #aeb7c7;

    font-size: 12px;
    font-weight: 800;

    transition:
        color .2s ease,
        transform .25s var(--ease-out);
}

.viewall::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -4px;

    height: 1px;

    background: var(--purple);

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform .3s var(--ease-out);
}

.viewall:hover {
    color: #fff;
    transform: translateX(3px);
}

.viewall:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* ==========================================================
   GENERIC CARDS
========================================================== */

.video-card,
.news-card,
.game-card,
.stream-card {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #11151e,
            #090b11
        );

    border: 1px solid var(--line);
    border-radius: var(--radius);

    transition:
        transform .35s var(--ease-out),
        border-color .3s ease,
        box-shadow .35s ease;
}

.video-card::before,
.news-card::before,
.game-card::before,
.stream-card::before {
    content: "";

    position: absolute;
    z-index: 3;

    inset: 0;

    pointer-events: none;

    border-radius: inherit;

    background:
        linear-gradient(
            120deg,
            transparent 25%,
            rgba(255, 255, 255, .045) 50%,
            transparent 75%
        );

    opacity: 0;

    transform: translateX(-80%);

    transition:
        opacity .3s ease,
        transform .7s ease;
}

.video-card:hover::before,
.news-card:hover::before,
.game-card:hover::before,
.stream-card:hover::before {
    opacity: 1;
    transform: translateX(80%);
}

.video-card:hover,
.news-card:hover,
.game-card:hover,
.stream-card:hover {
    transform: translateY(-7px);

    border-color: rgba(155, 92, 255, .48);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .35),
        0 0 35px rgba(155, 92, 255, .06);
}


/* ==========================================================
   THUMBNAILS
========================================================== */

.thumb {
    position: relative;

    overflow: hidden;

    aspect-ratio: 16 / 9;

    background: #151923;
}

.thumb::after {
    content: "";

    position: absolute;
    z-index: 1;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, .25)
        );

    pointer-events: none;

    opacity: .65;

    transition:
        opacity .35s ease;
}

.thumb img {
    width: 100%;
    height: 85%;

    object-fit: cover;

    transition:
        transform .6s var(--ease-out),
        filter .6s ease;
}

.video-card:hover .thumb img,
.news-card:hover .thumb img,
.game-card:hover .thumb img {
    transform: scale(1.055);

    filter:
        saturate(1.08)
        contrast(1.03);
}

.video-card:hover .thumb::after,
.news-card:hover .thumb::after,
.game-card:hover .thumb::after {
    opacity: .85;
}


/* ==========================================================
   PLAY BUTTON
========================================================== */

.play {
    position: absolute;
    z-index: 2;

    left: 17px;
    bottom: 16px;

    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(4, 5, 9, .85);

    border: 1px solid rgba(255, 255, 255, .2);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        transform .3s var(--ease-out),
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.play::before {
    content: "";

    position: absolute;
    inset: -5px;

    border: 1px solid rgba(155, 92, 255, .35);
    border-radius: inherit;

    opacity: 0;
    transform: scale(.8);

    transition:
        opacity .3s ease,
        transform .3s var(--ease-out);
}

.video-card:hover .play {
    background: rgba(155, 92, 255, .9);

    border-color: rgba(255, 255, 255, .4);

    box-shadow:
        0 8px 30px rgba(155, 92, 255, .35);

    transform: scale(1.08);
}

.video-card:hover .play::before {
    opacity: 1;
    transform: scale(1);
}


/* ==========================================================
   TAGS
========================================================== */

.tag {
    position: absolute;
    z-index: 2;

    top: 12px;
    left: 12px;

    padding: 5px 8px;

    background: rgba(4, 5, 9, .8);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .1em;
    text-transform: uppercase;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s var(--ease-out);
}

.video-card:hover .tag,
.news-card:hover .tag,
.game-card:hover .tag {
    background: rgba(155, 92, 255, .18);
    border-color: rgba(155, 92, 255, .35);

    transform: translateY(-2px);
}


/* ==========================================================
   CARD BODY
========================================================== */

.body {
    padding: 18px;
}

.meta {
    display: flex;
    justify-content: space-between;

    gap: 10px;

    color: #727d91;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}

.card-title {
    margin: 9px 0 7px;

    font-family: var(--font-heading);

    font-size: 23px;
    line-height: 1.05;

    letter-spacing: -.01em;

    font-weight: 800;

    transition:
        color .25s ease,
        transform .25s var(--ease-out);
}

.video-card:hover .card-title,
.news-card:hover .card-title,
.game-card:hover .card-title {
    color: #fff;
}

.excerpt {
    margin: 0;

    color: #8993a6;

    font-size: 13px;
}


/* ==========================================================
   VIDEO GRID
========================================================== */

.video-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ==========================================================
   FEATURED CONTENT
========================================================== */

.feature-grid {
    display: grid;

    grid-template-columns: 1.4fr .6fr;

    gap: 20px;
}

.feature-panel {
    position: relative;

    min-height: 390px;

    overflow: hidden;

    padding: 34px;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(155, 92, 255, .18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #111520,
            #080a0f
        );

    transition:
        transform .35s var(--ease-out),
        border-color .3s ease,
        box-shadow .35s ease;
}

.feature-panel:hover {
    transform: translateY(-5px);

    border-color: rgba(155, 92, 255, .32);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .3);
}

.feature-panel h3 {
    position: relative;
    z-index: 2;

    margin: 12px 0;

    font-family: var(--font-heading);

    font-size: 36px;
    line-height: 1;

    letter-spacing: -.025em;

    font-weight: 800;

    text-transform: uppercase;
}

.feature-panel.large h3 {
    max-width: 650px;

    font-size: 48px;
    line-height: .98;
}

.feature-panel p {
    position: relative;
    z-index: 2;

    max-width: 650px;

    color: #929bad;
}

.feature-art {
    position: absolute;

    right: -60px;
    bottom: -100px;

    width: 480px;
    height: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(0, 229, 255, .22),
            transparent 65%
        );

    filter: blur(10px);

    transition:
        transform 1s var(--ease-out),
        opacity .5s ease;
}

.feature-panel:hover .feature-art {
    transform: scale(1.08) translate(-15px, -10px);
}


/* ==========================================================
   GAMES
========================================================== */

.game-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.game-card .thumb {
    aspect-ratio: 4 / 5;
}

.game-card .body {
    padding: 15px;
}

.game-card .card-title {
    font-size: 22px;
}

.game-card small {
    color: #687287;
    font-weight: 800;
}


/* ==========================================================
   NEWS
========================================================== */

.news-grid {
    display: grid;

    grid-template-columns: 1.4fr .8fr .8fr;

    gap: 20px;
}

.news-card:first-child .thumb {
    aspect-ratio: 16 / 10;
}

.news-card:not(:first-child) .thumb {
    aspect-ratio: 4 / 3;
}

.news-card:first-child .card-title {
    font-size: 32px;
}


/* ==========================================================
   STREAMS
========================================================== */

.stream-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.stream-card {
    padding: 22px;
}

.stream-top {
    display: flex;
    align-items: center;

    gap: 13px;
}

.avatar {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--cyan)
        );

    font-weight: 800;

    box-shadow:
        0 0 0 0 rgba(155, 92, 255, .25);

    transition:
        transform .3s var(--ease-out),
        box-shadow .4s ease;
}

.stream-card:hover .avatar {
    transform: scale(1.08);

    box-shadow:
        0 0 0 7px rgba(155, 92, 255, .08),
        0 0 25px rgba(155, 92, 255, .2);
}

.live {
    position: relative;

    margin-left: auto;

    color: #ff5570;

    font-size: 10px;
    font-weight: 800;
}

.live::before {
    content: "";

    display: inline-block;

    width: 6px;
    height: 6px;

    margin: 0 6px 1px 0;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 0 0 rgba(255, 85, 112, .5);

    animation:
        lmLivePulse 1.8s ease-out infinite;
}

@keyframes lmLivePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 85, 112, .5);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(255, 85, 112, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 85, 112, 0);
    }
}

.stream-card h3 {
    margin: 17px 0 5px;

    font-family: var(--font-heading);

    font-size: 24px;
}

.stream-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* ==========================================================
   NEWSLETTER
========================================================== */

.newsletter {
    padding: 75px 0;
}

.newsletter-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 45px;

    overflow: hidden;

    border: 1px solid rgba(155, 92, 255, .25);
    border-radius: 22px;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(0, 229, 255, .1),
            transparent 30%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(155, 92, 255, .12),
            transparent 30%
        ),
        #0a0d14;

    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s var(--ease-out);
}

.newsletter-box:hover {
    border-color: rgba(155, 92, 255, .42);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .3),
        0 0 40px rgba(155, 92, 255, .05);

    transform: translateY(-3px);
}

.newsletter h2 {
    margin: 0 0 10px;

    font-family: var(--font-heading);

    font-size: 42px;
    line-height: 1;

    font-weight: 800;

    text-transform: uppercase;
}

.newsletter p {
    margin: 0;

    color: var(--muted);
}


/* ==========================================================
   GENERIC CONTENT
========================================================== */

.content {
    min-height: 60vh;

    padding: 140px 0 90px;
}

.content article {
    max-width: 930px;
    margin-inline: auto;
}

.content h1 {
    font-family: var(--font-heading);

    font-size: clamp(42px, 6vw, 75px);
    line-height: .98;

    letter-spacing: -.025em;

    font-weight: 800;

    text-transform: uppercase;
}

.content p,
.content li {
    color: #b0b7c5;
}

.content a {
    color: #aa8dff;

    transition: color .2s ease;
}

.content a:hover {
    color: #c9aaff;
}


/* ==========================================================
   FOOTER
========================================================== */

.footer {
    padding: 50px 0;

    color: #737d91;

    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    justify-content: space-between;

    gap: 25px;
}

.footer strong {
    color: #fff;
}

.footer-links {
    display: flex;

    gap: 20px;

    font-size: 12px;
    font-weight: 800;
}

.footer-links a {
    transition:
        color .2s ease,
        transform .2s var(--ease-out);
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}


/* ==========================================================
   NEWS ARCHIVE
========================================================== */

.news-archive,
.news-page {
    padding-top: 155px;
}

.news-page-header,
.news-archive-header {
    max-width: 850px;

    margin-bottom: 55px;
}

.news-page-header h1,
.news-archive-header h1 {
    margin: 12px 0 18px;

    font-family: var(--font-heading);

    font-size: clamp(52px, 7vw, 100px);
    line-height: .88;

    letter-spacing: -.035em;

    font-weight: 800;

    text-transform: uppercase;
}

.news-page-header p,
.archive-intro {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 16px;
}


/* ==========================================================
   FEATURED NEWS
========================================================== */

.news-featured {
    margin-bottom: 70px;
}

.news-featured-card {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 24px;

    background: #090b11;

    transition:
        border-color .35s ease,
        box-shadow .4s ease;
}

.news-featured-card:hover {
    border-color: rgba(155, 92, 255, .38);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .4);
}

.news-featured-image,
.news-featured-media {
    position: absolute;
    inset: 0;

    display: block;
}

.news-featured-image img,
.news-featured-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s var(--ease-out),
        filter .8s ease;
}

.news-featured-card:hover .news-featured-image img,
.news-featured-card:hover .news-featured-media img {
    transform: scale(1.04);

    filter:
        saturate(1.06)
        contrast(1.03);
}

.news-featured-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 4, 8, .98) 0%,
            rgba(3, 4, 8, .82) 35%,
            rgba(3, 4, 8, .25) 75%,
            rgba(3, 4, 8, .55) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 4, 8, .95),
            transparent 60%
        );
}

.news-placeholder {
    width: 100%;
    height: 100%;

    min-height: 250px;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(155, 92, 255, .42),
            transparent 30%
        ),
        radial-gradient(
            circle at 25% 75%,
            rgba(0, 229, 255, .12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #171b28,
            #07090e
        );
}

.news-featured-tag,
.news-featured-label {
    position: absolute;
    z-index: 3;

    top: 25px;
    left: 25px;

    padding: 8px 12px;

    border: 1px solid rgba(155, 92, 255, .45);
    border-radius: 7px;

    background: rgba(5, 6, 10, .75);

    color: #cdb4ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s var(--ease-out);
}

.news-featured-card:hover .news-featured-tag,
.news-featured-card:hover .news-featured-label {
    background: rgba(155, 92, 255, .16);
    border-color: rgba(155, 92, 255, .65);

    transform: translateY(-2px);
}

.news-featured-content {
    position: absolute;
    z-index: 2;

    left: 45px;
    right: 45px;
    bottom: 45px;

    max-width: 760px;

    animation:
        lmFeaturedContentIn .8s var(--ease-out) both;
}

@keyframes lmFeaturedContentIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-featured-content .meta {
    margin-bottom: 14px;
}

.news-featured-content h2 {
    margin: 0 0 18px;

    font-family: var(--font-heading);

    font-size: clamp(42px, 5vw, 72px);
    line-height: .92;

    letter-spacing: -.02em;

    font-weight: 800;

    text-transform: uppercase;
}

.news-featured-content h2 a {
    transition:
        color .25s ease,
        text-shadow .25s ease;
}

.news-featured-content h2 a:hover {
    color: #caaaff;

    text-shadow:
        0 0 30px rgba(155, 92, 255, .2);
}

.news-featured-content p {
    max-width: 650px;

    margin: 0 0 25px;

    color: #b4bccb;

    font-size: 15px;
}

.news-read-more {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding: 12px 17px;

    border: 1px solid rgba(155, 92, 255, .45);
    border-radius: 10px;

    background: rgba(155, 92, 255, .12);

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .3s var(--ease-out),
        box-shadow .3s ease;
}

.news-read-more span {
    color: var(--purple);

    font-size: 17px;

    transition:
        color .25s ease,
        transform .3s var(--ease-out);
}

.news-read-more:hover {
    background: var(--purple);
    border-color: var(--purple);

    box-shadow:
        0 10px 30px rgba(155, 92, 255, .22);

    transform: translateY(-3px);
}

.news-read-more:hover span {
    color: #fff;
    transform: translateX(4px);
}


/* ==========================================================
   NEWS GRIDS
========================================================== */

.news-archive-grid,
.news-latest-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.news-archive-grid .news-card,
.news-latest-grid .news-card {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.news-archive-grid .body,
.news-latest-grid .body {
    flex: 1;

    display: flex;
    flex-direction: column;
}

.news-archive-grid .thumb,
.news-latest-grid .thumb {
    aspect-ratio: 16 / 10;
}

.news-archive-grid .card-title {
    font-size: 27px;
}

.news-latest-grid .card-title {
    font-size: 25px;
    line-height: 1;

    text-transform: uppercase;
}

.news-latest-grid .excerpt {
    line-height: 1.55;
}

.news-card-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    width: max-content;

    margin-top: auto;
    padding-top: 20px;

    color: #aeb7c7;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    transition:
        color .2s ease,
        transform .25s var(--ease-out);
}

.news-card-link span {
    color: var(--purple);

    font-size: 16px;

    transition:
        transform .25s var(--ease-out);
}

.news-card-link:hover {
    color: #fff;
    transform: translateX(2px);
}

.news-card-link:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   NEWS LATEST HEADER
========================================================== */

.news-latest-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
}

.news-latest-header h2 {
    margin: 8px 0 0;

    font-family: var(--font-heading);

    font-size: clamp(38px, 4vw, 56px);
    line-height: .95;

    letter-spacing: -.025em;

    font-weight: 800;

    text-transform: uppercase;
}

.news-count {
    color: #6f798c;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .15em;
}


/* ==========================================================
   PAGINATION
========================================================== */

.lm-pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 55px;
}

.lm-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    flex-wrap: wrap;
}

.lm-pagination .page-numbers,
.lm-pagination a,
.lm-pagination span {
    min-width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 13px;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: #0b0e15;

    color: #8e98aa;

    font-size: 12px;
    font-weight: 800;

    transition:
        color .2s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s var(--ease-out),
        box-shadow .25s ease;
}

.lm-pagination a:hover {
    color: #fff;

    border-color: rgba(155, 92, 255, .5);

    background: rgba(155, 92, 255, .1);

    transform: translateY(-2px);
}

.lm-pagination .current {
    color: #fff;

    border-color: var(--purple);

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-electric)
        );

    box-shadow:
        0 8px 25px rgba(155, 92, 255, .2);
}


/* ==========================================================
   SINGLE NEWS
========================================================== */

.single-news,
.news-single {
    padding-top: 150px;
}

.single-news-header,
.news-article-header {
    max-width: 1050px;

    margin: 0 auto 55px;

    text-align: center;
}

.single-news-meta,
.news-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 25px;

    color: #737d91;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.single-news-category {
    color: var(--purple);
}

.single-news-header h1,
.news-article-header h1 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: clamp(48px, 7vw, 92px);
    line-height: .9;

    letter-spacing: -.035em;

    font-weight: 800;

    text-transform: uppercase;
}

.single-news-excerpt {
    max-width: 760px;

    margin: 28px auto 0;

    color: #929bad;

    font-size: 18px;
    line-height: 1.6;
}

.single-news-hero,
.news-article-image {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto 70px;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    background: #0b0e15;

    transition:
        border-color .3s ease,
        box-shadow .35s ease;
}

.single-news-hero:hover,
.news-article-image:hover {
    border-color: rgba(155, 92, 255, .28);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .3);
}

.single-news-hero img,
.news-article-image img {
    width: 100%;

    max-height: 680px;

    object-fit: cover;

    transition:
        transform .7s var(--ease-out);
}

.single-news-hero:hover img,
.news-article-image:hover img {
    transform: scale(1.015);
}


/* ==========================================================
   SINGLE NEWS LAYOUT
========================================================== */

.single-news-layout {
    display: grid;

    grid-template-columns: 90px minmax(0, 850px);

    justify-content: center;

    gap: 40px;

    margin-bottom: 100px;
}

.single-news-share {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;

    padding-top: 8px;
}

.single-news-share span {
    margin-bottom: 8px;

    color: #596274;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

    writing-mode: vertical-rl;
}

.single-news-share a {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: #0b0e15;

    color: #8e98aa;

    font-size: 12px;
    font-weight: 800;

    transition:
        color .2s ease,
        border-color .25s ease,
        background .25s ease,
        transform .25s var(--ease-out),
        box-shadow .25s ease;
}

.single-news-share a:hover {
    color: #fff;

    border-color: var(--purple);

    background: rgba(155, 92, 255, .12);

    box-shadow:
        0 8px 25px rgba(155, 92, 255, .12);

    transform: translateY(-3px);
}


/* ==========================================================
   ARTICLE BODY
========================================================== */

.single-news-body,
.news-article-body {
    color: #c0c6d2;

    font-size: 17px;
    line-height: 1.85;
}

.single-news-body p,
.news-article-body p {
    margin: 0 0 28px;
}

.single-news-body h2,
.single-news-body h3,
.single-news-body h4,
.news-article-body h2,
.news-article-body h3 {
    margin: 50px 0 20px;

    color: #fff;

    font-family: var(--font-heading);

    line-height: 1;

    font-weight: 800;

    text-transform: uppercase;
}

.single-news-body h2,
.news-article-body h2 {
    font-size: 42px;
}

.single-news-body h3,
.news-article-body h3 {
    font-size: 34px;
}

.single-news-body h4 {
    font-size: 28px;
}

.single-news-body strong {
    color: #fff;
}

.single-news-body a,
.news-article-body a {
    color: var(--purple);

    text-decoration: underline;
    text-decoration-color: rgba(155, 92, 255, .4);
    text-underline-offset: 4px;

    transition:
        color .2s ease,
        text-decoration-color .2s ease;
}

.single-news-body a:hover,
.news-article-body a:hover {
    color: #c9aaff;
    text-decoration-color: var(--purple);
}

.single-news-body ul,
.single-news-body ol,
.news-article-body ul,
.news-article-body ol {
    margin: 0 0 30px;
    padding-left: 25px;
}

.single-news-body li,
.news-article-body li {
    margin-bottom: 10px;
}

.single-news-body blockquote,
.news-article-body blockquote {
    margin: 40px 0;

    padding: 25px 30px;

    border-left: 3px solid var(--purple);

    background:
        linear-gradient(
            90deg,
            rgba(155, 92, 255, .08),
            transparent
        );

    color: #dfe3eb;

    font-family: var(--font-heading);

    font-size: 25px;
    line-height: 1.2;
}

.single-news-body img,
.news-article-body img {
    width: 100%;

    margin: 35px 0;

    border-radius: 12px;

    transition:
        transform .5s var(--ease-out);
}


/* ==========================================================
   ARTICLE FOOTER
========================================================== */

.single-news-footer {
    margin-top: 60px;
}

.single-news-footer-line {
    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            rgba(155, 92, 255, .15),
            transparent
        );
}

.single-news-footer-meta {
    display: flex;
    justify-content: space-between;

    padding-top: 18px;

    color: #596274;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;
}


/* ==========================================================
   RELATED NEWS
========================================================== */

.single-news-related {
    padding-top: 75px;

    border-top: 1px solid var(--line);
}

.single-news-related .section-head {
    margin-bottom: 30px;
}

.single-news-related .news-card {
    display: flex;
    flex-direction: column;
}

.single-news-related .news-card .body {
    flex: 1;

    display: flex;
    flex-direction: column;
}


/* ==========================================================
   ARTICLE NAVIGATION
========================================================== */

.news-article-navigation {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 80px;
    padding-top: 30px;

    border-top: 1px solid var(--line);
}

.news-nav-item {
    min-width: 0;
}

.news-nav-item.next {
    text-align: right;
}

.news-nav-label {
    display: block;

    margin-bottom: 10px;

    color: #727d91;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.news-nav-item a {
    display: flex;
    align-items: center;

    gap: 10px;

    font-family: var(--font-heading);

    font-size: 24px;
    line-height: 1.05;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        color .25s ease,
        transform .3s var(--ease-out);
}

.news-nav-item a:hover {
    color: #caaaff;
}

.news-nav-item:not(.next) a:hover {
    transform: translateX(4px);
}

.news-nav-item.next a:hover {
    transform: translateX(-4px);
}

.news-nav-item.next a {
    justify-content: flex-end;
}

.news-nav-arrow {
    flex-shrink: 0;

    color: var(--purple);

    transition:
        transform .3s var(--ease-out);
}

.news-nav-item:not(.next) a:hover .news-nav-arrow {
    transform: translateX(4px);
}

.news-nav-item.next a:hover .news-nav-arrow {
    transform: translateX(-4px);
}


/* ==========================================================
   PAGE LINKS
========================================================== */

.page-links {
    margin-top: 40px;
    padding-top: 25px;

    border-top: 1px solid var(--line);

    font-size: 12px;
    font-weight: 800;
}

.page-links a,
.page-links > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    margin-right: 6px;

    border: 1px solid var(--line);
    border-radius: 7px;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s var(--ease-out);
}

.page-links a:hover {
    color: #fff;

    background: rgba(155, 92, 255, .1);
    border-color: rgba(155, 92, 255, .45);

    transform: translateY(-2px);
}


/* ==========================================================
   EMPTY STATES
========================================================== */

.news-empty {
    margin-top: 20px;
    padding-bottom: 40px;
}


/* ==========================================================
   GAME SINGLE
========================================================== */

.game-single {
    padding-top: 150px;
    padding-bottom: 100px;
}


/* ==========================================================
   GAME ARTICLE
========================================================== */

.game-article {
    width: min(1180px, 100%);
    margin: 0 auto;
}


/* ==========================================================
   GAME HERO IMAGE
========================================================== */

.game-hero-image {
    width: 100%;
    margin-bottom: 45px;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    overflow: hidden;

    background: #0b0e15;

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .35);

    transition:
        border-color .35s ease,
        box-shadow .35s ease;
}

.game-hero-image:hover {
    border-color: rgba(155, 92, 255, .3);

    box-shadow:
        0 35px 100px rgba(0, 0, 0, .42),
        0 0 40px rgba(155, 92, 255, .05);
}

.game-hero-image img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 650px;

    object-fit: cover;

    transition:
        transform .8s var(--ease-out);
}

.game-hero-image:hover img {
    transform: scale(1.015);
}


/* ==========================================================
   GAME HEADER
========================================================== */

.game-header {
    max-width: 900px;

    margin: 0 auto 45px;
}

.game-header .eyebrow {
    margin-bottom: 18px;
}

.game-header h1 {
    margin: 0;

    font-family: var(--font-heading);

    font-size: clamp(52px, 7vw, 92px);

    line-height: .9;

    letter-spacing: -.035em;

    font-weight: 800;

    text-transform: uppercase;

    color: #fff;
}


/* ==========================================================
   GAME PROFILE META
========================================================== */

.game-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;

    margin-top: 30px;
    padding-top: 22px;

    border-top: 1px solid var(--line);
}

.game-meta-item {
    display: flex;
    flex-direction: column;

    min-width: 150px;

    padding-right: 30px;
    margin-right: 30px;

    border-right: 1px solid var(--line);
}

.game-meta-item:last-child {
    border-right: 0;
}

.game-meta-item span {
    margin-bottom: 4px;

    color: #687287;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.game-meta-item strong {
    color: #f5f7fb;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .04em;

    text-transform: uppercase;
}


/* ==========================================================
   GAME LAYOUT
========================================================== */

.game-layout {
    display: grid;

    grid-template-columns: minmax(0, 820px) 280px;

    gap: 70px;

    justify-content: center;

    align-items: start;
}


/* ==========================================================
   GAME BODY
========================================================== */

.game-body {
    max-width: 820px;

    margin: 0 auto;

    color: #bfc6d3;

    font-size: 17px;
    line-height: 1.85;
}

.game-body p {
    margin: 0 0 28px;
}

.game-body h2,
.game-body h3,
.game-body h4 {
    font-family: var(--font-heading);

    color: #fff;

    line-height: 1;

    font-weight: 800;

    text-transform: uppercase;
}

.game-body h2 {
    font-size: 42px;
    margin: 55px 0 20px;
}

.game-body h3 {
    font-size: 34px;
    margin: 45px 0 18px;
}

.game-body h4 {
    font-size: 28px;
    margin: 35px 0 15px;
}

.game-body a {
    color: var(--purple);

    text-decoration: underline;
    text-decoration-color: rgba(155, 92, 255, .4);
    text-underline-offset: 4px;

    transition:
        color .2s ease,
        text-decoration-color .2s ease;
}

.game-body a:hover {
    color: #c9aaff;
    text-decoration-color: var(--purple);
}

.game-body ul,
.game-body ol {
    margin: 0 0 30px;
    padding-left: 25px;
}

.game-body li {
    margin-bottom: 10px;
}

.game-body strong {
    color: #fff;
}

.game-body blockquote {
    margin: 40px 0;

    padding: 25px 30px;

    border-left: 3px solid var(--purple);

    background:
        linear-gradient(
            90deg,
            rgba(155, 92, 255, .1),
            transparent
        );

    color: #dde2ea;

    font-family: var(--font-heading);

    font-size: 26px;

    line-height: 1.2;
}

.game-body img {
    width: auto;
    max-width: 100%;
    height: auto;

    margin: 35px 0;

    border-radius: 14px;
}


/* ==========================================================
   GAME TRAILER
========================================================== */

.game-trailer {
    margin-top: 55px;
}

.game-trailer h2 {
    margin: 10px 0 20px;

    font-family: var(--font-heading);

    font-size: 42px;
    line-height: 1;

    color: #fff;

    text-transform: uppercase;
}

.game-trailer-player {
    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    background: #000;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .3);

    transition:
        border-color .3s ease,
        box-shadow .35s ease;
}

.game-trailer-player:hover {
    border-color: rgba(155, 92, 255, .3);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .4);
}

.game-trailer-player video {
    display: block;

    width: 100%;
    height: auto;
}


/* ==========================================================
   GAME DETAILS
========================================================== */

.game-details {
    margin-top: 60px;
    padding-top: 45px;

    border-top: 1px solid var(--line);
}

.game-details h2 {
    margin: 10px 0 25px;

    font-family: var(--font-heading);

    font-size: 42px;
    line-height: 1;

    color: #fff;

    text-transform: uppercase;
}

.game-details-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.game-detail {
    padding: 22px;

    border: 1px solid var(--line);
    border-radius: 14px;

    background: #0b0e15;

    transition:
        transform .3s var(--ease-out),
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.game-detail:hover {
    transform: translateY(-4px);

    border-color: rgba(155, 92, 255, .3);

    background: #0e121a;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .2);
}

.game-detail span {
    display: block;

    margin-bottom: 6px;

    color: #687287;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.game-detail strong {
    color: #fff;

    font-size: 14px;
    font-weight: 800;
}


/* ==========================================================
   GAME TABLES
========================================================== */

.game-body table {
    width: 100%;

    margin: 35px 0;

    border-collapse: separate;
    border-spacing: 0;

    background: #0b0e15;

    border: 1px solid var(--line);
    border-radius: 12px;

    overflow: hidden;
}

.game-body th,
.game-body td {
    padding: 13px 15px;

    border-bottom: 1px solid var(--line);

    text-align: left;
}

.game-body th {
    color: #fff;

    font-weight: 800;

    text-transform: uppercase;

    font-size: 11px;

    letter-spacing: .08em;
}

.game-body td {
    color: #aeb7c7;

    font-size: 14px;
}

.game-body tr:last-child td {
    border-bottom: 0;
}

.game-body tbody tr {
    transition:
        background .2s ease;
}

.game-body tbody tr:hover {
    background: rgba(155, 92, 255, .035);
}


/* ==========================================================
   GAME SIDEBAR
========================================================== */

.game-sidebar {
    position: sticky;
    top: 110px;
}

.game-sidebar-box {
    padding: 25px;

    border: 1px solid var(--line);

    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(155, 92, 255, .16),
            transparent 42%
        ),
        #0b0e15;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .25);

    transition:
        border-color .3s ease,
        box-shadow .35s ease,
        transform .35s var(--ease-out);
}

.game-sidebar-box:hover {
    border-color: rgba(155, 92, 255, .3);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .32);

    transform: translateY(-3px);
}

.game-sidebar-label {
    color: var(--purple);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.game-sidebar-box h2 {
    margin: 12px 0 20px;

    color: #fff;

    font-family: var(--font-heading);

    font-size: 30px;

    line-height: .95;

    font-weight: 800;

    text-transform: uppercase;
}

.game-sidebar-line {
    width: 100%;
    height: 1px;

    margin-bottom: 18px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            rgba(155, 92, 255, .15),
            transparent
        );
}

.game-sidebar-row {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.game-sidebar-row:last-child {
    border-bottom: 0;
}

.game-sidebar-row span {
    color: #687287;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.game-sidebar-row strong {
    color: #dde2ea;

    font-size: 11px;
    font-weight: 800;

    text-align: right;
}


/* ==========================================================
   GAME EXTRA PROFILE
========================================================== */

.game-extra-profile {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin: 55px 0 20px;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    background: #0b0e15;

    overflow: hidden;
}

.game-extra-item {
    padding: 22px;

    border-right: 1px solid var(--line);

    transition:
        background .25s ease;
}

.game-extra-item:hover {
    background: rgba(155, 92, 255, .035);
}

.game-extra-item:last-child {
    border-right: 0;
}

.game-extra-item span {
    display: block;

    margin-bottom: 6px;

    color: #687287;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.game-extra-item strong {
    color: #fff;

    font-size: 14px;
    font-weight: 800;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .lm-nav {
        min-height: 75px;
    }

    .lm-menu {
        display: none;
    }

    .lm-toggle {
        display: block;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-card:first-child {
        grid-column: 1 / -1;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-featured-card {
        min-height: 560px;
    }

    .news-featured-content {
        left: 32px;
        right: 32px;
        bottom: 35px;
    }

    .news-latest-grid,
    .news-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-news-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .single-news-share {
        flex-direction: row;
        justify-content: flex-start;

        margin-bottom: 30px;
    }

    .single-news-share span {
        writing-mode: initial;
        margin: 0 8px 0 0;
    }

    .single-news-share span::after {
        content: ":";
    }

    .news-article-layout {
        grid-template-columns: 1fr;
    }

    .news-article-sidebar {
        position: static;
    }

    .game-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .game-sidebar {
        position: static;
    }

    .game-sidebar-box {
        max-width: 820px;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

    .container {
        width: calc(100% - 28px);
    }

    .lm-hero {
        min-height: 720px;
    }

    .lm-hero h1 {
        font-size: 55px;
    }

    .lm-hero-content {
        padding-top: 85px;
    }

    .video-grid,
    .stream-grid,
    .news-grid,
    .news-latest-grid,
    .news-archive-grid {
        grid-template-columns: 1fr;
    }

    .news-card:first-child {
        grid-column: auto;
    }

    .game-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 65px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .newsletter-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 32px 25px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .news-archive,
    .news-page,
    .single-news,
    .news-single {
        padding-top: 120px;
    }

    .news-page-header,
    .news-archive-header {
        margin-bottom: 40px;
    }

    .news-page-header h1,
    .news-archive-header h1 {
        font-size: 55px;
    }

    .news-featured {
        margin-bottom: 60px;
    }

    .news-featured-card {
        min-height: 620px;
    }

    .news-featured-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(3, 4, 8, .98),
                rgba(3, 4, 8, .35) 75%,
                rgba(3, 4, 8, .55)
            );
    }

    .news-featured-content {
        left: 22px;
        right: 22px;
        bottom: 25px;
    }

    .news-featured-content h2 {
        font-size: 42px;
    }

    .news-featured-content p {
        font-size: 14px;
    }

    .news-featured-tag,
    .news-featured-label {
        top: 18px;
        left: 18px;
    }

    .news-latest-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-count {
        display: none;
    }

    .single-news-header,
    .news-article-header {
        margin-bottom: 35px;
    }

    .single-news-header h1,
    .news-article-header h1 {
        font-size: 48px;
    }

    .single-news-excerpt {
        font-size: 15px;
    }

    .single-news-hero,
    .news-article-image {
        margin-bottom: 45px;
        border-radius: 12px;
    }

    .single-news-body,
    .news-article-body {
        font-size: 16px;
    }

    .single-news-body h2,
    .news-article-body h2 {
        font-size: 36px;
    }

    .single-news-body h3,
    .news-article-body h3 {
        font-size: 30px;
    }

    .single-news-related {
        padding-top: 55px;
    }

    .news-article-navigation {
        grid-template-columns: 1fr;

        margin-top: 55px;
    }

    .news-nav-item.next {
        text-align: left;
    }

    .news-nav-item.next a {
        justify-content: flex-start;
    }

    .news-nav-item.next a:hover {
        transform: translateX(4px);
    }


    /* ------------------------------------------------------
       GAME
    ------------------------------------------------------ */

    .game-single {
        padding-top: 115px;
        padding-bottom: 65px;
    }

    .game-hero-image {
        margin-bottom: 28px;
        border-radius: 13px;
    }

    .game-hero-image img {
        max-height: 450px;
    }

    .game-header {
        margin-bottom: 30px;
    }

    .game-header h1 {
        font-size: 48px;
    }

    .game-body {
        max-width: none;

        font-size: 16px;
        line-height: 1.75;
    }

    .game-body h2 {
        font-size: 36px;
        margin-top: 42px;
    }

    .game-body h3 {
        font-size: 30px;
        margin-top: 38px;
    }

    .game-body h4 {
        font-size: 25px;
    }

    .game-body blockquote {
        margin: 30px 0;
        padding: 20px;

        font-size: 22px;
    }

    .game-body table {
        display: block;
        overflow-x: auto;
    }

    .game-meta {
        gap: 18px 0;
    }

    .game-meta-item {
        min-width: 50%;

        padding-right: 15px;
        margin-right: 15px;
    }

    .game-meta-item:nth-child(2) {
        border-right: 0;
    }

    .game-meta-item:nth-child(3) {
        width: 100%;

        border-right: 0;

        margin-right: 0;
        padding-right: 0;
    }

    .game-layout {
        gap: 35px;
    }

    .game-sidebar-box {
        padding: 22px;
    }

    .game-details-grid {
        grid-template-columns: 1fr;
    }

    .game-extra-profile {
        grid-template-columns: 1fr;
    }

    .game-extra-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .game-extra-item:last-child {
        border-bottom: 0;
    }
}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 460px) {

    .lm-logo {
        font-size: 20px;
    }

    .lm-hero h1 {
        font-size: 46px;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .news-page-header h1,
    .news-archive-header h1 {
        font-size: 48px;
    }

    .news-featured-card {
        min-height: 580px;
    }

    .news-featured-content {
        left: 18px;
        right: 18px;
    }

    .news-featured-content h2 {
        font-size: 36px;
    }

    .single-news-header h1,
    .news-article-header h1 {
        font-size: 40px;
    }

    .single-news-meta,
    .news-article-meta {
        gap: 6px;
        font-size: 8px;
    }

    .single-news-body blockquote,
    .news-article-body blockquote {
        padding: 20px;
        font-size: 21px;
    }

    .single-news-footer-meta {
        flex-direction: column;
        gap: 8px;
    }

    .game-single {
        padding-top: 105px;
    }

    .game-header h1 {
        font-size: 40px;
    }

    .game-body {
        font-size: 15px;
    }

    .game-body h2 {
        font-size: 32px;
    }

    .game-body h3 {
        font-size: 27px;
    }

    .newsletter h2 {
        font-size: 34px;
    }
}


/* ==========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .lm-hero-media {
        transform: scale(1.04);
    }
}