/* Home Page */
.home-page {
    --home-h1: clamp(3.5rem, 6.2vw, 5.45rem);
    --home-h2: clamp(2rem, 4vw, 3.3rem);
}

.home-page {
    position: relative;
    min-height: calc(100vh - 88px);
    overflow: clip;
    color: var(--home-text);
    background:
        radial-gradient(circle at 84% 3%, rgba(244, 185, 0, 0.07), transparent 25rem),
        linear-gradient(180deg, #050505 0%, #080809 55%, #050505 100%);
}

.home-page::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.017) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.017) 1px, transparent 1px);
    background-size: 72px 72px;
    content: '';
    mask-image: linear-gradient(to bottom, #000, transparent 48%);
}

.home-section {
    padding-block: clamp(4.5rem, 7vw, 6.5rem);
}

.home-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    color: var(--home-gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-eyebrow span {
    display: inline-grid;
    min-width: 27px;
    height: 21px;
    padding-inline: 4px;
    border: 1px solid rgba(244, 185, 0, 0.36);
    place-items: center;
    color: #ffda5a;
    font-size: 0.56rem;
    letter-spacing: 0;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 34px;
}

.section-heading h2,
.final-cta h2 {
    margin: 0;
    color: var(--home-text);
    font-size: var(--home-h2);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.section-heading>p:last-child {
    margin: 12px 0 0;
    color: var(--home-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-heading--compact {
    margin-bottom: 28px;
}

/* Hero */
.home-hero {
    position: relative;
    min-height: min(740px, calc(100vh - 84px));
    overflow: hidden;
}

.home-hero__ambient {
    position: absolute;
    top: 3%;
    right: -4%;
    width: min(60vw, 820px);
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(244, 185, 0, 0.09), rgba(244, 185, 0, 0.012) 43%, transparent 68%);
}

.home-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 6rem);
    min-height: inherit;
    padding-block: clamp(3rem, 5.8vw, 5rem) 3rem;
}

.home-hero__content {
    max-width: 720px;
}

.home-hero h1 {
    margin: 0;
}

.home-hero__brand {
    display: block;
    margin-bottom: 8px;
    color: var(--home-gold);
    font-size: clamp(1rem, 1.7vw, 1.4rem);
    font-weight: 800;
    line-height: 1;
}

.home-hero__statement {
    display: block;
    color: var(--home-text);
    font-size: var(--home-h1);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.95;
}

.home-hero__statement em {
    color: #aeb0b5;
    font-style: normal;
    font-weight: 520;
}

.home-hero__lead {
    max-width: 590px;
    margin: 25px 0 0;
    color: var(--home-muted);
    font-size: clamp(1rem, 1.35vw, 1.08rem);
    line-height: 1.8;
}

/* Buttons */
.home-hero__actions,
.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home-btn {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.home-btn i {
    font-size: 1.2rem;
}

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

.home-btn--primary {
    color: #171200;
    background: var(--home-gold);
}

.home-btn--primary:hover {
    color: #171200;
    background: var(--home-gold-light);
}

.home-btn--secondary {
    color: #e6e6e8;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.025);
}

.home-btn--secondary:hover {
    color: #fff;
    border-color: rgba(244, 185, 0, 0.55);
    background: rgba(244, 185, 0, 0.055);
}

.home-hero__support {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 26px;
    margin-top: clamp(2.6rem, 4vw, 4rem);
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--home-dim);
    font-size: 0.74rem;
    font-weight: 650;
}

.home-hero__support span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-hero__support i {
    color: #94969b;
    font-size: 1rem;
}

.home-hero__support span:first-child i {
    color: var(--home-green);
    font-size: 0.45rem;
}

/* Hero Visual */
.hero-emblem {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
}

.hero-emblem::before,
.hero-emblem::after {
    position: absolute;
    width: 68%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    content: '';
}

.hero-emblem::before {
    top: 18%;
}

.hero-emblem::after {
    bottom: 18%;
}

.hero-emblem__rings {
    position: absolute;
    width: min(460px, 38vw);
    aspect-ratio: 1;
}

.hero-emblem__ring,
.hero-emblem__arc {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.hero-emblem__ring--outer {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-emblem__ring--middle {
    inset: 10%;
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.hero-emblem__arc {
    inset: 4%;
    border: 2px solid transparent;
    border-top-color: rgba(255, 208, 40, 0.72);
    border-right-color: rgba(255, 208, 40, 0.13);
    transform: rotate(-38deg);
}

.hero-emblem__logo {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(290px, 25vw);
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    place-items: center;
    background: #080808;
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.5), 0 0 0 13px rgba(255, 255, 255, 0.018);
    animation: home-logo-float 8s ease-in-out infinite;
}

.hero-emblem__logo img {
    width: 118%;
    height: 118%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-emblem__label {
    position: absolute;
    z-index: 3;
    color: #66686d;
    font: 700 0.56rem/1.2 Arial, sans-serif;
    letter-spacing: 0.17em;
}

.hero-emblem__label--top {
    top: 14%;
    right: 7%;
}

.hero-emblem__label--bottom {
    bottom: 14%;
    left: 7%;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-emblem__label--bottom span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--home-green);
}

.hero-emblem__dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--home-gold);
    box-shadow: 0 0 0 5px rgba(244, 185, 0, 0.08);
}

.hero-emblem__dot--one {
    top: 13%;
    left: 18%;
}

.hero-emblem__dot--two {
    right: 8%;
    bottom: 27%;
    width: 4px;
    height: 4px;
    background: #e7e7e7;
}

/* Games Grid */
.games-section {
    position: relative;
    scroll-margin-top: 110px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(13, 13, 15, 0.72), transparent);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.game-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--home-text);
    background: var(--home-surface);
    text-decoration: none;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
    transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.game-card:hover {
    border-color: rgba(244, 185, 0, 0.42);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.34);
    transform: translateY(-5px);
}

