html {
    height: 100%;
}

:root {
    --surface-black: #000000;
    --surface-black-rgb: 0 0 0;
    --scrollbar-thumb: rgba(255, 255, 255, 0.34);
    --scrollbar-thumb-hover: rgba(255, 255, 255, 0.52);
    --scrollbar-track: transparent;
}

* {
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

*::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

@font-face {
    font-family: 'JioType';
    src: url('../fonts/JioType.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JioType';
    src: url('../fonts/JioType-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JioType';
    src: url('../fonts/JioType-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JioType';
    src: url('../fonts/JioType-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JioType';
    src: url('../fonts/JioType-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JioType';
    src: url('../fonts/JioType-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'JioType';
    src: url('../fonts/JioType-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

body {
    margin: 0;
    font-family: 'JioType', sans-serif;
    background: var(--surface-black);
    color: #f7f9fc;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

p {
    font-size: clamp(0.9rem, 1.9vw, 1.1rem);
}

.site-main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 4%;
}

.hero-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100vh;
    padding-top: 0;
    color: #ffffff;
    overflow: hidden;
    isolation: isolate;
}

.hero-banner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    height: 160px;
    background: linear-gradient(0deg, rgb(var(--surface-black-rgb) / 0.95) 0%, rgb(var(--surface-black-rgb) / 0.6) 55%, rgb(var(--surface-black-rgb) / 0) 100%);
    pointer-events: none;
    z-index: -1;
}

.hero-banner--details {
    background: var(--surface-black);
}

.hero-banner--details::after {
    bottom: 0;
    height: clamp(220px, 28vh, 320px);
    background: linear-gradient(180deg, rgb(var(--surface-black-rgb) / 0) 0%, rgb(var(--surface-black-rgb) / 0.55) 45%, var(--surface-black) 100%);
}

.hero-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    touch-action: pan-y;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    height: 72px;
    padding: 0 4%;
    background: transparent;
    isolation: isolate;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header > .container {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
}

.site-header::after {
    content: '';
    position: absolute;
    inset: 0 0 -60px 0;
    background: linear-gradient(180deg, rgba(7, 9, 15, 0.95) 0%, rgba(7, 9, 15, 0.6) 45%, rgba(7, 9, 15, 0) 100%);
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.site-header.is-scrolled {
    background: var(--surface-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled::after {
    opacity: 0;
}


.header-simple {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 72px;
    min-height: 72px;
    padding: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.brand-logo {
    width: 150px;
    height: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.02em;
    font-size: 0.98rem;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    padding: 0.4rem 0;
    border-radius: 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    color: #ffffff;
    background-color: transparent;
    border-bottom-color: #ffffff;
    border-radius: 0;
    padding: 0.4rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 0;
    border-radius: 9999px;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.heading {
    margin: 0;
    color: #ffffff;
    line-height: 1.15;
}

.heading--display {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.heading--hero {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
}

.heading--section {
    font-size: 1.5rem;
    font-weight: 900;
}

.heading--section-lg {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
}

.heading--section-md {
    font-size: clamp(1.35rem, 2.8vw, 1.8rem);
    font-weight: 700;
}

.heading--subsection {
    font-size: 1.2rem;
    font-weight: 700;
}

.heading--card {
    font-size: clamp(1rem, 2.6vw, 1.3rem);
    font-weight: 700;
}

.btn--outline,
.cta-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid rgba(236, 193, 120, 0.85);
    color: #f4cf8a;
    text-decoration: none;
    background: rgba(20, 15, 10, 0.25);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    margin-left: 0;
}

.btn--outline:hover,
.btn--outline:focus-visible,
.cta-outline:hover,
.cta-outline:focus-visible {
    background: rgba(236, 193, 120, 0.15);
    color: #fff3d6;
    transform: translateY(-1px);
}

.cta-outline--icon,
.header-search__toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(6, 55, 31, 1);
    color: #ffffff;
    flex: 0 0 44px;
    box-sizing: border-box;
    transform: none;
}

.cta-outline--icon:hover,
.cta-outline--icon:focus-visible,
.header-search__toggle:hover,
.header-search__toggle:focus-visible {
    background: rgba(9, 73, 42, 1);
    color: #ffffff;
    transform: none;
}

.cta-outline__icon,
.header-search__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    color: rgba(20, 184, 102, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-outline__icon svg,
.header-search__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.header-search {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-width: 44px;
}

.header-actions {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.header-search__toggle {
    order: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

.header-search__panel {
    order: 1;
    position: relative;
    width: 0;
    max-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: visible;
    transform: none;
    transition: width 0.25s ease, max-width 0.25s ease, opacity 0.2s ease, visibility 0.2s ease;
    z-index: 40;
}

.header-search.is-open .header-search__panel {
    width: clamp(180px, 24vw, 260px);
    max-width: clamp(180px, 24vw, 260px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-search__input {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(236, 193, 120, 0.5);
    background: rgba(8, 10, 14, 0.95);
    color: #ffffff;
    padding: 0 1rem;
    font-size: 0.92rem;
    outline: none;
}

.header-search__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.header-search__suggestions {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(2, 6, 14, 0.98);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    max-height: 260px;
    overflow-y: auto;
    z-index: 42;
}

.header-search__suggestions[hidden] {
    display: none;
}

.header-search__suggestion-link {
    display: block;
    padding: 0.52rem 0.62rem;
    border-radius: 9px;
    text-decoration: none;
    color: rgba(241, 245, 249, 0.95);
    font-size: 0.9rem;
}

.header-search__suggestion-link:hover,
.header-search__suggestion-link:focus-visible {
    background: rgba(236, 193, 120, 0.14);
    color: #ffffff;
}

.header-search__empty {
    padding: 0.52rem 0.62rem;
    color: rgba(241, 245, 249, 0.68);
    font-size: 0.84rem;
}

@media (max-width: 1199.98px) {
    .header-search.is-open .header-search__panel {
        width: clamp(160px, 22vw, 220px);
        max-width: clamp(160px, 22vw, 220px);
    }
}

.header-user-menu {
    margin-left: auto;
    position: relative;
}

.header-user-menu__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.35rem 0.6rem 0.35rem 0.35rem;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: #f4cf8a;
    cursor: pointer;
}

.header-user-menu__plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 190, 83, 0.75);
    background: rgba(13, 9, 4, 0.85);
    color: #fbd187;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.header-user-menu__avatar-wrap {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 32px;
}

.header-user-menu__avatar-fallback {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #235f43 0%, #13a85f 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
}

.header-user-menu__avatar {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-user-menu__avatar[hidden] {
    display: none;
}

.header-user-menu__name {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-user-menu__arrow {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid rgba(255, 255, 255, 0.88);
    border-bottom: 2px solid rgba(255, 255, 255, 0.88);
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.header-user-menu__trigger[aria-expanded='true'] .header-user-menu__arrow {
    transform: rotate(-135deg) translateY(-1px);
}

.header-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 150px;
    border-radius: 12px;
    border: 1px solid rgba(236, 193, 120, 0.38);
    background: rgba(10, 12, 16, 0.96);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
    padding: 0.4rem;
    z-index: 35;
}

.header-user-menu__logout {
    display: block;
    width: 100%;
    border-radius: 9px;
    padding: 0.55rem 0.65rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.header-user-menu__logout:hover,
.header-user-menu__logout:focus-visible {
    background: rgba(236, 193, 120, 0.14);
    color: #ffffff;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 0;
    background: rgba(15, 23, 42, 0.55);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    transform: translateY(-1px);
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
    content: '';
}

.nav-toggle__icon {
    position: relative;
}

.nav-toggle__icon::before {
    position: absolute;
    top: -6px;
    left: 0;
}

.nav-toggle__icon::after {
    position: absolute;
    bottom: -6px;
    left: 0;
}

.site-header.is-nav-open .nav-toggle__icon {
    background: transparent;
}

.site-header.is-nav-open .nav-toggle__icon::before {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.editor-picks {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 3vw, 2.4rem);
    width: 100%;
    max-width: none;
}

.editor-picks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.editor-picks-header h3,
.editor-picks-header .heading {
    margin: 0;
}

.editor-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
}

.editor-picks-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.editor-picks-figure {
    position: relative;
    margin: 0;
    width: min(220px, 100%);
    aspect-ratio: 3 / 4;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.editor-picks-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.editor-picks-date-badge {
    position: absolute;
    left: 0.65rem;
    top: 0.65rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.editor-picks-card:hover .editor-picks-figure {
    transform: none;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.editor-picks-card:hover {
    transform: none;
}

.editor-picks-footer {
    display: flex;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .editor-picks-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        justify-items: center;
    }
}

.grid-section {
    padding: 4rem 0;
}

.grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: linear-gradient(160deg, rgba(52, 60, 97, 0.65), rgba(26, 29, 51, 0.65));
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.support-banner {
    background: #11c46a;
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    color: #141414;
}

.support-banner .container {
    display: flex;
    justify-content: center;
}

.support-banner__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.2rem, 3vw, 1.8rem);
}

.support-banner__content h2,
.support-banner__content .heading {
    margin: 0;
    color: #141414;
}

.support-banner__content p {
    margin: 0;
    font-size: clamp(1.1rem, 2.4vw, 1.3rem);
    color: rgba(4, 45, 24, 0.85);
}

.support-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1rem, 3vw, 1.5rem);
}

.support-banner__button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 2.4rem;
    border-radius: 999px;
    border: 1px solid #003b1d;
    text-decoration: none;
    color: #042d18;
    font-weight: 600;
    font-size: 1.2rem;
    background: transparent;
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.support-banner__button span {
    font-size: 1.3rem;
    line-height: 1;
}

.support-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.support-banner__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.support-banner__button:hover,
.support-banner__button:focus-visible {
    background: #5acd94;
    transform: none;
    border-color: rgba(4, 45, 24, 0.85);
}

@media (max-width: 599.98px) {
    .support-banner__button {
        width: 100%;
        justify-content: center;
    }
}

.discover-titles {
    padding: 2rem 0 2rem 0;
}

.discover-titles__header {
    text-align: center;
    margin-bottom: 3rem;
}

.discover-titles__header h2,
.discover-titles__header .heading {
    margin: 0;
}

.discover-titles__sections {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 3vw, 2rem);
}

.genre-section {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.4vw, 1.6rem);
}

.genre-section__heading {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(248, 250, 255, 0.9);
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(0.75rem, 2.4vw, 1.2rem);
}

.steam-page {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(36, 90, 81, 0.5) 118.62%);
    padding-top: clamp(64px, 7.5vw, 92px);
}

.steam-hero {
    position: relative;
    background: transparent;
    padding: clamp(2rem, 5vw, 3.4rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    isolation: isolate;
    height: 60vh;
}

.steam-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--steam-hero-bg-image);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -2;
}

.steam-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(var(--surface-black-rgb) / 0) 0%, rgb(var(--surface-black-rgb) / 0.4) 45%, var(--surface-black) 95%);
    z-index: -1;
}

.steam-hero__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    min-height: 100%;
    align-content: center;
    align-items: center;
}

.steam-hero__content h1,
.steam-hero__content .heading {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 4.3vw, 3.3rem);
    font-weight: 900;
    line-height: 1.02;
}

.steam-hero__content h1 span {
    color: #14b866;
}

.steam-hero__content p {
    margin: 1rem 0 1.4rem;
    color: rgba(241, 245, 249, 0.8);
    font-size: clamp(0.96rem, 2vw, 1.08rem);
    max-width: 440px;
}


.steam-section {
    background: transparent;
    padding: clamp(1.8rem, 4vw, 2.6rem) 0;
}

.steam-section--tiles {
    padding-top: clamp(1rem, 2vw, 1.4rem);
    padding-bottom: clamp(3rem, 6vw, 4rem);
}

.steam-section__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
    text-align: center;
}

.steam-section__header h2,
.steam-section__header .heading {
    margin: 0;
}

.steam-section__badge {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.steam-section__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.steam-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}

.steam-grid__card {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform-origin: center;
}

.steam-grid__card:hover,
.steam-grid__card:focus-visible {
    transform: scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.steam-grid__card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    display: block;
    object-fit: cover;
}

.steam-tiles {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
}

.steam-tiles__item {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(8, 11, 17, 0.82);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.7rem;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.35;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform-origin: center;
}

.steam-tiles__item:hover,
.steam-tiles__item:focus-visible {
    transform: scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.steam-tiles__item span {
    display: block;
    width: 100%;
    text-align: center;
}


.top-ten-gallery-card {
    position: relative;
    display: block;
    isolation: isolate;
    z-index: 1;
}

.top-ten-gallery-card .gallery-card {
    margin: 0;
    position: relative;
    z-index: 2;
}

.top-ten-gallery-card__badge {
    position: absolute;
    bottom: 0;
    left: -7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    transform: translateY(12%);
}

.top-ten-gallery-card__badge img {
    width: 90%;
    object-fit: contain;
    display: block;
}

#top-games-gallery > .top-ten-gallery-card:first-child .top-ten-gallery-card__badge {
    left: -7rem;
}


.top-ten-gallery-card--id-10 {
    margin-left: 40px;
}

.top-ten-gallery-card__badge--id-10 {
    left: -11rem;
}

.top-ten-gallery-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.08);
}

.genre-grid__link {
    display: block;
    text-decoration: none;
}

.genre-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0.9rem;
    border-radius: 22px;
    border: 1px solid #ffffffc7;
    background: rgba(17, 17, 19, 0.65);
    color: #f8fafc;
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
    overflow: hidden;
    height: 100px;
}

.genre-grid__link:hover .genre-card,
.genre-grid__link:focus-visible .genre-card {
    transform: scale(1.05);
}

.genre-card__label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: rgba(248, 250, 255, 0.92);
}

