.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000080;
    z-index: 100;
    animation: backdrop-fade-in .2s ease-out
}

@keyframes backdrop-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.sidebar {
    background-color: gold;
    background-image: url(/images/assest/search-gold.svg);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    box-shadow: 2px 0 20px #00000026;
    z-index: 101;
    transform: translate(-100%);
    transition: transform .3s ease-out;
    display: flex;
    flex-direction: column;
    width: 100vw
}

.sidebar--open {
    transform: translate(0)
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem 1rem;
    background: #0000000d;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.sidebar-back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #fff3;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all .2s ease;
    color: #000c;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.sidebar-back-button:hover {
    background: #ffffff4d;
    transform: scale(1.05)
}

.sidebar-back-button:active {
    transform: scale(.95)
}

.sidebar-title {
    flex: 1;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000e6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .1)
}

.sidebar-content {
    padding: 1.5rem;
    overflow-y: auto;
    overflow-x: hidden
}

.sidebar-content::-webkit-scrollbar {
    width: 6px
}

.sidebar-content::-webkit-scrollbar-track {
    background: #0000001a;
    border-radius: 3px
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: #0003;
    border-radius: 3px
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #0000004d
}

@media(min-width:640px) {
    .sidebar {
        width: 70vw;
        max-width: 500px
    }
}

@media(min-width:1024px) {
    .sidebar {
        width: 480px
    }
}

@media(min-width:1440px) {
    .sidebar {
        width: 600px
    }
}

@media(min-width:1920px) {
    .sidebar {
        width: 700px
    }
}

@media(min-width:640px) {
    .sidebar-backdrop {
        animation-duration: .25s
    }

    .sidebar {
        transition: transform .35s cubic-bezier(.25, .46, .45, .94)
    }
}

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

    .sidebar,
    .sidebar-backdrop,
    .sidebar-back-button {
        transition: none;
        animation: none
    }
}

.sidebar-back-button:focus-visible {
    outline: 2px solid rgba(0, 0, 0, .5);
    outline-offset: 2px
}

.account-sidebar-items {
    width: 100%;
    box-sizing: border-box
}

.account-sidebar-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, .15)
}

.account-sidebar-header h3 {
    color: #fffffff2;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 .5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .5)
}

.account-sidebar-header p {
    color: #fffc;
    font-size: .875rem;
    margin: 0
}

.account-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.account-sidebar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: #0009;
    border: 2px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    cursor: pointer;
    transition: all .2s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.account-sidebar-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--item-color, var(--accent-green)) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none
}

.account-sidebar-item:hover:before {
    opacity: .15
}

.account-sidebar-item:hover {
    border-color: var(--item-color, var(--accent-green));
    transform: translate(4px);
    background-color: #000c;
    box-shadow: 0 4px 20px #00000080
}

.account-sidebar-item:active {
    transform: translate(2px)
}

.account-sidebar-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff26;
    border-radius: 10px;
    color: var(--item-color, var(--accent-green));
    transition: all .2s ease;
    position: relative;
    z-index: 1
}

.account-sidebar-item:hover .account-sidebar-item-icon {
    background-color: var(--item-color, var(--accent-green));
    color: #0a0a0a;
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--item-color, var(--accent-green))
}

.account-sidebar-item-label {
    flex: 1;
    color: #fffffff2;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    transition: color .2s ease
}

.account-sidebar-item:hover .account-sidebar-item-label {
    color: var(--item-color, var(--accent-green));
    font-weight: 600
}

.account-sidebar-item-arrow {
    flex-shrink: 0;
    color: #ffffff80;
    transition: all .2s ease;
    position: relative;
    z-index: 1
}

.account-sidebar-item:hover .account-sidebar-item-arrow {
    color: var(--item-color, var(--accent-green));
    transform: translate(4px)
}

@media(max-width:768px) {
    .account-sidebar-header {
        margin-bottom: 1.5rem
    }

    .account-sidebar-header h3 {
        font-size: 1.25rem
    }

    .account-sidebar-item {
        padding: .875rem 1rem
    }

    .account-sidebar-item-icon {
        width: 36px;
        height: 36px
    }

    .account-sidebar-item-label {
        font-size: .9375rem
    }
}

@media(min-width:1440px) {
    .account-sidebar-header h3 {
        font-size: 1.75rem
    }

    .account-sidebar-header p {
        font-size: 1rem
    }

    .account-sidebar-item {
        padding: 1.25rem 1.5rem
    }

    .account-sidebar-item-icon {
        width: 48px;
        height: 48px
    }

    .account-sidebar-item-label {
        font-size: 1.125rem
    }

    .account-sidebar-list {
        gap: 1rem
    }
}