.game-card__cover {
    position: relative;
    display: grid;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    place-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.game-card__cover--ready {
    background: radial-gradient(circle at 42% 48%, rgba(244, 185, 0, 0.19), transparent 30%), linear-gradient(140deg, #171409, #0b0b0c 58%, #151209);
}

.game-card__cover--ready::before {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(120deg, transparent 0 29px, rgba(255, 255, 255, 0.024) 30px 31px);
    content: '';
}

.game-card__cover-code {
    position: relative;
    z-index: 1;
    color: transparent;
    font: 900 clamp(5.5rem, 10vw, 8rem)/1 Arial, sans-serif;
    letter-spacing: -0.13em;
    -webkit-text-stroke: 1px rgba(255, 208, 40, 0.68);
    text-shadow: 0 0 42px rgba(244, 185, 0, 0.12);
    transform: translateX(-5%) skew(-8deg);
}

.game-card__slash {
    position: absolute;
    z-index: 1;
    height: 2px;
    background: var(--home-gold);
    transform: rotate(-34deg);
}

.game-card__slash--one {
    top: 26%;
    right: -2%;
    width: 45%;
}

.game-card__slash--two {
    bottom: 20%;
    left: -6%;
    width: 54%;
    opacity: 0.25;
}

.game-card__cover--soon {
    color: #62646a;
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.045), transparent 28%), #111113;
}

.game-card__cover--soon::before {
    position: absolute;
    width: 42%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    content: '';
}

.game-card__cover--soon i {
    position: relative;
    z-index: 1;
    font-size: clamp(3.5rem, 7vw, 5rem);
}

.game-card__future-code {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(255, 255, 255, 0.14);
    font: 700 0.66rem/1 Arial, sans-serif;
}

.game-card__cover-label {
    position: absolute;
    bottom: 16px;
    left: 18px;
    z-index: 2;
    color: #74767b;
    font: 700 0.52rem/1 Arial, sans-serif;
    letter-spacing: 0.17em;
}

.game-card__body {
    padding: 21px;
}

.game-card__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

.game-card__status i {
    font-size: 0.43rem;
}

.game-card__status--ready {
    color: var(--home-green);
}

.game-card__status--soon {
    color: #777980;
}

.game-card h3 {
    margin: 13px 0 4px;
    color: var(--home-text);
    font-size: clamp(1.15rem, 2vw, 1.42rem);
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.game-card p {
    margin: 0;
    color: var(--home-muted);
    font-size: 0.78rem;
}

.game-card__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 21px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #c4c5c8;
    font-size: 0.76rem;
    font-weight: 700;
}

.game-card__cta i {
    color: var(--home-gold);
    font-size: 1.15rem;
    transition: transform 190ms ease;
}

