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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0f;
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.site-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-wrapper img {
    height: 45px;
    width: auto;
}

.main-menu {
    display: flex;
    align-items: center;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.main-menu a:hover {
    color: #fd9c62;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fd9c62, #ff4466);
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 5px;
    z-index: 1001;
}

.header-gap {
    height: 15px;
}

.archive-hero {
    text-align: center;
    padding: 350px 20px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 15, 0.7) 100%);
    z-index: 0;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(253, 156, 98, 0.8);
    border-color: transparent;
}

.hero-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicators button.active {
    background: #fd9c62;
    border-color: #fd9c62;
}

.archive-hero .container {
    position: relative;
    z-index: 2;
}

.archive-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #f46, #fa0);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.archive-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.bread_nav {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 15px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.bread_nav a {
    color: #fd9c62;
    text-decoration: none;
}

.bread_nav a:hover {
    color: #f9e6bb;
    text-decoration: underline;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15);
}

.card-body {
    padding: 20px;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.card-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 6px;
}

.badge-primary {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 204, 0.2));
    color: #fd9c62;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.badge-success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 204, 102, 0.2));
    color: #f9e6bb;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.badge-danger {
    background: linear-gradient(135deg, rgba(255, 68, 102, 0.2), rgba(255, 0, 51, 0.2));
    color: #ff4466;
    border: 1px solid rgba(255, 68, 102, 0.3);
}

.badge-light {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    margin: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #fd9c62, #ff4466);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 156, 98, 0.4);
}

.btn-outline-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.new-games-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.new-product-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.new-product-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.new-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.new-product-content .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

.new-product-content .card-text {
    flex-grow: 1;
    margin-bottom: 0;
}

.new-product-content .btn {
    align-self: flex-start;
    width: auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.category-grid .col {
    display: flex;
    align-items: stretch;
}

.category-grid .card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.hot-recommend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.hot-recommend-grid .card {
    min-height: 200px;
}

.hot-recommend-grid .card-body {
    padding: 20px;
}

.hot-recommend-grid .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.game-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.game-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.4);
}

.game-img {
    position: relative;
    width: 100%;
    padding-top: 133.33%;
    overflow: hidden;
}

.game-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-img-hover-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    text-align: center;
    padding: 30px 10px 10px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-item:hover .game-img-hover-text {
    opacity: 1;
}

