:root {
    --bg-color: #050505;
    --card-bg: #111;
    --text-main: #e0e0e0;
    --color-primary: #4ecdc4;
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ff;
    --neon-yellow: #ffee00;
    --grid-color: rgba(0, 243, 255, 0.1);
    --border-color: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Breadcrumb — detail */
.breadcrumb-nav {
    margin: 8px 0 16px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.breadcrumb-list > li {
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.breadcrumb-item a:hover {
    background: rgba(0, 243, 255, 0.12);
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.2);
}

.breadcrumb-item span[aria-current="page"] {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--neon-pink);
    padding: 4px 8px;
}

.breadcrumb-separator {
    font-size: 12px;
    color: rgba(224, 224, 224, 0.45);
    user-select: none;
}

.game-star--detail {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(0, 243, 255, 0.08);
    border: 1px solid rgba(0, 243, 255, 0.35);
    box-shadow: 0 0 14px rgba(0, 243, 255, 0.15);
}

.game-star--detail .detail-rating-visual {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--neon-yellow);
    font-size: 1rem;
    line-height: 1;
}

.game-star--detail .detail-rating-visual .star-icon {
    margin-right: 0;
}

/* Rich-text list marker alignment (fix bullet indentation/marker protrusion) */
.container-game-description-text ul,
.container-game-description-text ol,
.description-box ul,
.description-box ol,
.game-description ul,
.game-description ol,
.game-desc ul,
.game-desc ol,
#game-description ul,
#game-description ol,
#overview ul,
#overview ol {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.container-game-description-text ul li,
.description-box ul li,
.game-description ul li,
.game-desc ul li,
#game-description ul li,
#overview ul li {
    list-style-type: disc !important;
    list-style-position: inside !important;
    padding-left: 0 !important;
}

.container-game-description-text ol li,
.description-box ol li,
.game-description ol li,
.game-desc ol li,
#game-description ol li,
#overview ol li {
    list-style-type: decimal !important;
    list-style-position: inside !important;
    padding-left: 0 !important;
}
.container-game-description-text h1{
    font-size: 1.5rem;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-cyan);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--bg-color);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.btn:hover::before {
    left: 0;
}

.btn-secondary {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.btn-secondary::before {
    background: var(--neon-pink);
}

.btn-secondary:hover {
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Glitch Text Effect */
.glitch {
    position: relative;
    color: white;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--neon-cyan);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(13px, 9999px, 81px, 0); }
    20% { clip: rect(109px, 9999px, 8px, 0); }
    40% { clip: rect(4px, 9999px, 127px, 0); }
    60% { clip: rect(69px, 9999px, 48px, 0); }
    80% { clip: rect(43px, 9999px, 102px, 0); }
    100% { clip: rect(98px, 9999px, 73px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(126px, 9999px, 124px, 0); }
    20% { clip: rect(6px, 9999px, 64px, 0); }
    40% { clip: rect(129px, 9999px, 30px, 0); }
    60% { clip: rect(83px, 9999px, 137px, 0); }
    80% { clip: rect(32px, 9999px, 59px, 0); }
    100% { clip: rect(27px, 9999px, 95px, 0); }
}

/* Header */
header {
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center; /* Ensure vertical alignment */
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    padding: 5px;
    font-family: 'Rajdhani', sans-serif;
    outline: none;
    width: 150px;
}

.search-bar button {
    background: transparent;
    border: none;
    color: var(--neon-cyan);
    cursor: pointer;
}

.search-bar-mobile {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    min-height: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, rgba(5, 5, 5, 1) 70%);
    padding: 40px 20px;
}

.hero-content {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content .hero-slogan {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 14px;
    line-height: 1.2;
}

.hero-content .glitch {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #aaa;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .hero-description {
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.7;
    margin-bottom: 26px;
    max-width: min(72ch, 100%);
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Game Grid */
.section-title{
    margin-bottom: 40px;
}
.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;
}
.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-left: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex: 1;
    margin: 0;
}
.section-header-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.module-link-more {
    color: var(--neon-pink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.module-link-more:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}
.section-title p{
    padding-left: 50px;
}
.section-title h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    background: var(--neon-pink);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 60% 100%, 0 100%);
    box-shadow: 0 0 10px var(--neon-pink);
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 20px;
}

/* Layout Variants (make modules feel less repetitive) */
.game-grid--list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 10px;
}

.game-grid--list .game-card > a {
    display: flex;
    gap: 18px;
    align-items: stretch;
}

.game-grid--list .game-card img {
    width: 180px;
    height: 110px;
    flex: 0 0 auto;
    object-fit: cover;
}

.game-grid--list .game-info {
    padding: 0;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.game-grid--list .game-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
    height: auto;
    -webkit-line-clamp: 2;
}

.game-grid--list .brief-comment-game {
    -webkit-line-clamp: 1;
}