.genre-card__image {
    width: clamp(70px, 18vw, 96px);
    max-width: 60px;
    height: auto;
    flex-shrink: 0;
    padding-right: 10px;
}

@media (max-width: 991.98px) {
    .genre-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .genre-card {
        padding: 1.2rem 1.15rem;
    }
}

.catalog-hero {
    padding: 0;
    margin-top: clamp(6rem, 12vw, 7rem);
}

.catalog-hero__container {
    display: flex;
    justify-content: center;
}

.catalog-hero__content {
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.catalog-hero__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.9);
    font-weight: 600;
}

.catalog-hero__content h1,
.catalog-hero__content .heading {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
}

.catalog-hero__content p {
    margin: 0;
    font-size: clamp(1.05rem, 2.1vw, 1.2rem);
    line-height: 1.75;
    color: rgba(226, 232, 240, 0.9);
}

.catalog-hero__filter {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.82);
}

.catalog-hero__reset {
    color: #24ff9f;
    font-weight: 600;
    text-decoration: none;
}

.catalog-hero__reset:hover,
.catalog-hero__reset:focus-visible {
    text-decoration: underline;
}

.catalog-strip {
    background: var(--surface-black);
    padding: 1rem 0;
}


.catalog-strip__title {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.catalog-strip__title h2,
.catalog-strip__title .heading {
    margin: 0;
    text-align: center;
}

.catalog-strip > .container {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
}

.catalog-strip__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}


.catalog-strip__header--center {
    justify-content: center;
}

.catalog-strip__header h2,
.catalog-strip__header .heading {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.catalog-strip__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.catalog-strip__actions .catalog-strip__cta {
    white-space: nowrap;
}

.btn--soft,
.catalog-strip__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.catalog-strip__actions--hidden {
    display: none;
}

.catalog-strip__header + .catalog-strip__rail {
    margin-top: 0.75rem;
}

@media (max-width: 767.98px) {
    .catalog-strip__header {
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.6rem;
    }

    .catalog-strip__header h2,
    .catalog-strip__header .heading {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 1.05rem;
        margin: 0;
    }

    .catalog-strip__actions {
        width: auto;
        margin-left: auto;
        flex-shrink: 0;
    }

    .btn--soft,
    .catalog-strip__cta {
        padding: 0.45rem 1.1rem;
        font-size: 0.8rem;
    }
}

.btn--soft:hover,
.btn--soft:focus-visible,
.catalog-strip__cta:hover,
.catalog-strip__cta:focus-visible {
    transform: none;
    background: transparent;
}

/* allow carousels to scroll freely rather than snapping */
.catalog-strip__rail {
    display: flex;
    gap: clamp(1rem, 2.4vw, 1.8rem);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 0 0.75rem;
    scroll-snap-type: none;
    scrollbar-width: none;
}

.catalog-strip__rail::-webkit-scrollbar {
    height: 0;
}

.catalog-strip__rail::-webkit-scrollbar-thumb {
    background: transparent;
}

.catalog-card {
    flex: 0 0 clamp(160px, 18vw, 210px);
    display: flex;
    flex-direction: column;
    gap: 0;
    text-decoration: none;
    color: #ffffff;
}

.catalog-card,
.top-ten-gallery-card {
    transition: transform 0.2s ease;
}

.gallery-card-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    cursor: pointer;
    color: inherit;
    text-align: inherit;
}

.gallery-card-button:focus-visible {
    outline: 2px solid rgba(94, 234, 212, 0.6);
    outline-offset: 6px;
    border-radius: 26px;
}

.catalog-strip__rail--screenshots {
    --screenshot-gap: 1rem;
    gap: var(--screenshot-gap);
}

.catalog-strip__rail--screenshots .gallery-card-button {
    flex: 0 0 calc((100% - (var(--screenshot-gap) * 3)) / 4);
}

.game-details-screenshots-mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .game-details-screenshots-mobile {
        display: block;
    }

    .catalog-strip__rail--screenshots {
        --screenshot-gap: clamp(0.75rem, 4vw, 1.4rem);
    }

    .catalog-strip__rail--screenshots .gallery-card-button {
        flex: 0 0 calc((100% - var(--screenshot-gap)) / 2);
    }
}

@media (max-width: 479.98px) {
    .catalog-strip__rail--screenshots .gallery-card-button {
        flex: 0 0 calc((100% - var(--screenshot-gap)) / 2);
    }
}

.catalog-card:hover,
.catalog-card:focus-visible,
.top-ten-gallery-card:hover,
.top-ten-gallery-card:focus-visible {
    transform: scale(1.03);
    z-index: 2;
}

.catalog-card figure {
    margin: 0;
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    border: 1px solid transparent;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease;
}

.catalog-card:hover figure,
.catalog-card:focus-visible figure {
    border-color: transparent;
}

.catalog-card__badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.26rem 0.55rem;
    border-radius: 999px;
    background: rgba(20, 184, 102, 0.92);
    color: #06371f;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.catalog-card figcaption {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.88);
}

.catalog-card:hover figcaption,
.catalog-card:focus-visible figcaption {
    color: #ffffff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.6rem;
}

.catalog-strip--grid .catalog-card {
    flex: initial;
    display: block;
    width: 100%;
}

.catalog-strip--grid .catalog-card[hidden],
.catalog-strip--grid [data-genre-card][hidden] {
    display: none !important;
}

.catalog-strip--grid .catalog-grid {
    gap: 0.8rem;
}

.genre-highlight + .catalog-strip--grid {
    margin-bottom: 30px;
}

.genre-load-more__actions {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.4rem, 3vw, 2rem);
}

.genre-load-more__button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    background: rgba(20, 184, 102, 0.18);
    color: #eafff5;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.genre-load-more__button:hover,
.genre-load-more__button:focus-visible {
    background: rgba(20, 184, 102, 0.3);
    border-color: rgba(20, 184, 102, 0.9);
}

@media (max-width: 1023.98px) {
    .catalog-strip--grid .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .catalog-strip--grid .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.search-games__header {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.search-games--page {
    margin-top: calc(env(safe-area-inset-top) + 5.5rem);
}

.search-games__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}

.search-games__page-title {
    text-align: center;
    margin: 0;
}

.search-games__sticky-tools {
    position: sticky;
    top: calc(env(safe-area-inset-top) + 72px);
    z-index: 18;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: clamp(1rem, 2.4vw, 1.5rem);
    padding: .75rem 0 2.5rem;
    background: linear-gradient(180deg, var(--surface-black) 0%, var(--surface-black) 68%, rgba(0, 0, 0, 0.86) 78%, rgba(0, 0, 0, 0.48) 90%, rgba(0, 0, 0, 0) 100%);
}

.search-games__sticky-tools::before {
    content: '';
    position: absolute;
    inset: 0 calc(50% - 50vw);
    z-index: -1;
    background: linear-gradient(180deg, var(--surface-black) 0%, var(--surface-black) 68%, rgba(0, 0, 0, 0.86) 78%, rgba(0, 0, 0, 0.48) 90%, rgba(0, 0, 0, 0) 100%);
}

.search-games__searchbar {
    display: flex;
    justify-content: center;
    margin: 0;
    width: 100%;
    max-width: 640px;
}

.search-games__search-input {
    width: 100%;
    max-width: 560px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(10, 12, 16, 0.86);
    color: #ffffff;
    font-size: 0.95rem;
    padding: 0 1rem;
    outline: none;
}

.search-games__search-input--sidebar {
    max-width: none;
}

.search-games__search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-games__search-input:focus {
    border-color: rgba(20, 184, 102, 0.85);
}

.search-games__results-title {
    margin: 0 0 1rem;
}

.search-games__results-title[hidden] {
    display: none;
}

.search-games.is-search-results-mode .search-games__results-title {
    display: block;
}

.search-games__layout {
    display: block;
}

.search-games__floating-filter {
    position: fixed;
    right: max(1.25rem, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 1.25rem);
    z-index: 82;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.75rem 1.15rem;
    border: 1px solid rgba(90, 205, 148, 0.75);
    border-radius: 999px;
    background: #14b866;
    color: #052716;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(20, 184, 102, 0.58), 0 16px 38px rgba(20, 184, 102, 0.34);
    animation: filterButtonGlow 1.9s ease-in-out infinite;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.search-games__floating-filter:hover,
.search-games__floating-filter:focus-visible {
    transform: translateY(-2px);
    outline: none;
    box-shadow: 0 0 0 6px rgba(20, 184, 102, 0.18), 0 20px 44px rgba(20, 184, 102, 0.42);
}

.search-games.is-filter-drawer-open .search-games__floating-filter {
    opacity: 0;
    pointer-events: none;
    transform: translateY(0) scale(0.94);
    animation: none;
}

.search-games__floating-filter-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    background:
        linear-gradient(currentColor, currentColor) 0 20% / 100% 2px no-repeat,
        linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
        linear-gradient(currentColor, currentColor) 0 80% / 100% 2px no-repeat;
    position: relative;
}

.search-games__floating-filter-icon::before,
.search-games__floating-filter-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    left: 25%;
    top: calc(20% - 1px);
    box-shadow: 0 4.8px 0 currentColor, 6px 9.6px 0 currentColor;
}