@media(min-width:1920px) {
    .account-sidebar-item {
        padding: 1.5rem 1.75rem
    }

    .account-sidebar-item-icon {
        width: 52px;
        height: 52px
    }

    .account-sidebar-item-label {
        font-size: 1.25rem
    }
}

.account-sidebar-item:focus {
    outline: none;
    border-color: var(--item-color, var(--accent-green));
    box-shadow: 0 0 0 3px #3fb6834d;
    background-color: #000c
}

.account-sidebar-item:focus .account-sidebar-item-icon {
    background-color: var(--item-color, var(--accent-green));
    color: #0a0a0a;
    box-shadow: 0 0 20px var(--item-color, var(--accent-green))
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translate(-20px)
    }

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

.account-sidebar-list .account-sidebar-item:nth-child(1) {
    animation: slideInFromLeft .3s ease forwards
}

.account-sidebar-list .account-sidebar-item:nth-child(2) {
    animation: slideInFromLeft .3s ease .05s forwards
}

.account-sidebar-list .account-sidebar-item:nth-child(3) {
    animation: slideInFromLeft .3s ease .1s forwards
}

.account-sidebar-list .account-sidebar-item:nth-child(4) {
    animation: slideInFromLeft .3s ease .15s forwards
}

.account-sidebar-list .account-sidebar-item:nth-child(5) {
    animation: slideInFromLeft .3s ease .2s forwards
}

.search-sidebar {
    height: 100%;
    overflow: visible;
    background-color: transparent
}

.search-sidebar-loading {
    color: #000c;
    text-align: center;
    padding: 2rem;
    font-size: 1rem
}

.search-sidebar-header {
    margin-bottom: 1rem
}

.search-bar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #fffffff2;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    transition: all .2s ease;
    box-shadow: 0 2px 8px #00000014
}

.search-bar-wrapper:focus-within {
    background-color: #fff;
    box-shadow: 0 4px 12px #0000001f
}

.search-bar-icon {
    flex-shrink: 0;
    color: #96969699;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s ease
}

.search-bar-wrapper:focus-within .search-bar-icon {
    color: #646464cc
}

.search-bar-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #323232e6;
    font-size: 1rem;
    font-weight: 400;
    padding: 0
}

.search-bar-input::-moz-placeholder {
    color: #b4b4c8cc;
    font-weight: 400
}

.search-bar-input::placeholder {
    color: #b4b4c8cc;
    font-weight: 400
}

.search-bar-clear {
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #96969699;
    padding: .25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .2s ease
}

.search-bar-clear:hover {
    color: #323232e6;
    background-color: #0000000d
}

.category-filters {
    margin-bottom: 1.5rem;
    overflow: hidden
}

.category-filters-scroll {
    display: flex;
    gap: .625rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: .5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .2) transparent;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch
}

.category-filters-scroll::-webkit-scrollbar {
    height: 6px
}

.category-filters-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px
}

.category-filters-scroll::-webkit-scrollbar-thumb {
    background: #0003;
    border-radius: 3px;
    -webkit-transition: background .2s ease;
    transition: background .2s ease
}

.category-filters-scroll::-webkit-scrollbar-thumb:hover {
    background: #00000059
}

.category-filter-btn {
    flex-shrink: 0;
    padding: .625rem 1.25rem;
    background-color: #fff;
    border: none;
    border-radius: 50px;
    color: #1a1a1a;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px #00000014;
    text-transform: uppercase;
    letter-spacing: .02em
}

.category-filter-btn:hover {
    background-color: #fffffff2;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px #0000001f
}

.category-filter-btn.active {
    background-color: #fff;
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 4px 12px #00000026;
    transform: scale(1.02)
}

.category-filter-btn.active:hover {
    transform: scale(1.02) translateY(-1px)
}

.section-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 1.5rem
}

.popular-games-section {
    margin-top: 2rem
}

.games-horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    margin: 0 -.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch
}

.games-horizontal-scroll::-webkit-scrollbar {
    display: none
}

.games-horizontal-list {
    display: flex;
    gap: 1rem;
    min-width: -moz-min-content;
    min-width: min-content
}

.games-horizontal-list>* {
    flex-shrink: 0;
    width: 120px;
    height: 120px
}

.search-results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding: 0 .25rem
}