.game-grid--mosaic {
    display: block;
    column-count: 3;
    column-gap: 30px;
    padding-bottom: 10px;
}

.game-grid--mosaic .game-card {
    break-inside: avoid;
    width: 100%;
    margin-bottom: 30px;
}

.game-grid--mosaic .game-card img {
    height: 170px;
}

.game-grid--mosaic .game-card:nth-child(3n + 1) img {
    height: 240px;
}

.game-grid--mosaic .game-card:nth-child(3n + 2) img {
    height: 195px;
}

.game-grid--mosaic .game-card:nth-child(3n) img {
    height: 150px;
}

/* Dense grid: varied sizes, minimal whitespace (CSS Grid auto dense) */
.game-grid--dense {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    grid-auto-flow: dense;
    padding-bottom: 10px;
}

.game-grid--dense .game-card {
    grid-column: span 4;
}

.game-grid--dense .game-card img {
    height: 180px;
}

/* A few bigger tiles to break repetition */
.game-grid--dense .game-card:nth-child(10n + 1) {
    grid-column: span 8;
}

.game-grid--dense .game-card:nth-child(10n + 1) img {
    height: 240px;
}

.game-grid--dense .game-card:nth-child(10n + 4) {
    grid-column: span 6;
}

.game-grid--dense .game-card:nth-child(10n + 4) img {
    height: 220px;
}

.game-grid--dense .game-card:nth-child(10n + 7) {
    grid-column: span 6;
}

.game-grid--dense .game-card:nth-child(10n + 7) img {
    height: 200px;
}

/* Cover grid: uniform height cards, no row gaps */
.game-grid--cover {
    display: grid;
    /* Keep desktop at ~3 columns (avoid squeezing to 4) */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
    padding-bottom: 10px;
}

.game-grid--cover .game-card {
    border-color: rgba(0, 243, 255, 0.18);
}

.game-grid--cover .game-card > a {
    display: block;
    position: relative;
}

.game-grid--cover .game-card img {
    height: 260px;
    filter: none;
}

.game-grid--cover .game-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 16px 14px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.78) 60%, rgba(0,0,0,0.88) 100%);
}

.game-grid--cover .game-title {
    margin-bottom: 8px;
    height: auto;
    -webkit-line-clamp: 2;
}

.game-grid--cover .game-rating {
    margin-bottom: 0;
}

.game-grid--cover .brief-comment-game {
    display: none;
}

/* Spotlight grid: first card featured, rest compact */
.game-grid--spotlight {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 26px;
    padding-bottom: 10px;
}

.game-grid--spotlight .game-card {
    grid-column: span 4;
}

.game-grid--spotlight .game-card img {
    height: 200px;
    filter: none;
}

.game-grid--spotlight .game-card:nth-child(1) {
    grid-column: span 8;
}

.game-grid--spotlight .game-card:nth-child(1) img {
    height: 320px;
}

.game-grid--spotlight .game-card:nth-child(1) .game-title {
    font-size: 1.6rem;
}

.game-grid--spotlight .game-card:nth-child(1) .brief-comment-game {
    -webkit-line-clamp: 3;
}