.search-games__filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 78;
    display: block;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(5px);
}

.search-games__filter-backdrop[hidden] {
    display: none !important;
}

.search-games__sidebar {
    position: fixed;
    left: auto;
    right: max(1.25rem, env(safe-area-inset-right));
    bottom: calc(env(safe-area-inset-bottom) + 1.25rem);
    top: auto;
    z-index: 80;
    width: min(40vw, 560px);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(8, 10, 14, 0.86);
    max-height: min(76vh, 560px);
    overflow-y: auto;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68);
    transform: translateY(calc(100% + 2rem));
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.search-games__sidebar.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.search-games__sidebar-toggle {
    display: flex;
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    padding: 0;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
}

.search-games__sidebar-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.15rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.86);
}

.search-games__sidebar-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-games__sidebar-title {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.96);
}

.search-games__sidebar-toggle-label {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.96);
    font-weight: 700;
}

.search-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-filter-group__title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.74);
}

.search-filter-group__toggle {
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    cursor: pointer;
}

.search-filter-group__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.1rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.86);
}

.search-filter-group__options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding-bottom: 10px;
}

.search-filter-group__options[hidden] {
    display: none !important;
}

.search-filter-group.is-collapsed .search-filter-group__options {
    display: none;
}

.search-filter-group__options--search {
    padding-top: 0.2rem;
}

.search-filter-option {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    font-size: 0.88rem;
    line-height: 1.1;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.search-filter-option:hover,
.search-filter-option:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

.search-filter-option.is-active {
    background: rgba(20, 184, 102, 0.22);
    border-color: rgba(20, 184, 102, 0.72);
    color: #d8ffec;
    font-weight: 700;
}

.search-games__content {
    min-width: 0;
}

.search-games__summary {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.78);
    text-align: center;
}

.search-games__active-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 0.45rem;
}

.search-games__active-filters[hidden] {
    display: none !important;
}

.search-games__filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: none;
    border-radius: 999px;
    background: rgba(60, 46, 22, 1);
    color: rgba(254, 242, 221, 1);
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.search-games__filter-chip-close {
    font-size: 0.95rem;
    line-height: 1;
    color: rgba(254, 242, 221, 1);
}

.search-games__filter-clear-all {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0.15rem 0.25rem;
}

.search-games__grid-wrap {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    padding: 0.7rem;
    margin: -0.7rem;
}

.search-games__loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(3px);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.search-games__loading[hidden] {
    display: none;
}

.search-games__loading-spinner {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #2de99a;
    animation: searchSpinner 0.85s linear infinite;
}

@keyframes searchSpinner {
    to {
        transform: rotate(360deg);
    }
}

.search-games__loading p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
}

.search-games__empty {
    margin-top: 1rem;
    text-align: center;
    color: rgba(226, 232, 240, 0.8);
}

.search-games__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.4rem;
}

.search-games__load-more {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.68rem 1.4rem;
    background: rgba(20, 184, 102, 0.18);
    color: #eafff5;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.search-games__load-more:hover,
.search-games__load-more:focus-visible {
    transform: none;
    background: rgba(20, 184, 102, 0.3);
    border-color: rgba(20, 184, 102, 0.9);
}

@media (max-width: 1023.98px) {
}

@media (max-width: 767.98px) {
    .search-games--page {
        margin-top: calc(env(safe-area-inset-top) + 4.75rem);
    }

    .search-games__floating-filter {
        right: max(1rem, env(safe-area-inset-right));
        bottom: calc(env(safe-area-inset-bottom) + 1rem);
    }

    .search-games__layout {
        display: block;
    }

    .search-games__sidebar {
        left: max(0.85rem, env(safe-area-inset-left));
        right: max(0.85rem, env(safe-area-inset-right));
        bottom: calc(env(safe-area-inset-bottom) + 0.85rem);
        width: auto;
        padding: 1rem;
    }

    .search-games__sidebar-toggle {
    }

    .search-games__sidebar-title {
        display: none;
    }

    .search-games__sidebar-body {
        gap: 0.9rem;
    }

    .search-games__sidebar.is-collapsed .search-games__sidebar-body {
        display: none;
    }

    .search-games__sidebar.is-open .search-games__sidebar-body {
        display: flex;
    }

    .search-games__header {
        align-items: center;
    }

    .search-games__summary {
        font-size: 0.8rem;
    }

    .search-filter-group__options {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .search-filter-group__options--search {
        flex-direction: column;
    }

    .search-filter-option {
        flex: 0 0 auto;
    }
}

@keyframes filterButtonGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(20, 184, 102, 0.46), 0 16px 38px rgba(20, 184, 102, 0.34);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(20, 184, 102, 0.08), 0 18px 46px rgba(90, 205, 148, 0.48);
    }
}

body.search-filter-drawer-open {
    overflow: hidden;
}

.genre-highlight {
    background: var(--surface-black);
    padding: clamp(1.8rem, 4vw, 2.8rem) 0;
    margin-top: clamp(6rem, 12vw, 7rem);
}

.genre-highlight__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: clamp(1.8rem, 3.5vw, 2.6rem);
    border-radius: 28px;
    background: #2b2b2b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.genre-highlight__art {
    margin: 0;
    flex: 0 0 clamp(140px, 20vw, 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.genre-highlight__art img {
    width: 100%;
    height: auto;
    display: block;
}

.genre-highlight__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #f8fafc;
}

.genre-highlight__content h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
}

.genre-highlight__content p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.9);
}

@media (max-width: 767.98px) {
    .genre-highlight__inner {
        flex-direction: column;
        text-align: center;
    }

    .genre-highlight__art {
        flex: 0 0 auto;
        max-width: 200px;
    }
}

.catalog-strip--details {
    background: var(--surface-black);
    padding: 10px 0 10px 10px;
}

.catalog-strip--full > .container {
    max-width: none;
    margin: 0;
    padding: 0 4%;
}

#top-games > .container {
    max-width: none;
    margin: 0;
    padding: 0 4%;
}

#details-gallery > .container,
#more-like-this > .container {
    max-width: none;
    margin: 0;
    padding: 0 4%;
}

section#more-like-this {
    margin-bottom: 2rem;
}

#top-games .catalog-strip__rail {
    --top-ten-rail-bleed: 3rem;
    margin-left: calc(var(--top-ten-rail-bleed) * -1);
    padding-left: var(--top-ten-rail-bleed);
    scroll-padding-left: 4%;
}

#top-games-gallery.catalog-strip__rail--details {
    gap: clamp(4rem, 9.6vw, 7rem);
    padding-right: 0;
}

.gallery-card {
    flex: 0 0 clamp(220px, 23vw, 280px);
    margin: 0;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(15, 17, 25, 0.65);
    transition: transform 0.25s ease;
}

.gallery-card--video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.gallery-card__play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-card-button:hover .gallery-card__play,
.gallery-card-button:focus-visible .gallery-card__play {
    transform: scale(1.05);
    background: rgba(45, 255, 170, 0.8);
    color: #031b0f;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

#top-games-gallery > .gallery-card-link {
    flex: 0 0 clamp(180px, 19%, 220px);
    display: block;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    margin-right: 30px;
}

#top-games-gallery > .top-ten-gallery-card:first-child {
    margin-left: 4%;
}

#top-games-gallery > .gallery-card-link:focus-visible {
    outline: 2px solid rgba(94, 234, 212, 0.6);
    outline-offset: 6px;
}

.gallery-card__placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.08);
}

.gallery-card--portrait {
    aspect-ratio: 3 / 4;
    border-radius: 26px;
}

@media (max-width: 1199.98px) {
    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .container,
    .catalog-strip > .container,
    .catalog-strip--full > .container,
    #top-games > .container,
    #details-gallery > .container,
    #more-like-this > .container {
        padding-left: 4%;
        padding-right: 4%;
    }

    #top-games {
        padding-top: 0.6rem;
        padding-bottom: 0.85rem;
    }

    #top-games .catalog-strip__title {
        margin-bottom: 1rem;
    }

    #top-games .catalog-strip__title h2,
    #top-games .catalog-strip__title .heading {
        font-size: 1.2rem;
    }

    #top-games .catalog-strip__rail {
        --top-ten-rail-bleed: 3.8rem;
        margin-left: calc(var(--top-ten-rail-bleed) * -1);
        padding-left: var(--top-ten-rail-bleed);
        scroll-padding-left: calc(4% + 1.2rem);
    }

    #top-games-gallery.catalog-strip__rail--details {
        gap: 1.4rem;
    }

    #top-games-gallery > .gallery-card-link {
        flex: 0 0 clamp(118px, 34vw, 150px);
        margin-right: 1.4rem;
    }

    #top-games-gallery .top-ten-gallery-card__badge {
        width: auto;
        left: -3.8rem;
        transform: translateY(12%);
        z-index: 0;
    }

    #top-games-gallery .top-ten-gallery-card__badge img {
        width: 72%;
        height: auto;
        opacity: 1;
    }

    .top-ten-gallery-card .gallery-card {
        margin: 0;
        position: relative;
        z-index: 2;
        left: 10%;
    }

    .catalog-strip__rail {
        gap: clamp(0.85rem, 5vw, 1.25rem);
    }

    .catalog-card {
        flex: 0 0 clamp(160px, 48vw, 200px);
    }

    .gallery-card {
        flex: 0 0 clamp(200px, 60vw, 260px);
    }

    #top-games-gallery > .top-ten-gallery-card:first-child {
        margin-left: 8%;
        margin-right: 2.5rem;
    }

    #top-games-gallery > .top-ten-gallery-card:first-child .top-ten-gallery-card__badge {
        left: -3.8rem;
    }

    #top-games-gallery > .top-ten-gallery-card--id-10 {
        margin-left: 1rem;
    }

    #top-games-gallery > .top-ten-gallery-card .top-ten-gallery-card__badge--id-10 {
        width: auto;
        left: -5rem;
    }

    .modal__dialog {
        width: calc(100vw - 1.5rem);
        max-height: calc(100vh - 2rem);
        padding: 1.6rem;
    }

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