.results-count {
    color: #1a1a1a;
    font-size: .875rem;
    font-weight: 600;
    background-color: #fff;
    border: none;
    padding: .5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 2px 6px #00000014
}

.clear-filters-btn {
    background-color: #fff;
    border: none;
    color: #1a1a1a;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    padding: .5rem 1rem;
    border-radius: 50px;
    transition: all .2s ease;
    box-shadow: 0 2px 6px #00000014
}

.clear-filters-btn:hover {
    background-color: #fffffff2;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px #0000001f
}

.search-apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1rem;
    padding: .5rem 0
}

.no-results {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #1a1a1a
}

.no-results svg {
    margin-bottom: 1rem;
    opacity: .5;
    color: #1a1a1a
}

.no-results p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 .5rem;
    color: #1a1a1a
}

.no-results span {
    font-size: .875rem;
    color: #1a1a1ab3
}

@media(max-width:768px) {
    .search-sidebar-header {
        margin-bottom: 1rem
    }

    .search-bar-wrapper {
        padding: .625rem .875rem
    }

    .search-bar-input {
        font-size: .9375rem
    }

    .category-filters {
        margin-bottom: 1rem
    }

    .category-filter-btn {
        padding: .4375rem .875rem;
        font-size: .8125rem
    }

    .search-apps-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: .75rem
    }

    .results-count,
    .clear-filters-btn {
        font-size: .8125rem
    }

    .search-prompt {
        padding: 3rem 1rem
    }

    .search-prompt svg {
        width: 52px;
        height: 52px
    }

    .search-prompt p {
        font-size: 1.125rem
    }

    .search-prompt span {
        font-size: .875rem
    }

    .no-results {
        padding: 2rem 1rem
    }

    .no-results svg {
        width: 40px;
        height: 40px
    }

    .no-results p {
        font-size: 1rem
    }

    .no-results span {
        font-size: .8125rem
    }
}

@media(min-width:769px)and (max-width:1024px) {
    .search-apps-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr))
    }
}

@media(min-width:1440px) {
    .search-apps-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 1.25rem
    }
}

@media(min-width:1920px) {
    .search-apps-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1.5rem
    }

    .search-bar-wrapper {
        padding: 1rem 1.25rem
    }

    .search-bar-input {
        font-size: 1.0625rem
    }
}

.category-filter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00000026
}

.search-bar-clear:focus {
    outline: none;
    box-shadow: 0 0 0 2px #00000026
}

.clear-filters-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #00000026
}

.search-sidebar {
    scroll-behavior: smooth
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

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

.search-apps-grid>* {
    animation: fadeInUp .3s ease forwards
}

.search-apps-grid>*:nth-child(1) {
    animation-delay: .05s
}

.search-apps-grid>*:nth-child(2) {
    animation-delay: .1s
}

.search-apps-grid>*:nth-child(3) {
    animation-delay: .15s
}

.search-apps-grid>*:nth-child(4) {
    animation-delay: .2s
}

.search-apps-grid>*:nth-child(5) {
    animation-delay: .25s
}

.search-apps-grid>*:nth-child(6) {
    animation-delay: .3s
}

.app-icon-card {
    position: relative;
    overflow: visible;
    cursor: pointer;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0
}

.app-icon-card:focus {
    border-radius: 1rem
}

.app-icon-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
    transition: all .2s ease;
    box-sizing: border-box
}

.app-icon-container:hover {
    box-shadow: 0 20px 25px -5px #0000001a, 0 10px 10px -5px #0000000a;
    transform: scale(1.02)
}

.app-icon-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.app-icon-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.app-icon-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none
}

.app-icon-video.show-video {
    opacity: 1
}

.app-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #000000e6, #0009, #00000040 30%, #0000 40%, #0000);
    opacity: 0;
    transition: opacity .2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 12px;
    z-index: 10;
    border-radius: 8px
}

.app-icon-card:hover .app-icon-overlay {
    opacity: 1
}

.new-app-icon-title {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    width: 100%;
    margin: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word
}

.apps-list-container {
    width: 100%;
    margin: 0;
    padding: 0
}

.apps-list-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a
}

.apps-list-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, .1);
    border-left-color: var(--primary-color, #007bff);
    border-radius: 50%;
    animation: spin 1s linear infinite
}

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

.apps-list-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    margin: 0 -.5rem;
    padding-left: .5rem;
    padding-right: .5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .2) transparent;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch
}

.apps-list-scroll::-webkit-scrollbar {
    height: 6px
}

.apps-list-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px
}