.game-grid--spotlight .game-card:nth-child(2) .brief-comment-game {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.game-grid--spotlight .game-card:not(:nth-child(1)):not(:nth-child(2)) .brief-comment-game {
    display: none;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    border-color: var(--neon-cyan);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: grayscale(40%);
    transition: filter 0.3s ease;
}

.game-card:hover img {
    filter: grayscale(0%);
}

.game-info {
    padding: 20px;
}

.game-category {
    color: var(--neon-pink);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.game-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.game-rating {
    color: var(--neon-yellow);
    margin-bottom: 15px;
}

.brief-comment-game {
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
    color: rgba(224, 224, 224, 0.75);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Keep card height stable */
    overflow: hidden;
    word-break: break-word;
}

/* Footer */
footer {
    background: #000;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .footer-title {
    color: var(--neon-cyan);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #888;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: white;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
}

.page-btn:hover, .page-btn.active {
    background: var(--neon-cyan);
    color: black;
    border-color: var(--neon-cyan);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Changed from center to flex-start */
        padding-top: 50px; /* Add padding top */
        gap: 30px; /* Increase gap */
        transition: left 0.3s ease;
        border-right: 1px solid var(--neon-cyan);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-container > .search-bar {
        display: none; /* Hide desktop search bar */
    }
    
    .search-bar-mobile {
        display: block; /* Show container */
        width: 80%;
    }

    /* Style the inner search bar for mobile */
    .search-bar-mobile .search-bar {
        display: flex;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid var(--neon-cyan);
        box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    }
    
    .search-bar-mobile input {
        width: 100%; /* Full width input */
        font-size: 1.1rem; /* Larger text */
    }

    .search-bar-mobile button {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1rem; /* Reduced from 1.8rem */
        padding-left: 10px; /* Adjust padding for smaller icon */
        margin-bottom: 20px;
    }
    .section-header-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
    .section-header-actions {
        flex-shrink: 0;
    }
    .section-title h2 {
        font-size: 1.4rem;
        padding-left: 40px;
    }
    .section-title p{
        padding-left: 10px;
    }

    .section-title::before {
        width: 15px;
        height: 15px;
    }
    .section-title h2::after {
        left: 30px;
        height: 20px;
        width: 3px;
    }

    /* Mobile Game Grid: 2 columns */
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; /* Reduced gap */
    }

    .game-card img {
        height: 100px; /* Further reduce image height */
    }

    .game-title {
        font-size: 0.9rem; /* Smaller title */
        margin-bottom: 5px;
        line-height: 1.2;
        height: 2.4em; /* 2 lines * 1.2 line-height */
    }

    .game-category {
        font-size: 0.7rem; /* Smaller category */
        margin-bottom: 2px;
    }

    .game-rating {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .game-info {
        padding: 8px; /* Compact padding */
    }

    /* Responsive for layout variants */
    .game-grid--list {
        gap: 16px;
    }

    .game-grid--list .game-card > a {
        gap: 12px;
    }

    .game-grid--list .game-card img {
        width: 130px;
        height: 85px;
    }

    .game-grid--mosaic {
        column-count: 2;
        column-gap: 18px;
    }

    .game-grid--mosaic .game-card {
        margin-bottom: 18px;
    }

    .game-grid--mosaic .game-card img {
        height: 140px;
    }

    .game-grid--mosaic .game-card:nth-child(3n + 1) img {
        height: 190px;
    }

    .game-grid--mosaic .game-card:nth-child(3n + 2) img {
        height: 160px;
    }

    .game-grid--mosaic .game-card:nth-child(3n) img {
        height: 120px;
    }

    .game-grid--dense {
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }

    .game-grid--dense .game-card {
        grid-column: span 3; /* 2 tiles per row baseline */
    }

    .game-grid--dense .game-card img {
        height: 120px;
    }

    .game-grid--dense .game-card:nth-child(10n + 1) {
        grid-column: span 6;
    }

    .game-grid--dense .game-card:nth-child(10n + 1) img {
        height: 160px;
    }

    .game-grid--dense .game-card:nth-child(10n + 4),
    .game-grid--dense .game-card:nth-child(10n + 7) {
        grid-column: span 3;
    }

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

    .game-grid--cover .game-card img {
        height: 150px;
    }

    .game-grid--spotlight {
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
    }

    .game-grid--spotlight .game-card {
        grid-column: span 3; /* 2 per row baseline */
    }

    .game-grid--spotlight .game-card img {
        height: 130px;
    }

    .game-grid--spotlight .game-card:nth-child(1) {
        grid-column: span 6;
    }

    .game-grid--spotlight .game-card:nth-child(1) img {
        height: 200px;
    }
}

/* Unified single-line truncation for game titles in lists */
.game-title,
.title-game,
.title-similar-game,
.card-title,
.sidebar-game-title,
.recommended-name,
.new-game-title {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-info,
.container-game-info,
.sidebar-game-info,
.card-content,
.recommended-info,
.game-meta {
  min-width: 0;
}

/* Unified star rating render */
.game-star {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 0.85rem;
    color: #ffd700;
    min-height: 1.1em;
}

.game-star .star-icon,
.game-star .star-full,
.game-star .star-empty,
.game-star .fa,
.game-star .fas,
.game-star .far {
    color: inherit;
}

.game-star .star-placeholder {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 215, 0, 0.55);
    letter-spacing: 1px;
    white-space: nowrap;
    animation: starPlaceholderPulse 1.1s ease-in-out infinite;
}

@keyframes starPlaceholderPulse {
    0% { opacity: 0.45; }
    50% { opacity: 0.95; }
    100% { opacity: 0.45; }
}

/* Match rendered star_html structure */
.game-star .star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: inherit;
    color: inherit;
    line-height: 1;
}

.game-star .star-rating .star-icon,
.game-star .star-rating .star-full,
.game-star .star-rating .star-empty,
.game-star .star-rating .fa,
.game-star .star-rating .fas,
.game-star .star-rating .far,
.game-star .star-rating i {
    color: inherit;
    font-size: 0.95em;
}

.game-star .star-rating .star-icon::before,
.game-star .star-rating .star-full::before,
.game-star .star-rating .fa-star::before {
    content: "★";
}

.game-star .star-rating .star-empty::before,
.game-star .star-rating .fa-star-o::before,
.game-star .star-rating .far.fa-star::before,
.game-star .star-rating .fa-regular.fa-star::before {
    content: "☆";
}