@media (max-width: 479.98px) {
    #top-games .catalog-strip__rail {
        --top-ten-rail-bleed: 3.6rem;
    }

    #top-games-gallery.catalog-strip__rail--details {
        gap: 1.2rem;
    }

    #top-games-gallery > .gallery-card-link {
        flex: 0 0 clamp(112px, 33vw, 140px);
        margin-right: 2.5rem;
    }

    #top-games-gallery .top-ten-gallery-card__badge {
        width: auto;
        left: -3.6rem;
    }

    #top-games-gallery .top-ten-gallery-card__badge img {
        width: 70%;
    }

    #top-games-gallery > .top-ten-gallery-card:first-child .top-ten-gallery-card__badge {
        left: -3.6rem;
    }

    #top-games-gallery > .top-ten-gallery-card--id-10 {
        margin-left: 1rem;
    }

    #top-games-gallery > .top-ten-gallery-card .top-ten-gallery-card__badge--id-10 {
        width: auto;
        left: -4.8rem;
    }

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

@media (max-width: 599.98px) {
    .genre-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about-cloud-gaming {
    padding: clamp(2.8rem, 6vw, 4rem) 0 clamp(2.6rem, 5vw, 3.6rem);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-cloud-gaming__container {
    display: flex;
    flex-direction: column;
    gap: clamp(1.4rem, 3vw, 2rem);
    text-align: center;
    color: rgba(240, 244, 252, 0.88);
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.about-cloud-gaming h2,
.about-cloud-gaming .heading {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
}

.about-cloud-gaming p {
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.about-cloud-gaming strong {
    color: #ffffff;
    font-weight: 800;
}

.feature-showcase {
    padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3.75rem, 6.5vw, 5.5rem);
    background: var(--surface-black);
}

.showcase-layout {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: clamp(1rem, 2.2vw, 1.5rem);
    align-items: start;
}

.showcase-media {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: clamp(320px, 55vw, 640px);
    display: flex;
    align-items: flex-start;
    isolation: isolate;
    background-color: rgba(12, 14, 20, 0.9);
    background-image: var(--media-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(210deg, rgba(5, 9, 18, 0.12) 25%, rgba(5, 9, 18, 0.55) 65%, rgba(5, 9, 18, 0.85) 100%);
    z-index: -1;
}

.showcase-media-content {
    padding: clamp(1.8rem, 3vw, 2.4rem);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.showcase-media-content h3,
.showcase-media-content .heading {
    margin: 0 0 0.75rem;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
}

.showcase-media-content p {
    margin: 0;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.65;
    color: rgba(248, 250, 255, 0.88);
}

.showcase-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.8vw, 1.25rem);
}

.showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: clamp(1.8rem, 3vw, 2.4rem);
    border-radius: 30px;
    overflow: hidden;
    isolation: isolate;
    min-height: clamp(220px, 26vw, 310px);
    background-color: #0f1119;
    background-image: var(--bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 9, 18, 0.18) 10%, rgba(5, 9, 18, 0.5) 60%, rgba(5, 9, 18, 0.8) 100%);
    z-index: -1;
}

.showcase-content h3,
.showcase-content .heading {
    margin: 0 0 0.75rem;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
}

.showcase-content p {
    margin: 0;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.65;
    color: rgba(248, 250, 255, 0.88);
}

@media (max-width: 1023.98px) {
    .showcase-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .showcase-media {
        min-height: clamp(320px, 70vw, 520px);
    }

    .showcase-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }
}

@media (max-width: 767.98px) {
    .showcase-stack {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        min-height: clamp(220px, 80vw, 380px);
    }
}

.cloud-easy {
    background: var(--surface-black);
    padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.cloud-easy__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.cloud-easy__content {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.6rem);
    color: rgba(244, 248, 255, 0.92);
}

.cloud-easy__content h2,
.cloud-easy__content .heading {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
}

.cloud-easy__tagline {
    margin: 0;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: #ffffff;
}

.cloud-easy__list {
    margin: 0;
    padding-left: 1.4rem;
    display: grid;
    font-size: clamp(1rem, 1.9vw, 1.1rem);
    line-height: 1.6;
    color: rgba(232, 238, 248, 0.86);
}

.cloud-easy__media {
    margin: 0;
    display: flex;
    justify-content: center;
}

.cloud-easy__media img {
    max-width: clamp(320px, 100%, 620px);
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
}

.cloud-easy__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

@media (max-width: 1023.98px) {
    .cloud-easy__container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cloud-easy__content {
        align-items: baseline;
    }

    .cloud-easy__list {
        text-align: left;
        justify-self: start;
        max-width: none;
    }

    .cloud-easy__cta {
        align-self: flex-start;
    }
}

.game-details-overview {
    background: var(--surface-black);
    color: rgba(255, 255, 255, 0.88);
    padding-top: clamp(2.2rem, 4vw, 3.2rem);
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
    scroll-margin-top: 120px;
}

.game-details-overview__inner {
    display: block;
}

.game-details-overview__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: clamp(1.6rem, 3vw, 3rem);
    align-items: start;
}

.game-details-overview__description {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-width: 0;
}

.game-details-overview__meta-panel {
    min-width: 0;
}

.game-details-overview__title {
    margin: 0;
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.96);
}

.hero-banner--details h1.heading,
.hero-banner--details .heading--hero {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.game-details-overview h2.heading,
.catalog-strip--details h2.heading,
.modal[id^="game-"] h2.heading,
.modal#media-viewer-modal h2.heading {
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
}

.game-details-overview h3.heading,
.catalog-strip--details h3.heading {
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
}

.game-details-summary {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.game-details-summary__text {
    margin: 0;
    font-size: clamp(0.98rem, 1.55vw, 1.08rem);
    line-height: 1.7;
    color: rgba(248, 250, 255, 0.88);
    white-space: pre-line;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-details-summary__button {
    align-self: flex-start;
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(16, 18, 26, 0.75);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.game-details-summary__button:hover,
.game-details-summary__button:focus-visible {
    transform: translateY(-1px);
    background: rgba(45, 255, 170, 0.14);
    border-color: rgba(45, 255, 170, 0.6);
    color: #ffffff;
}

.game-details-meta {
    margin: 0;
}

.game-details-meta--rows {
    display: flex;
    flex-direction: column;
}

.game-details-meta__row {
    display: grid;
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    min-height: 52px;
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    margin: 0;
}

.game-details-meta dt {
    margin: 0;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.game-details-meta dd {
    margin: 0;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    white-space: normal;
    overflow-wrap: anywhere;
}

.game-details-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal[hidden] {
    display: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 9, 18, 0.85);
    backdrop-filter: blur(6px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(720px, calc(100vw - 2rem));
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    padding: clamp(1.8rem, 3vw, 2.4rem);
    border-radius: 26px;
    background: var(--surface-black);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.65);
    color: #ffffff;
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal__header h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.6vw, 1.9rem);
    font-weight: 700;
}

.modal__dialog--media {
    width: min(860px, calc(100vw - 1.5rem));
    max-height: calc(100vh - 3rem);
    padding: 0;
    overflow: hidden;
}

.modal__dialog--media .modal__header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    margin: 0;
    padding: 0.75rem;
}

.modal__dialog--media .modal__header h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.modal__dialog--video {
    width: min(920px, calc(100vw - 1.5rem));
    padding: 0;
    overflow: hidden;
}

.modal__dialog--video .modal__header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    margin: 0;
    padding: 0.75rem;
}

.modal__dialog--video .modal__header h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.byog-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.byog-video-frame iframe,
.byog-video-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.modal__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.modal__close:hover,
.modal__close:focus-visible {
    transform: translateY(-2px);
    background: #5acd94;
    border-color: #5acd94;
    color: #06371f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 205, 148, 0.22);
}

.modal__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(226, 232, 240, 0.88);
}

.modal__body p {
    margin: 0;
}

.media-viewer__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    touch-action: pan-y;
    user-select: none;
}

.media-viewer__content img,
.media-viewer__content video {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 3rem);
    display: block;
    object-fit: contain;
    border-radius: 0;
    background: var(--surface-black);
}

.media-viewer__content video {
    max-height: calc(100vh - 3rem);
}

.media-viewer__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(90, 205, 148, 0.55);
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.78);
    color: #ffffff;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.2s ease, border 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.media-viewer__nav[hidden] {
    display: none;
}

.media-viewer__nav--prev {
    left: 0.75rem;
}

.media-viewer__nav--next {
    right: 0.75rem;
}

.media-viewer__nav:hover,
.media-viewer__nav:focus-visible {
    background: #5acd94;
    border-color: #5acd94;
    color: #06371f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 205, 148, 0.22);
}

body.modal-open {
    overflow: hidden;
}

body.login-popup-open {
    overflow: hidden;
}

.login-popup-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-popup-modal[hidden] {
    display: none;
}

.login-popup-modal__backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(5, 9, 18, 0.78);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.login-popup {
    position: relative;
    z-index: 1;
    width: 372px;
    max-width: calc(100vw - 2rem);
    height: 600px;
    max-height: calc(100vh - 2rem);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.16));
}

.login-popup__panel {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 24px 24px 10px;
    background: #2b2b2b;
    border: 1px solid #2b2b2b;
    border-radius: 32px;
    isolation: isolate;
    margin: 0;
    overflow-y: auto;
}

.login-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: #5acd94;
    font-size: 1.5rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, border 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.login-popup__close:hover,
.login-popup__close:focus-visible {
    background: #5acd94;
    border-color: #5acd94;
    color: #06371f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 205, 148, 0.22);
}

.login-popup__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 100%;
    flex: 1 1 auto;
    gap: 6px;
    justify-content: space-between;
}

.login-popup__middle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    flex: 1 1 auto;
}

.login-popup__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding-bottom: 6px;
}

.login-popup__logo {
    width: 160px;
    max-width: 70%;
    height: auto;
    display: block;
    margin-bottom: 4px;
}