.game-tag-label {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.top-label {
    background: url(../images/icons/top_label.png) no-repeat center/contain;
}

.new-label {
    background: url(../images/icons/new_label.png) no-repeat center/contain;
}

.hot-label {
    background: url(../images/icons/hot_label.png) no-repeat center/contain;
}

.game-info {
    padding: 10px;
}

.game-tag {
    font-size: 10px;
    color: #fd9c62;
    background: rgba(253, 156, 98, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
}

.game-title {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-score {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.game-score i {
    color: #facc15;
    font-size: 10px;
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-list .post-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-list .post-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.post-list .entry-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.post-list .entry-title a {
    color: #ffffff;
}

.post-list .entry-title a:hover {
    color: #fd9c62;
}

.post-list .entry-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.post-list .entry-meta {
    display: flex;
    gap: 24px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.article {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.article-body {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.article-body p {
    margin-bottom: 16px;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 25px 0 15px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 5px;
    justify-content: center;
}

.pagination .page-item {
    margin: 0 2px;
}

.pagination .page-link {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #fd9c62, #ff4466);
    color: white;
    border-color: transparent;
}

.site-footer {
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 15px;
    margin-top: 50px;
}

.site-footer .container {
    text-align: center;
}

.site-footer .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.site-footer .footer-nav a {
    color: #fd9c62;
    text-decoration: none;
    font-size: 13px;
}

.site-footer .footer-nav a:hover {
    color: #f9e6bb;
}

.site-footer .footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}

.rollbar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 8px;
    z-index: 1000;
}

.rollbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rollbar li {
    margin-bottom: 8px;
}

.rollbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
}

.rollbar a:hover {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: rgba(255, 255, 255, 0.5);
}

.text-white {
    color: #ffffff;
}

.text-cyan-400 {
    color: #fd9c62;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.fw-bold {
    font-weight: 700;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-md-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.h-100 {
    height: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

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

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

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

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.text-decoration-none {
    text-decoration: none;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-pill {
    border-radius: 9999px;
}

.bg-gradient-to-br {
    background: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to));
}

.from-red-500 {
    --tw-gradient-from: #ef4444;
}

.to-orange-500 {
    --tw-gradient-to: #f97316;
}

.from-purple-500 {
    --tw-gradient-from: #a855f7;
}

.to-pink-500 {
    --tw-gradient-to: #ec4899;
}

.from-blue-500 {
    --tw-gradient-from: #3b82f6;
}

.to-cyan-500 {
    --tw-gradient-to: #06b6d4;
}

.from-green-500 {
    --tw-gradient-from: #22c55e;
}

.to-teal-500 {
    --tw-gradient-to: #14b8a6;
}

.from-indigo-500 {
    --tw-gradient-from: #6366f1;
}

.from-yellow-500 {
    --tw-gradient-from: #eab308;
}

.to-orange-400 {
    --tw-gradient-to: #fb923c;
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-danger {
    background-color: rgba(255, 68, 102, 0.2);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-0 {
    border: 0;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hover-shadow:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.transition-3d {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.end-0 {
    right: 0;
}

.z-10 {
    z-index: 10;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-1 {
    margin-right: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {

}

.flex-grow-1 {
    flex-grow: 1;
}

@media (max-width: 768px) {
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
  .new-games-row {display: inherit;}
    .main-menu.active {
        right: 0;
    }

    .main-menu ul {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        padding: 20px;
        width: 100%;
    }

    .main-menu li {
        margin-bottom: 0;
        width: 100%;
    }

    .main-menu a {
        font-size: 16px;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .burger {
        display: block;
    }

    .site-header .container {
        padding: 10px 15px;
    }

    .logo-wrapper img {
        height: 35px;
    }

    .archive-hero {
        padding: 60px 20px;
        min-height: 250px;
    }

    .archive-title {
        font-size: 1.8rem;
    }

    .bread_nav {
        font-size: 12px;
        padding: 10px 15px;
    }

    .category-grid {
      display: grid;
    grid-template-columns: repeat(2, 1fr)!important;
    gap: 20px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 32px !important;
    }

    .hot-recommend-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .new-product-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .new-product-image {
        width: 100%;
        height: auto;
    }

    .new-product-content {
        width: 100%;
    }

    .game-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .game-item {
        width: 100%;
    }

    .game-title {
        font-size: 10px;
    }

    .post-list .post-item {
        padding: 18px;
    }

    .post-list .entry-title {
        font-size: 16px;
    }

    .article {
        padding: 20px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-nav {
        flex-direction: column;
        gap: 10px;
    }

    .rollbar {
        display: none;
    }

    .display-4 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .main-menu {
        width: 100%;
    }

    .logo-wrapper img {
        height: 30px;
    }

    .archive-hero {
        padding: 50px 15px;
        min-height: 200px;
    }

    .archive-title {
        font-size: 1.5rem;
    }

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

    .post-list .post-item {
        padding: 15px;
    }

    .post-list .entry-title {
        font-size: 15px;
        overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    }

    .display-4 {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .row {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-menu ul {
        gap: 15px;
    }

    .main-menu a {
        font-size: 13px;
    }

    .pagination-wrapper {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }

    .pagination-wrapper .pagination {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 3px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .pagination-wrapper .pagination .page-item {
        margin: 0 !important;
        flex-shrink: 0;
    }

    .pagination-wrapper .pagination .page-link {
        padding: 3px 6px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        min-width: 28px;
        text-align: center;
    }
}
.article img{margin:15px auto;border-radius:5px;display: block;width: 100%;}
.space-y-3 {line-height: 35px;padding: 20px;}
.text-lg{  padding: 20px 20px 0px 20px;}
.btnquote {border: 1px solid; font-size: 1.2rem; font-weight: bold;  width: 300px;  margin: 30px auto;  padding: 10px;  border-radius: 5px;
}
@media (max-width:480px) {
  .category-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
  }
  .new-games-row {display: inherit;}
}