.apps-list-scroll::-webkit-scrollbar-thumb {
    background: #0003;
    border-radius: 3px;
    -webkit-transition: background .2s ease;
    transition: background .2s ease
}

.apps-list-scroll::-webkit-scrollbar-thumb:hover {
    background: #00000059
}

.apps-list-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: -moz-min-content;
    min-width: min-content
}

.apps-list-list>li {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center
}

.apps-list-list>li>* {
    width: 100%;
    height: 100%
}

@media(max-width:768px) {
    .apps-list-header {
        font-size: 1.25rem
    }

    .apps-list-list>li {
        width: 100px;
        height: 100px
    }

    .apps-list-list {
        gap: .75rem
    }
}

@media(max-width:480px) {
    .apps-list-list>li {
        width: 90px;
        height: 90px
    }

    .apps-list-list {
        gap: .5rem
    }
}

.pill-grid-item {
    position: sticky;
    top: 1rem;
    z-index: 50;
    box-sizing: border-box;
    min-width: 0;
    min-height: 0
}

.pill-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px var(--shadow-sm), 0 0 0 1px #4a6b3f1a;
    background-color: #fff;
    transition: all .3s ease-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box
}

.pill-container:hover {
    box-shadow: 0 20px 25px var(--shadow-md), 0 0 0 1px #4a6b3f26
}

.pill-section {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    position: relative
}

.pill-section:focus {
    outline: none;
    background-color: #0000000d
}

.pill-section--logo {
    flex: 1;
    padding: .5rem
}

.pill-section--logo:hover {
    background-color: #00000008;
    transform: scale(1.02)
}

.pill-section--logo:active {
    background-color: #0000000d;
    transform: scale(.98)
}

.pill-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.pill-logo-goose {
    position: absolute;
    height: 2.5rem;
    width: auto;
    display: block;
    z-index: 0;
    pointer-events: none;
    top: 50%;
    transform: translateY(-60%)
}

.pill-wordmark {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 10rem;
    height: auto;
    display: block;
    margin-top: 1rem
}

.pill-bottom-row {
    flex: 0 0 40%;
    display: flex;
    width: 100%
}

.pill-section--account {
    flex: 1;
    color: #fff;
    background-color: var(--accent-green)
}

.pill-section--account:hover {
    background-color: var(--accent-green-light);
    transform: scale(1.05)
}

.pill-section--account:active {
    background-color: var(--accent-green-dark);
    transform: scale(.98)
}

.pill-section--search {
    flex: 1;
    color: #fff;
    background-color: var(--emerald)
}

.pill-section--search:hover {
    background-color: var(--emerald-light);
    transform: scale(1.05)
}

.pill-section--search:active {
    background-color: var(--emerald-dark);
    transform: scale(.98)
}

.pill-section svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.game-grid {
    display: grid;
    grid-auto-flow: dense;
    margin: 0 auto;
    padding: 0;
    gap: 10px;
    grid-template-columns: repeat(3, 120px);
    grid-auto-rows: 120px;
    list-style-type: none;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box
}

@media(min-width:564px) {
    .game-grid {
        grid-template-columns: repeat(4, 120px)
    }
}

@media(min-width:684px) {
    .game-grid {
        grid-template-columns: repeat(5, 120px)
    }
}

@media(min-width:834px) {
    .game-grid {
        grid-template-columns: repeat(6, 120px)
    }
}

@media(min-width:954px) {
    .game-grid {
        grid-template-columns: repeat(7, 120px)
    }
}

@media(min-width:1074px) {
    .game-grid {
        grid-template-columns: repeat(8, 120px)
    }
}

@media(min-width:1224px) {
    .game-grid {
        grid-template-columns: repeat(9, 120px)
    }
}

@media(min-width:1344px) {
    .game-grid {
        grid-template-columns: repeat(10, 120px)
    }
}

@media(min-width:1464px) {
    .game-grid {
        grid-template-columns: repeat(11, 120px)
    }
}

@media(min-width:1584px) {
    .game-grid {
        grid-template-columns: repeat(12, 120px)
    }
}

@media(min-width:1704px) {
    .game-grid {
        grid-template-columns: repeat(13, 120px)
    }
}

@media(min-width:1824px) {
    .game-grid {
        grid-template-columns: repeat(14, 120px)
    }
}

@media(min-width:1944px) {
    .game-grid {
        grid-template-columns: repeat(15, 120px)
    }
}

@media(min-width:2064px) {
    .game-grid {
        grid-template-columns: repeat(16, 120px)
    }
}