.login-popup__title-wrap h2 {
    margin: 0;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.login-popup__title-wrap p {
    margin: 0;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.005em;
    color: rgba(255, 255, 255, 0.78);
    max-width: 300px;
}

.login-popup__field-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding-bottom: 8px;
}

.login-popup__field-group {
    width: 100%;
}

.login-popup__label {
    width: 100%;
    margin: 0 0 8px;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.005em;
    color: rgba(255, 255, 255, 0.78);
}

.login-popup__phone-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

.login-popup__country-code {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    width: 44px;
    min-height: 40px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid #a1a1a1;
    border-radius: 8px;
    background: #2b2b2b;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.005em;
    color: #ffffff;
}

.login-popup__phone-input {
    box-sizing: border-box;
    width: 100%;
    min-height: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #a1a1a1;
    border-radius: 8px;
    background: #2b2b2b;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.005em;
    color: #ffffff;
}

.login-popup__phone-input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.login-popup__phone-input:focus-visible {
    outline: none;
    border-color: #14b866;
    box-shadow: 0 0 0 2px rgba(20, 184, 102, 0.2);
}

.login-popup__phone-input[aria-invalid='true'] {
    border-color: #ff7a7a;
    box-shadow: 0 0 0 2px rgba(255, 122, 122, 0.22);
}

.login-popup__otp-input {
    box-sizing: border-box;
    width: 100%;
    min-height: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #a1a1a1;
    border-radius: 8px;
    background: #2b2b2b;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.005em;
    color: #ffffff;
}

.login-popup__otp-input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.login-popup__otp-input:focus-visible {
    outline: none;
    border-color: #14b866;
    box-shadow: 0 0 0 2px rgba(20, 184, 102, 0.2);
}

.login-popup__otp-input[aria-invalid='true'] {
    border-color: #ff7a7a;
    box-shadow: 0 0 0 2px rgba(255, 122, 122, 0.22);
}

.login-popup__otp-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.login-popup__text-action {
    background: none;
    border: none;
    padding: 0;
    color: #14b866;
    font-family: 'JioType', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: underline;
    cursor: pointer;
}

.login-popup__text-action:disabled {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    cursor: not-allowed;
}

.login-popup__status {
    min-height: 42px;
    width: 100%;
    margin: 0;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.005em;
    color: rgba(255, 255, 255, 0.78);
    white-space: normal;
    word-break: break-word;
}

.login-popup__status.is-error {
    color: #ff9a9a;
}

.login-popup__status.is-success {
    color: #14b866;
}

.login-popup__spacer {
    display: none;
}

.login-popup__bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.login-popup__terms {
    width: 100%;
    margin: 0;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.005em;
    color: rgba(255, 255, 255, 0.78);
}

.login-popup__terms a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.login-popup__terms a:hover,
.login-popup__terms a:focus-visible {
    text-decoration: underline;
}

.login-popup__continue {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 1000px;
    padding: 12px 16px;
    background: #14b866;
    color: #06371f;
    font-family: 'JioType', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.005em;
    cursor: pointer;
}

.login-popup__continue:hover,
.login-popup__continue:focus-visible {
    background: #1acf74;
}

.login-popup__continue:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

@media (max-width: 767.98px) {
    .login-popup-modal {
        padding: 0.75rem;
    }

    .login-popup {
        width: min(372px, calc(100vw - 1.5rem));
        height: 600px;
        max-height: calc(100vh - 1.5rem);
    }

    .login-popup__panel {
        padding: 22px 20px 10px;
        border-radius: 24px;
        min-height: 0;
    }
}

.game-details-empty {
    background: var(--surface-black);
    padding: clamp(5rem, 8vw, 6rem) 0;
    color: #ffffff;
}

.game-details-empty h1 {
    margin-top: 0;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
}

.game-details-empty a {
    color: #14b866;
    text-decoration: none;
    font-weight: 600;
}

.game-details-empty a:hover {
    text-decoration: underline;
}

@media (max-width: 1023.98px) {
    .game-details-overview__content {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .game-details-tags {
        grid-template-columns: 1fr;
    }

    .game-details-cta {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .game-details-overview {
        padding-top: 1.4rem;
    }

    .game-details-meta__row {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.25rem;
        padding: 0.55rem 0;
    }

    .game-details-meta dt {
        font-size: 0.88rem;
    }

    .game-details-meta dd {
        font-size: 0.95rem;
    }

    .hero-meta-list li + li {
        padding-left: 0.85rem;
    }
}


.footer {
    background: #2b2b2b;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(130px, 1fr)) minmax(220px, 1.3fr);
    gap: clamp(2rem, 3vw, 3rem);
}

.footer-column {
    display: block;
}

.footer-accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.footer-accordion__toggle:focus-visible {
    outline: 2px solid #0ec66a;
    outline-offset: 3px;
}

.footer-accordion__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* background: rgba(14, 198, 106, 0.15); */
    /* color: #0ec66a; */
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-accordion__icon::before {
    content: '+';
    font-size: 1.6rem;
    line-height: 1;
}

[data-footer-column].is-open .footer-accordion__icon {
    /* background: rgba(14, 198, 106, 0.22); */
    /* color: #1bff8c; */
}

[data-footer-column].is-open .footer-accordion__icon::before {
    content: '\2212';
}

.footer-accordion__content {
    padding-top: 0.75rem;
}

.footer-accordion__content[hidden] {
    display: none;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-list a,
.footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
}

.footer-list a:hover,
.footer a:hover {
    color: #ffffff;
}

.footer-column--cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.footer-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0 0.85rem;
}

.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
}

.footer-social li {
    margin: 0;
    flex: 1 1 0;
    min-width: 0;
}

.footer-social li a {
    display: grid;
    place-items: center;
    width: min(44px, 100%);
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
    background: transparent;
    border: none;
    transition: transform 0.2s ease;
}

.footer-social li a:hover {
    transform: translateY(-2px);
    background: transparent;
}

.footer-social img {
    display: block;
    width: min(30px, 72%);
    height: min(30px, 72%);
    object-fit: contain;
}

.footer-cta-title {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-storebadges {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
}

.footer-storebadges a {
    display: inline-flex;
    width: clamp(136px, 10.5vw, 150px);
    height: clamp(40px, 3vw, 44px);
    max-width: 100%;
}

.footer-storebadges img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.footer-credits {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    font-size: 0.75rem;
}

.footer-credits-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-brand-logo {
    width: 36px;
    height: auto;
    display: block;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
}

.footer-links .divider {
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1199.98px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(150px, 1fr));
    }
}

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .footer-column--cta {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 0;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-column {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.2rem 0;
        width: 100%;
    }

    .footer-column:first-child {
        border-top: none;
    }

    .footer-accordion__content {
        padding-top: 0.9rem;
    }

    .footer-accordion__toggle {
        font-size: 1.05rem;
    }

    .footer-cta-title,
    .footer-subtitle {
        font-size: 0.95rem;
    }

    .footer-column--cta {
        align-items: center;
        border: none;
        padding: 2rem 0 2.3rem;
        gap: 1.35rem;
    }

    .footer-column--cta::before {
        content: none;
    }

    .footer-cta-title {
        display: none;
    }

    .footer-social {
        justify-content: center;
        gap: clamp(0.45rem, 2.4vw, 1.35rem);
    }

    .footer-social li {
        flex: 0 0 auto;
    }

    .footer-social li a {
        width: clamp(40px, 10vw, 86px);
        background: #14b866;
        border-radius: 50%;
    }

    .footer-social img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .footer-subtitle {
        width: 100%;
        margin: 0.35rem 0 0.2rem;
        color: #ffffff;
        font-size: 2rem;
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.03em;
        text-align: center;
    }

    .footer-storebadges {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        gap: clamp(0.9rem, 5vw, 1.6rem);
    }

    .footer-storebadges a {
        flex: 0 0 clamp(132px, 38vw, 190px);
        width: clamp(132px, 38vw, 190px);
        height: auto;
    }

    .footer-storebadges img {
        height: auto;
    }

    .footer-credits-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        display: none;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(200px, 1.35fr);
        gap: clamp(1rem, 2vw, 2rem);
    }

    .footer-column--cta {
        grid-column: auto;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-accordion__toggle {
        cursor: default;
    }

    .footer-accordion__icon {
        display: none;
    }

    .footer-accordion__content {
        padding-top: 0;
        display: block !important;
    }
}

@media (min-width: 768px) {
    .header-simple {
        gap: 3rem;
    }
}