.game-card:hover .game-card__cta i {
    transform: translateX(3px);
}

/* Why */
.why-section {
    background: radial-gradient(circle at 48% 45%, rgba(255, 255, 255, 0.023), transparent 28rem);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
}

.why-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-content: center;
    min-height: 148px;
    padding: 26px clamp(1rem, 3vw, 2.5rem);
    border-right: 1px solid var(--home-line);
}

.why-grid article:first-child {
    padding-left: 0;
}

.why-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.why-grid i {
    grid-row: 1 / 3;
    color: var(--home-gold);
    font-size: 1.45rem;
}

.why-grid h3 {
    margin: 0;
    font-size: 1rem;
}

.why-grid p {
    margin: 5px 0 0;
    color: var(--home-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

/* FAQ */
.faq-section {
    background: linear-gradient(180deg, transparent, rgba(13, 13, 15, 0.72));
}

.faq-section__layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.68fr) minmax(500px, 1.32fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.faq-list {
    border-top: 1px solid var(--home-line);
}

.faq-item {
    border-bottom: 1px solid var(--home-line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border: 0;
    color: #d9dadd;
    background: transparent;
    font-size: 0.96rem;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
}

.faq-item button i {
    flex: 0 0 auto;
    color: var(--home-dim);
    font-size: 1.2rem;
    transition: transform 180ms ease, color 180ms ease;
}

.faq-item button[aria-expanded='true'] {
    color: var(--home-text);
}

.faq-item button[aria-expanded='true'] i {
    color: var(--home-gold);
    transform: rotate(45deg);
}

.faq-item__answer p {
    max-width: 650px;
    margin: -3px 0 20px;
    color: var(--home-muted);
    font-size: 0.87rem;
    line-height: 1.7;
}

.faq-item__answer[hidden] {
    display: none;
}

/* Final CTA */
.final-cta {
    padding: clamp(3.2rem, 5vw, 4.5rem) 0;
    background: #0d0d0f;
}

.final-cta__panel {
    position: relative;
    display: flex;
    min-height: 190px;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: radial-gradient(circle at 90% 50%, rgba(244, 185, 0, 0.12), transparent 24rem), #111113;
}

.final-cta__panel::after {
    position: absolute;
    top: 50%;
    right: -90px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(244, 185, 0, 0.15);
    border-radius: 50%;
    content: '';
    transform: translateY(-50%);
}

.final-cta__panel>div {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.final-cta__actions {
    flex: 0 0 auto;
    margin-top: 0;
}

/* Accessibility */
.home-page a:focus-visible,
.home-page button:focus-visible {
    outline: 2px solid var(--home-gold);
    outline-offset: 4px;
}

@keyframes home-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive: Desktop / Tablet */
@media (max-width: 1080px) {
    .home-hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
        gap: 2rem;
    }

    .hero-emblem__rings {
        width: min(410px, 39vw);
    }

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

}

@media (max-width: 960px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero__layout {
        grid-template-columns: minmax(0, 1fr);
        padding-block: 4rem 2.5rem;
    }

    .home-hero__content {
        max-width: 760px;
    }

    .hero-emblem {
        min-height: 420px;
    }

    .hero-emblem__rings {
        width: 390px;
        max-width: 78vw;
    }

    .hero-emblem__logo {
        width: 245px;
        max-width: 50vw;
    }

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

    .faq-section__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }

    .faq-section .section-heading {
        margin-bottom: 0;
    }

}

/* Responsive: Mobile */
@media (max-width: 720px) {
.home-section {
        padding-block: 4.2rem;
    }

    .home-hero__layout {
        padding-block: 3.4rem 3.8rem;
    }

    .hero-emblem {
        display: none;
    }

    .home-hero__support {
        margin-top: 2.4rem;
    }

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

    .why-grid article,
    .why-grid article:first-child,
    .why-grid article:last-child {
        min-height: 112px;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--home-line);
    }

    .why-grid article:last-child {
        border-bottom: 0;
    }

    .final-cta__panel {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
    }

    .final-cta__actions {
        width: 100%;
    }

}

@media (max-width: 560px) {
    .home-page {
        --home-h1: clamp(2.55rem, 13vw, 3.4rem);
        --home-h2: clamp(1.8rem, 9vw, 2.4rem);
    }
.home-section {
        padding-block: 3.6rem;
    }

    .home-eyebrow {
        margin-bottom: 13px;
        font-size: 0.61rem;
        letter-spacing: 0.13em;
    }

    .home-hero__layout {
        padding-block: 2.8rem 3.2rem;
    }

    .home-hero__statement {
        line-height: 0.98;
    }

    .home-hero__lead {
        margin-top: 19px;
        font-size: 0.94rem;
    }

    .home-hero__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        margin-top: 25px;
    }

    .home-hero__support {
        gap: 10px 17px;
        margin-top: 2rem;
        padding-top: 17px;
        font-size: 0.66rem;
    }

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

    .game-card__cover {
        aspect-ratio: 16 / 9.5;
    }

    .game-card__body {
        padding: 19px;
    }

    .faq-item button {
        min-height: 68px;
        font-size: 0.9rem;
    }

    .final-cta {
        padding-block: 2.8rem;
    }

    .final-cta__panel {
        padding: 1.7rem 1.3rem;
    }

    .final-cta__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

}