@media(min-width:2184px) {
    .game-grid {
        grid-template-columns: repeat(17, 120px)
    }
}

@media(min-width:2304px) {
    .game-grid {
        grid-template-columns: repeat(18, 120px)
    }
}

.skeleton-item {
    position: relative;
    overflow: hidden
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0
    }

    to {
        background-position: 1000px 0
    }
}

.skeleton-shimmer {
    background: linear-gradient(90deg, #ffffff29, #ffffff5c, #ffffff29);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite
}

.skeleton-pill {
    width: 100%;
    height: 100%;
    background: #fff3;
    border-radius: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 8px
}

.skeleton-pill-logo {
    flex: 1;
    background: #ffffff38;
    border-radius: 4px;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #ffffff29, #ffffff5c, #ffffff29);
    background-size: 1000px 100%
}

.skeleton-pill-bottom {
    display: flex;
    gap: 8px;
    height: 30px
}

.skeleton-pill-icon {
    flex: 1;
    background: #ffffff42;
    border-radius: 4px;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #fff3, #fff6, #fff3);
    background-size: 1000px 100%
}

.skeleton-app-icon {
    width: 100%;
    height: 100%;
    background: #ffffff42;
    border-radius: 8px;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #fff3, #fff6, #fff3);
    background-size: 1000px 100%
}

.skeleton-game-frame {
    width: 100%;
    height: 100%;
    background: #fff3;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.skeleton-game-area {
    flex: 1;
    background: #ffffff2e;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #ffffff1f, #ffffff52, #ffffff1f);
    background-size: 1000px 100%
}

.skeleton-game-banner {
    height: 70px;
    background: #ffffff38;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px
}

.skeleton-game-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0
}

.skeleton-game-thumbnail {
    width: 48px;
    height: 48px;
    background: #ffffff42;
    border-radius: 6px;
    flex-shrink: 0;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #fff3, #fff6, #fff3);
    background-size: 1000px 100%
}

.skeleton-game-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0
}

.skeleton-game-title {
    height: 16px;
    width: 60%;
    background: #ffffff42;
    border-radius: 4px;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #fff3, #fff6, #fff3);
    background-size: 1000px 100%
}

.skeleton-game-developer {
    height: 12px;
    width: 40%;
    background: #ffffff38;
    border-radius: 4px;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #ffffff29, #ffffff5c, #ffffff29);
    background-size: 1000px 100%
}

.skeleton-game-actions {
    display: flex;
    gap: 8px;
    align-items: center
}

.skeleton-action-button {
    width: 60px;
    height: 36px;
    background: #ffffff3d;
    border-radius: 6px;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #ffffff29, #ffffff5c, #ffffff29);
    background-size: 1000px 100%
}

.skeleton-markdown {
    background: #ffffff24;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.skeleton-markdown-line {
    height: 16px;
    background: #ffffff38;
    border-radius: 4px;
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #ffffff29, #ffffff5c, #ffffff29);
    background-size: 1000px 100%
}

.skeleton-markdown-title {
    height: 24px;
    width: 40%;
    margin-bottom: 8px
}

.skeleton-markdown-short {
    width: 70%
}

@media(max-width:640px) {
    .skeleton-game-banner {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 12px
    }

    .skeleton-game-actions {
        justify-content: space-between
    }

    .skeleton-action-button {
        flex: 1
    }
}

@media(min-width:641px)and (max-width:1024px) {
    .skeleton-game-actions {
        gap: 6px
    }

    .skeleton-action-button {
        width: 50px;
        height: 32px
    }
}

.related-category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    list-style: none
}

.related-category-card:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
    border-radius: 12px
}

.related-category-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 2px 8px #0000001a;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0;
    overflow: hidden
}

.related-category-container:hover {
    box-shadow: 0 4px 12px #00000026;
    transform: scale(1.02)
}

.related-category-container:active {
    transform: scale(.98)
}

.related-category-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 100%;
    background-color: #f8f9fa
}

.related-category-icon-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.related-category-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    height: 100%
}

.related-category-name {
    font-size: .9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    letter-spacing: .02em
}

@media(max-width:640px) {
    .related-category-icon {
        font-size: 2rem
    }

    .related-category-name {
        font-size: .7rem
    }

    .related-category-content {
        padding: .5rem
    }
}

.search-sidebar .related-category-card {
    width: 100%;
    margin-bottom: .5rem
}

.search-sidebar .related-category-icon {
    font-size: 2rem
}

.search-sidebar .related-category-name {
    font-size: .75rem
}