@media (max-width: 767.98px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-header {
        background: var(--surface-black);
        box-shadow: none;
    }

    .site-header.is-nav-open {
        z-index: 120;
    }

    .site-header::after {
        opacity: 0;
    }

    .header-simple {
        gap: 0.85rem;
        position: relative;
        z-index: 32;
    }

    .brand-logo {
        width: 150px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        padding: calc(4.75rem + env(safe-area-inset-top)) 4% calc(1.6rem + env(safe-area-inset-bottom));
        background: var(--surface-black);
        z-index: 26;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        overflow-y: auto;
    }

    .site-header.is-nav-open .main-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-header::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 24;
    }

    .site-header.is-nav-open::before {
        opacity: 1;
    }

    .site-header.is-nav-open .brand,
    .site-header.is-nav-open .header-search,
    .site-header.is-nav-open .cta-outline,
    .site-header.is-nav-open .header-user-menu {
        display: none !important;
    }

    .site-header.is-nav-open .nav-toggle {
        position: fixed;
        top: calc(env(safe-area-inset-top) + 0.75rem);
        left: 4%;
        z-index: 33;
        border: 0;
        background: transparent;
        color: #ffffff;
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
    }

    .site-header.is-nav-open .nav-toggle:focus,
    .site-header.is-nav-open .nav-toggle:focus-visible,
    .site-header.is-nav-open .nav-toggle:hover {
        border: 0;
        outline: none;
        box-shadow: none;
        background: transparent;
        transform: none;
    }

    .main-nav .nav-link {
        display: block;
        padding: 0.85rem clamp(0.5rem, 4vw, 0.85rem);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, 0.94);
    }

    .main-nav .nav-link:hover,
    .main-nav .nav-link:focus-visible,
    .main-nav .nav-link.active {
        border-color: rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
    }

    .header-search__toggle {
        width: 40px;
        height: 40px;
    }

    .header-search__input {
        height: 40px;
        font-size: 0.86rem;
    }

    .site-header.is-search-open-mobile .brand,
    .site-header.is-search-open-mobile .nav-toggle,
    .site-header.is-search-open-mobile .main-nav,
    .site-header.is-search-open-mobile .cta-outline,
    .site-header.is-search-open-mobile .header-user-menu {
        display: none !important;
    }

    .site-header.is-search-open-mobile .header-simple {
        gap: 0;
    }

    .site-header.is-search-open-mobile .header-search {
        margin-left: 0;
        width: 100%;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        gap: 0.55rem;
    }

    .site-header.is-search-open-mobile .header-actions {
        width: 100%;
        flex: 1 1 auto;
    }

    .site-header.is-search-open-mobile .header-search__panel {
        position: relative;
        max-width: none;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        overflow: visible;
        order: 1;
        z-index: 2;
    }

    .site-header.is-search-open-mobile .header-search.is-open .header-search__panel {
        width: 100%;
    }

    .site-header.is-search-open-mobile .header-search__input {
        width: 100%;
        height: 42px;
        border-radius: 999px;
        padding: 0 1rem;
        font-size: 0.92rem;
    }

    .site-header.is-search-open-mobile .header-search__toggle {
        order: 2;
        width: 34px;
        height: 34px;
        min-width: 34px;
        border: 0;
        background: transparent;
        color: #ffffff;
        position: relative;
    }

    .site-header.is-search-open-mobile .header-search__icon {
        display: none;
    }

    .site-header.is-search-open-mobile .header-search__toggle::before {
        content: '\00d7';
        font-size: 2rem;
        line-height: 1;
        font-weight: 300;
        display: inline-block;
    }

    .steam-hero {
        padding-top: clamp(1.5rem, 6vw, 2.25rem);
    }

    .steam-hero::before {
        background-image: var(--steam-hero-mobile-bg-image, var(--steam-hero-bg-image));
    }

    .steam-hero::after {
        background: linear-gradient(181deg, rgb(var(--surface-black-rgb) / 0) 0%, rgb(var(--surface-black-rgb) / 0.4) 0%, var(--surface-black) 90%);
    }

    .steam-hero__container {
        grid-template-columns: 1fr;
        align-content: flex-end;
        align-items: center;
        text-align: center;
    }

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

    .steam-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-user-menu__trigger {
        gap: 0.38rem;
        min-height: 44px;
        padding: 0.25rem 0.45rem 0.25rem 0.25rem;
    }

    .header-user-menu__plan {
        font-size: 0.68rem;
        padding: 0 0.52rem;
        height: 24px;
    }

    .header-user-menu__avatar-wrap {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }

    .header-user-menu__name {
        max-width: 64px;
        font-size: 0.8rem;
    }

    .hero-banner {
        min-height: 90vh;
        padding-top: 0;
        padding-bottom: 0;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .hero-banner:not(.hero-banner--details) {
        --mobile-hero-header-offset: calc(env(safe-area-inset-top) + 72px);
        min-height: calc(70vh + var(--mobile-hero-header-offset));
    }

    .hero-banner:not(.hero-banner--details) .hero-slider {
        top: var(--mobile-hero-header-offset);
        bottom: 0;
    }

    .slide-content {
        min-height: 70vh;
        padding: 0;
    }

    .slide-content .container {
        gap: 1rem;
    }

    .hero-banner:not(.hero-banner--details) .slide-content {
        align-items: flex-end;
        padding: 0;
        min-height: 70vh;
    }

    .hero-banner:not(.hero-banner--details) .slide-content .container {
        min-height: 100%;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        padding-bottom: clamp(1.4rem, 7vw, 2.6rem);
    }

    .hero-banner:not(.hero-banner--details) .slide-content p {
        text-align: center;
    }

    .hero-banner:not(.hero-banner--details) .hero-actions {
        display: grid;
        grid-template-rows: auto 3rem;
        justify-items: center;
        align-items: start;
        gap: 0.7rem;
    }

    .hero-banner:not(.hero-banner--details) .hero-actions > .cta-button {
        grid-row: 1;
    }

    .hero-banner:not(.hero-banner--details) .hero-actions > .hero-audio-toggle {
        grid-row: 2;
    }

    .hero-meta-list {
        gap: 0.65rem;
    }

    .hero-bottom {
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(env(safe-area-inset-bottom) + clamp(1.6rem, 7vw, 3.2rem));
        padding: 0 clamp(1rem, 6vw, 1.6rem);
    }

    .hero-bottom .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-previews {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-preview {
        width: clamp(72px, 22vw, 96px);
        height: clamp(40px, 12vw, 54px);
    }

    .hero-controls {
        gap: 1rem;
    }

    .hero-control {
        width: 34px;
        height: 34px;
    }
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    touch-action: pan-y;
}

.hero-slide picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img,
.hero-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide .slide-image {
    z-index: 1;
    transition: opacity 0.6s ease;
}

.hero-slide .slide-video {
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

@media (max-width: 767.98px) {
    .hero-banner:not(.hero-banner--details) .hero-slide .slide-image,
    .hero-banner:not(.hero-banner--details) .hero-slide .slide-video {
        object-position: center top;
    }
}

.hero-slide.is-playing .slide-image {
    opacity: 0;
}

.hero-slide.is-playing .slide-video {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(var(--surface-black-rgb) / 0) 0%, rgb(var(--surface-black-rgb) / 0.4) 45%, var(--surface-black) 95%);
    z-index: 2;
}

.hero-banner--details .slide-content {
    align-items: center;
    padding: clamp(6rem, 10vh, 8rem) 0;
}

.hero-banner--details .slide-content .game-hero-layout {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: clamp(1.5rem, 3vw, 2.4rem);
    min-height: 100%;
    padding: 0 4%;
    box-sizing: border-box;
}

.game-hero-content {
    width: min(600px, 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
    gap: 1rem;
    padding-bottom: 0;
}

.game-breadcrumbs {
    max-width: 100%;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.72);
}

.game-breadcrumbs__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.game-breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.game-breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin-left: 0.45rem;
    color: rgba(255, 255, 255, 0.38);
}

.game-breadcrumbs a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.game-breadcrumbs a:hover,
.game-breadcrumbs a:focus-visible {
    color: #5acd94;
}

.game-breadcrumbs [aria-current="page"] {
    display: inline-block;
    max-width: min(360px, 72vw);
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-hero-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.game-hero-paid-badge,
.game-hero-bonus-badge {
    min-width: 97px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border-radius: 0.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    text-align: center;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

.game-hero-paid-badge__icon,
.game-hero-bonus-badge__icon {
    height: 1.25rem;
    width: 1.25rem;
    flex: 0 0 auto;
}

.game-hero-paid-badge__icon {
    color: #5acd94;
}

.game-hero-bonus-badge {
    background: #fa7d19;
    cursor: pointer;
}

.game-hero-bonus-badge__icon {
    color: #ffd6c2;
}

.game-hero-content .hero-heading {
    margin-bottom: 0.4rem;
}

.game-hero-content .hero-heading h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-meta-list.game-hero-meta {
    gap: 0.65rem;
}

.hero-meta-list.game-hero-meta .game-hero-meta__item {
    font-size: 1.02rem;
}

.hero-meta-list.game-hero-meta .game-hero-meta__item--age span:last-child {
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    font-size: 0.95rem;
    line-height: 1;
}

.hero-banner--details .slide-content .game-hero-support {
    display: block;
    margin: 0;
    font-size: 1.08rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.66);
}

.game-hero-support__label--mobile {
    display: none;
}

.game-hero-support__icons {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-left: 0.75rem;
    vertical-align: middle;
    white-space: nowrap;
    line-height: 0;
}

.game-hero-support__icons img {
    position: static;
    inset: auto;
    display: block;
    width: 1.45rem;
    height: 1.45rem;
    object-fit: contain;
}

.game-hero-support__separator {
    width: 1px;
    height: 1.45rem;
    background: rgba(255, 255, 255, 0.62);
}

.game-hero-actions {
    margin-top: 0.2rem;
}

.game-hero-controller-link {
    margin-top: 0.4rem;
    color: #8ceebf;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.game-hero-controller-link:hover,
.game-hero-controller-link:focus-visible {
    color: #b7ffd9;
}

.game-hero-rail {
    --hero-preview-width: 132px;
    --hero-preview-height: 80px;
    --hero-preview-gap: 0.55rem;
    --hero-preview-scroll-space: 0.55rem;
    width: calc(var(--hero-preview-width) + var(--hero-preview-scroll-space));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.game-hero-rail__control {
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    display: inline-grid;
    place-items: center;
    transition: background 0.2s ease;
}

.game-hero-rail__control::before {
    content: none;
}

.game-hero-rail__control[data-hero-media-next]::before {
    content: none;
}

.game-hero-rail__control::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background-image: var(--control-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.game-hero-rail__control:hover,
.game-hero-rail__control:focus-visible {
    background: rgba(255, 255, 255, 0.36);
}

.game-hero-rail__track {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--hero-preview-gap);
    max-height: var(--hero-preview-window-height);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 var(--hero-preview-scroll-space) 0 0.2rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
}

.game-hero-rail__track::-webkit-scrollbar {
    width: 4px;
}

.game-hero-rail__track::-webkit-scrollbar-track {
    background: transparent;
}

.game-hero-rail__track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.42);
    border-radius: 999px;
}

.hero-banner--details .hero-previews.game-hero-rail__track {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.hero-banner--details .hero-preview.game-hero-thumb {
    width: var(--hero-preview-width);
    height: var(--hero-preview-height);
    flex: 0 0 var(--hero-preview-height);
    border-radius: 8px;
}

.hero-banner--details .hero-bottom {
    position: absolute;
    top: 50%;
    right: 4%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    z-index: 4;
}

.hero-banner--details .hero-bottom::before {
    display: none;
}

.hero-banner--details .hero-bottom .container {
    width: auto;
    padding: 0;
}

.game-hero-thumb {
    position: relative;
    width: 132px;
    height: 80px;
    border-radius: 8px;
}

.game-hero-thumb__play {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.hero-audio-toggle--corner {
    position: absolute;
    right: 4%;
    bottom: clamp(1.25rem, 3vh, 2rem);
    z-index: 5;
}

@media (max-width: 1023.98px) {
    .hero-banner--details .slide-content .game-hero-layout {
        align-items: stretch;
    }

    .game-hero-rail {
        width: 140px;
    }
}

@media (max-width: 767.98px) {
    .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(181deg, rgb(var(--surface-black-rgb) / 0) 0%, rgb(var(--surface-black-rgb) / 0.4) 0%, var(--surface-black) 90%);
        z-index: 2;
    }

    .hero-banner--details {
        --mobile-hero-header-offset: calc(env(safe-area-inset-top) + 72px);
        min-height: calc(60vh + var(--mobile-hero-header-offset));
        padding-bottom: env(safe-area-inset-bottom);
    }

    .hero-banner--details .hero-slider {
        top: var(--mobile-hero-header-offset);
        bottom: 0;
    }

    .hero-banner--details .hero-slide .slide-image {
        object-position: center top;
    }

    .hero-banner--details .slide-content {
        min-height: 60vh;
        align-items: flex-end;
        padding: 0;
    }

    .hero-banner--details .slide-content .game-hero-layout {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        text-align: center;
        min-height: 100%;
        gap: 1rem;
        padding: 0 4% calc(env(safe-area-inset-bottom) + 1.5rem);
    }

    .hero-banner--details .game-hero-content {
        position: relative;
        isolation: isolate;
        width: min(560px, 100%);
        align-items: center;
        align-self: center;
        padding-bottom: 0;
    }

    .hero-banner--details .game-hero-content .hero-heading h1 {
        text-align: center;
    }

    .hero-banner--details .hero-meta-list.game-hero-meta {
        justify-content: center;
    }

    .game-hero-rail {
        display: none;
    }

    .hero-audio-toggle--corner {
        right: 1rem;
        bottom: 1rem;
    }

    .hero-banner--details .slide-content .game-hero-support {
        font-size: 0.95rem;
        text-align: center;
    }

    .game-hero-support__label--desktop {
        display: none;
    }

    .game-hero-support__label--mobile {
        display: inline;
    }

    .game-hero-support__icons {
        margin-left: 0.45rem;
        gap: 0.5rem;
    }

    .hero-banner--details .game-hero-actions {
        justify-content: center;
    }

    .hero-banner--details .game-hero-controller-link {
        align-self: center;
    }
}
.slide-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 6rem;
    touch-action: pan-y;
}

.slide-content .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
}