@media (max-width: 350px) {
.home-hero__support span:nth-child(2) {
        display: none;
    }

    .game-card__body {
        padding: 17px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
.hero-emblem__logo {
        animation: none;
    }

    .home-btn,
    .game-card,
    .game-card__cta i,
    .faq-item button i {
        transition: none;
    }

    .home-btn:hover,
    .game-card:hover:hover {
        transform: none;
    }
}
/* Database-backed game cards */
.game-card__cover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card__cover--closed,
.game-card__cover--maintenance {
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.05), transparent 32%), #111113;
}

.game-card__cover--closed::after,
.game-card__cover--maintenance::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 8, 9, 0.08), rgba(8, 8, 9, 0.52));
    content: '';
    pointer-events: none;
}

.game-card__status--closed {
    color: #a3a5aa;
}

.game-card__status--maintenance {
    color: #e8b849;
}

.game-card__cover-label {
    max-width: calc(100% - 36px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-card__cta > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.games-empty {
    display: grid;
    min-height: 250px;
    place-items: center;
    align-content: center;
    padding: 42px 24px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.018);
}

.games-empty > i {
    margin-bottom: 14px;
    color: var(--home-gold);
    font-size: 2rem;
}

.games-empty h3 {
    margin: 0;
    color: var(--home-text);
    font-size: 1rem;
}

.games-empty p {
    max-width: 520px;
    margin: 8px 0 0;
    color: var(--home-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

/* Home V2 — MOD storefront / featured games */
.games-section__heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.games-section__heading-row .section-heading {
    margin-bottom: 0;
}

.games-section__all {
    flex: 0 0 auto;
}

.games-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.game-card {
    border-radius: 14px;
}

.game-card__cover {
    aspect-ratio: 1 / 1;
}

.game-card__cover-image {
    object-fit: cover;
    object-position: center;
}

.game-card__cover-label {
    display: none;
}

.game-card__body {
    padding: 16px;
}

.game-card h3 {
    margin-top: 10px;
    font-size: 1rem;
}

.game-card p {
    display: -webkit-box;
    min-height: 2.7em;
    overflow: hidden;
    font-size: 0.72rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.game-card__cta {
    margin-top: 14px;
    padding-top: 12px;
    font-size: 0.68rem;
}

.final-cta__description {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--home-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

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

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

@media (max-width: 720px) {
    .games-section__heading-row {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .games-section__all {
        align-self: flex-start;
    }

    .games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .game-card__body {
        padding: 12px;
    }

    .game-card__status {
        font-size: 0.61rem;
    }

    .game-card h3 {
        margin: 8px 0 3px;
        font-size: 0.88rem;
    }

    .game-card p {
        min-height: 2.45em;
        font-size: 0.64rem;
        -webkit-line-clamp: 2;
    }

    .game-card__cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        margin-top: 10px;
        padding-top: 9px;
        font-size: 0.61rem;
    }
}

@media (max-width: 420px) {
    .games-grid {
        gap: 8px;
    }

    .game-card {
        border-radius: 11px;
    }

    .game-card__body {
        padding: 10px;
    }

    .game-card h3 {
        font-size: 0.82rem;
    }

    .game-card p {
        font-size: 0.6rem;
    }
}