.slide-content h1,
.slide-content h2 {
    margin: 0;
    font-size: clamp(2.1rem, 4.3vw, 3.3rem);
    font-weight: 900;
    max-width: 560px;
    line-height: 1.1;
    word-break: break-word;
}

@media (max-width: 767.98px) {
    .slide-content h1,
    .slide-content h2 {
        font-size: clamp(2.1rem, 4.3vw, 3.3rem);
        margin: 0;
        font-weight: 900;
        max-width: 560px;
        line-height: 1.1;
        word-break: break-word;
    }
}

.slide-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.2;
    max-width: 560px;
    font-size: 1.0rem;
}

.hero-meta-list {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.hero-meta-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

.hero-meta-list li + li {
    position: relative;
    padding-left: 1.1rem;
}

.hero-meta-list li + li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.hero-meta-icon {
    font-size: 0.9rem;
    line-height: 1;
    color: #f4cf8a;
}

.hero-audio-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-audio-toggle svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    pointer-events: none;
}

.hero-audio-toggle[hidden] {
    display: none !important;
}

.hero-audio-toggle:hover,
.hero-audio-toggle:focus-visible {
    background: rgba(0, 0, 0, 0.6);
}

.hero-audio-toggle:active {
    transform: scale(0.96);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


.hero-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.hero-heading h1,
.hero-heading h2 {
    margin: 0;
}

.hero-bottom {
    position: relative;
    z-index: 4;
    padding: 0 0 2.5rem;
    margin-top: auto;
    isolation: isolate;
}

.hero-bottom::before {
    content: '';
    position: absolute;
    inset: -120px 0 -120px 0;
    background: linear-gradient(0deg, var(--surface-black) 0%, rgb(var(--surface-black-rgb) / 0.82) 40%, rgb(var(--surface-black-rgb) / 0) 100%);
    z-index: -1;
    pointer-events: none;
}


.hero-bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hero-previews {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
}

.hero-previews::-webkit-scrollbar {
    height: 0;
}

.hero-preview {
    width: clamp(86px, 8vw, 122px);
    height: clamp(48px, 4.5vw, 70px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    opacity: 0.78;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    flex: 0 0 auto;
}

.hero-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-preview:hover,
.hero-preview:focus-visible {
    transform: none;
    border-color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

.hero-preview.is-active {
    border-color: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

@media (min-width: 768px) {
    .hero-banner:not(.hero-banner--details) .hero-bottom {
        position: absolute;
        top: 50%;
        right: 4%;
        left: auto;
        bottom: auto;
        transform: translateY(-50%);
        padding: 0;
        margin: 0;
    }

    .hero-banner:not(.hero-banner--details) .hero-bottom::before {
        display: none;
    }

    .hero-banner:not(.hero-banner--details) .hero-bottom .container {
        width: auto;
        padding: 0;
    }

    .hero-banner:not(.hero-banner--details) .hero-slide-rail {
        --hero-preview-width: 132px;
        --hero-preview-gap: 0.55rem;
        --hero-preview-height: 80px;
        --hero-preview-window-height: calc(400px + 2.2rem);
        --hero-preview-scroll-space: 0.55rem;
        width: calc(var(--hero-preview-width) + var(--hero-preview-scroll-space));
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
    }

    .hero-banner:not(.hero-banner--details) .hero-previews {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
        height: var(--hero-preview-window-height);
        max-height: var(--hero-preview-window-height);
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0 var(--hero-preview-scroll-space) 0 0.2rem;
        gap: var(--hero-preview-gap);
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.42) transparent;
        -ms-overflow-style: auto;
    }

    .hero-banner:not(.hero-banner--details) .hero-previews.is-scrollable {
        overflow-y: scroll;
    }

    .hero-banner:not(.hero-banner--details) .hero-previews::-webkit-scrollbar {
        width: 4px;
        height: auto;
    }

    .hero-banner:not(.hero-banner--details) .hero-previews::-webkit-scrollbar-track {
        background: transparent;
    }

    .hero-banner:not(.hero-banner--details) .hero-previews::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.42);
        border-radius: 999px;
    }

    .hero-banner:not(.hero-banner--details) .hero-preview {
        width: var(--hero-preview-width);
        height: var(--hero-preview-height);
        flex: 0 0 var(--hero-preview-height);
        border-radius: 8px;
        opacity: 0.82;
    }

    .hero-banner:not(.hero-banner--details) .hero-preview.is-active {
        width: var(--hero-preview-width);
        height: var(--hero-preview-height);
        border-radius: 8px;
        opacity: 1;
    }

    .hero-banner:not(.hero-banner--details) .hero-slide-rail .game-hero-rail__control {
        display: none;
    }

    .hero-banner:not(.hero-banner--details) .hero-dots {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-banner:not(.hero-banner--details) .hero-bottom {
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: calc(env(safe-area-inset-bottom) + clamp(1rem, 4vw, 1.8rem));
        transform: none;
        padding: 0 clamp(1rem, 6vw, 1.6rem);
    }

    .hero-banner:not(.hero-banner--details) .hero-bottom .container {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-banner:not(.hero-banner--details) .hero-slide-rail {
        display: none;
    }

    .hero-banner:not(.hero-banner--details) .hero-dots {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease, width 0.25s ease;
}

.hero-dot.is-active {
    background: #2de99a;
    width: 36px;
    transform: none;
}

.hero-dot:focus-visible {
    outline: 2px solid #2de99a;
    outline-offset: 4px;
}

.controllers-hero {
    background: var(--surface-black);
    padding: calc(72px + clamp(1.4rem, 3vw, 2.2rem)) 0 clamp(1.2rem, 3vw, 2rem);
    text-align: center;
    color: #ffffff;
}

.controllers-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
}

.controllers-hero h1,
.controllers-hero .heading {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
}

.controllers-hero p {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: rgba(226, 232, 240, 0.85);
}

.controllers-grid {
    background: var(--surface-black);
    padding: clamp(1rem, 3vw, 1.8rem) 0 clamp(2.4rem, 5vw, 3.4rem);
}

.controllers-grid__wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.6rem);
    align-items: center;
}

.controllers-grid__layout {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.8rem, 2vw, 1.2rem);
    width: 100%;
    align-items: start;
}

.controller-card {
    background: rgba(255, 255, 255, 0.035);
    border-radius: 18px;
    padding: clamp(0.85rem, 1.8vw, 1.15rem);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.controller-card:hover,
.controller-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(90, 205, 148, 0.45);
    background: rgba(255, 255, 255, 0.055);
}

.controller-card:focus-visible {
    outline: 2px solid rgba(90, 205, 148, 0.7);
    outline-offset: 4px;
}

.controller-card__art {
    width: min(170px, 86%);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controller-card__art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.controller-card__title {
    margin: 0;
    color: rgba(248, 250, 255, 0.95);
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    line-height: 1.25;
}

.controller-card .controller-card__cta {
    width: min(150px, 100%);
    margin-top: auto;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

.controllers-grid__empty {
    text-align: center;
    color: rgba(226, 232, 240, 0.8);
    font-size: 1.05rem;
}

@media (max-width: 1199.98px) {
    .controllers-grid__layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .controllers-hero {
        padding-top: calc(72px + clamp(1rem, 4vw, 1.6rem));
    }

    .controllers-grid__layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .controller-card {
        border-radius: 14px;
        padding: 0.75rem;
        gap: 0.65rem;
    }

    .controller-card__art {
        width: min(130px, 88%);
    }

    .controller-card .controller-card__cta {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
}


.faq-hero {
    background: var(--surface-black);
    color: #ffffff;
    padding: calc(72px + clamp(1.5rem, 3vw, 2.5rem)) 0 clamp(2.4rem, 4vw, 3.2rem);
    text-align: center;
}

.faq-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.faq-hero h1,
.faq-hero .heading {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.faq-hero p {
    margin: 0;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.faq-tabs {
    background: var(--surface-black);
    padding-bottom: 0;
}

.faq-tabs__inner {
    display: grid;
    grid-template-columns: repeat(var(--faq-tab-count, 6), minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    background: #2b2b2b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.25rem;
    margin: 0 auto;
    width: min(100%, 860px);
    overflow: hidden;
}

.faq-tabs__inner::-webkit-scrollbar {
    height: 0.4rem;
}

.faq-tabs__inner::-webkit-scrollbar-thumb {
    background: rgba(104, 255, 191, 0.2);
    border-radius: 999px;
}

.faq-tab {
    border: none;
    border-radius: 999px;
    width: 100%;
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    background: transparent;
    color: #5acd94;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.faq-tab.is-active {
    background: #14b866;
    color: #042414;
    box-shadow: none;
}

.faq-tab:not(.is-active):hover,
.faq-tab:not(.is-active):focus-visible {
    background: rgba(20, 184, 102, 0.12);
    color: #5acd94;
}

.faq-list {
    background: var(--surface-black);
    color: #ffffff;
    padding: clamp(2.2rem, 4vw, 3.4rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.faq-list .container {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.faq-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.faq-panel[hidden] {
    display: none !important;
}

.faq-panel__title {
    margin: 0;
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    color: rgba(226, 232, 240, 0.75);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-accordion__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.faq-accordion__toggle {
    width: 100%;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
    padding: 1.05rem 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-accordion__toggle:hover,
.faq-accordion__toggle:focus-visible {
    color: #24ff9f;
}

.faq-accordion__question {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    min-width: 0;
}

.faq-accordion__number {
    color: #5acd94;
    flex: 0 0 auto;
    font-weight: 800;
}

.faq-accordion__icon {
    font-size: 1.55rem;
    color: #00c582;
    transition: transform 0.2s ease;
}

.faq-accordion__toggle.is-open .faq-accordion__icon {
    transform: rotate(45deg);
}

.faq-accordion__content {
    color: rgba(226, 232, 240, 0.78);
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    line-height: 1.65;
    padding-bottom: 1rem;
    text-align: left;
}

.faq-empty {
    text-align: center;
    color: rgba(226, 232, 240, 0.7);
    font-size: 1.05rem;
}

@media (max-width: 599.98px) {
    .faq-tabs__inner {
        display: flex;
        flex-wrap: wrap;
        overflow: visible;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0 4%;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .faq-tab {
        flex: 0 0 auto;
        width: auto;
        min-height: 38px;
        border: 1px solid rgba(90, 205, 148, 0.24);
        font-size: 0.92rem;
        padding: 0.5rem 0.9rem;
        background: rgba(255, 255, 255, 0.04);
    }
}


.news-highlight {
    background: var(--surface-black);
    padding: clamp(2.5rem, 6vw, 3.8rem) 0;
    color: #ffffff;
}

.news-highlight__header {
    text-align: center;
    margin-bottom: clamp(1.6rem, 4vw, 2.4rem);
}

.news-highlight__header h2,
.news-highlight__header .heading {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
}

.news-highlight__card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: clamp(280px, 48vw, 420px);
    display: flex;
    align-items: center;
    background: #0b1320;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.news-highlight__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5, 12, 20, 0.88) 0%, rgba(5, 12, 20, 0.55) 45%, rgba(5, 12, 20, 0.1) 70%, rgba(5, 12, 20, 0) 100%);
    z-index: 1;
}

.news-highlight__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--news-highlight-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.news-highlight__content {
    position: relative;
    z-index: 2;
    max-width: clamp(18rem, 45vw, 32rem);
    padding: clamp(1.8rem, 6vw, 3.2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.4vw, 1.5rem);
}

.news-highlight__content h3 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.15;
}

.news-highlight__subtext {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(226, 232, 240, 0.9);
}

.news-highlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.news-highlight__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.btn--secondary,
.news-highlight__button--secondary {
    background: rgba(11, 20, 32, 0.35);
    color: rgba(226, 232, 240, 0.92);
    border-color: rgba(226, 232, 240, 0.35);
}

.btn--secondary:hover,
.btn--secondary:focus-visible,
.news-highlight__button--secondary:hover,
.news-highlight__button--secondary:focus-visible {
    background: rgba(11, 20, 32, 0.55);
    border-color: rgba(226, 232, 240, 0.55);
    transform: none;
}

@media (max-width: 767.98px) {
    .news-highlight__card {
        min-height: 420px;
        align-items: flex-end;
    }

    .news-highlight__card::before {
        background: linear-gradient(180deg, rgba(5, 12, 20, 0) 20%, rgba(5, 12, 20, 0.7) 55%, rgba(5, 12, 20, 0.92) 100%);
    }

    .news-highlight__card::after {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .news-highlight__content {
        max-width: none;
        width: 100%;
        padding: clamp(1.6rem, 7vw, 2.4rem);
    }

    .news-highlight__actions {
        justify-content: center;
    }
}

/* 404 Error Page */
.error-hero {
    background: radial-gradient(circle at top, rgba(36, 255, 159, 0.12), rgba(0, 0, 0, 0.95) 65%);
    padding: clamp(4rem, 8vw, 6rem) 0;
    color: #ffffff;
    text-align: center;
}

.error-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.error-hero__emoji {
    font-size: clamp(3rem, 10vw, 5rem);
}

.error-hero h1,
.error-hero .heading {
    margin: 0;
    font-size: clamp(2rem, 6vw, 3rem);
}

.error-hero p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.78);
}

.error-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.error-suggestions {
    background: var(--surface-black);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.error-suggestions__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #ffffff;
}

.error-suggestions__inner h2,
.error-suggestions__inner .heading {
    margin: 0;
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
}

.error-suggestions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 3vw, 1.8rem);
}

.error-card {
    background: rgba(20, 24, 32, 0.85);
    border: 1px solid rgba(36, 255, 159, 0.18);
    border-radius: 18px;
    padding: clamp(1.6rem, 4vw, 2rem);
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.error-card:hover,
.error-card:focus-visible {
    transform: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.error-card__title {
    font-size: 1.1rem;
    font-weight: 700;
}

.error-card__text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Reusable button variants (legacy class aliases kept for compatibility) */
.btn--primary,
.cta-button,
.editor-picks-button,
.cloud-easy__cta,
.controller-card__cta,
.news-highlight__button--primary {
    background-color: #14b866;
    color: #06371f;
    text-decoration: none;
    padding: .75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

.btn--primary:hover,
.btn--primary:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.editor-picks-button:hover,
.editor-picks-button:focus-visible,
.cloud-easy__cta:hover,
.cloud-easy__cta:focus-visible,
.controller-card__cta:hover,
.controller-card__cta:focus-visible,
.news-highlight__button--primary:hover,
.news-highlight__button--primary:focus-visible {
    background-color: #5acd94;
    color: #06371f;
}

.legal-page {
    padding: calc(72px + clamp(2rem, 5vw, 4rem)) 0 clamp(3rem, 7vw, 5rem);
    background: var(--surface-black);
    color: rgba(255, 255, 255, 0.86);
    align-self: center;
}

.legal-page__container {
    max-width: 980px;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.legal-content h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.legal-content h2 {
    margin-top: 1.5rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-content h3 {
    margin-top: 1rem;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.legal-content p,
.legal-content li,
.legal-content blockquote {
    font-size: clamp(0.95rem, 1.7vw, 1.05rem);
    line-height: 1.75;
    font-weight: 300;
    text-align: justify;
}

.legal-content p {
    margin: 0;
}

.legal-content ul {
    margin: 0;
    padding-left: 1.4rem;
}

.legal-content li + li {
    margin-top: 0.5rem;
}

.legal-content a {
    color: #5acd94;
    font-weight: 700;
}

.legal-content blockquote {
    margin: 0;
    padding: 1rem 1.25rem;
    border-left: 3px solid #5acd94;
    border-radius: 14px;
    background: rgba(90, 205, 148, 0.08);
}

.legal-content hr {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 1rem 0;
}

.section-kicker {
    margin: 0;
    color: #5acd94;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blogs-hero,
.blogs-list,
.blog-detail {
    background: var(--surface-black);
}

.blogs-hero {
    padding: calc(72px + clamp(2.4rem, 6vw, 4.5rem)) 0 clamp(2rem, 5vw, 3.5rem);
}

.blogs-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
}

.blogs-hero__inner h1,
.blogs-hero__inner .heading {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2.2rem, 5vw, 3rem);
}

.blogs-hero__inner p:not(.section-kicker) {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 500;
    line-height: 1.6;
}

.blogs-list {
    padding: 0 0 clamp(3rem, 7vw, 5rem);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.blog-card {
    height: 100%;
}

.blog-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    color: #ffffff;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.blog-card__link:hover,
.blog-card__link:focus-visible {
    border-color: rgba(90, 205, 148, 0.7);
    background: rgba(90, 205, 148, 0.08);
    transform: translateY(-3px);
}

.blog-card__media {
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.8rem;
    padding: clamp(1rem, 2vw, 1.35rem);
}

.blog-card__meta,
.blog-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    font-weight: 500;
}

.blog-card__meta span + span::before,
.blog-detail__meta span + span::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    vertical-align: middle;
}

.blog-card h2 {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.25;
    font-weight: 900;
}

.blog-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

.blog-card__tags,
.blog-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
}

.blog-card__tags span,
.blog-detail__tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(90, 205, 148, 0.12);
    color: #8cf0bc;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 500;
}

.blog-detail {
    padding: calc(72px + clamp(1.6rem, 5vw, 3.2rem)) 0 clamp(3rem, 7vw, 5rem);
}

.blog-detail__container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.blog-breadcrumbs {
    margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.blog-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
    font-weight: 500;
}

.blog-breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.45rem;
    color: rgba(255, 255, 255, 0.32);
}

.blog-breadcrumbs a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.blog-breadcrumbs a:hover,
.blog-breadcrumbs a:focus-visible {
    color: #5acd94;
}

.blog-detail__hero {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.blog-detail__hero h1 {
    margin: 0;
    max-width: 860px;
    color: #ffffff;
    line-height: 1.05;
    font-weight: 900;
    font-size: 3rem;
}

.blog-detail__hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    line-height: 1.65;
}

.blog-detail__image {
    margin: clamp(1.5rem, 4vw, 2.4rem) 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
}

.blog-detail__image img {
    width: 100%;
    max-height: 520px;
    display: block;
    object-fit: cover;
}

.blog-detail__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 500;
}

.blog-detail__content h2,
.blog-detail__content h3 {
    margin: 1.25rem 0 0;
    color: #ffffff;
    line-height: 1.25;
    font-weight: 700;
}

.blog-detail__content h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
}

.blog-detail__content h3 {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.blog-detail__content p,
.blog-detail__content li,
.blog-detail__content table {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(0.95rem, 1.7vw, 1.08rem);
    font-weight: 500;
    line-height: 1.75;
}

.blog-detail__content ul,
.blog-detail__content ol {
    margin: 0;
    padding-left: 1.4rem;
}

.blog-detail__content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.blog-detail__content th,
.blog-detail__content td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
    font-weight: 500;
    line-height: 1.55;
}

.blog-detail__content th {
    color: #ffffff;
    font-weight: 700;
    background: rgba(90, 205, 148, 0.12);
}

.blog-detail__content tr:last-child td {
    border-bottom: 0;
}

.blog-detail__content a {
    color: #5acd94;
    font-weight: 500;
}

.blog-detail__content strong,
.blog-detail__content b {
    font-weight: 700;
}

.blog-detail__footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-top: clamp(1rem, 3vw, 1.6rem);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-detail__footer h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
}

.blog-empty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
}

.blog-empty h1,
.blog-empty h2,
.blog-empty p {
    margin: 0;
}

@media (max-width: 767.98px) {
    .blogs-hero {
        padding-top: calc(72px + 2rem);
    }

    .blogs-hero__inner {
        align-items: flex-start;
        text-align: left;
    }

    .blog-card__link {
        border-radius: 18px;
    }

    .blog-detail__image {
        border-radius: 18px;
    }

    .blog-detail__content {
        overflow-x: auto;
    }

    .blog-detail__content table {
        min-width: 680px;
    }
}
