@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #1e2430;
    color: #e0e6ed;
}

/* Header */
.header {
    background: #151a24;
    border-bottom: 3px solid #2196F3;
    padding: 0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: #2196F3;
    text-decoration: none;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav {
    display: flex;
    gap: 0;
}

.nav a {
    padding: 22px 25px;
    color: #a8b4c4;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.nav a:hover {
    color: #2196F3;
    background: rgba(33, 150, 243, 0.1);
    border-bottom-color: #2196F3;
}

/* Menu button - visible on all screen sizes */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: #252d3d;
    border: 2px solid #2d3748;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #2196F3;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Featured Section */
.featured {
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    padding: 35px 25px;
    margin-bottom: 30px;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-text h1 {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.featured-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.featured-tag .featured-container {
    flex-wrap: wrap;
    gap: 16px;
}

.tag-breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.tag-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.tag-breadcrumb a:hover {
    text-decoration: underline;
}

.tag-sep {
    margin: 0 8px;
    opacity: 0.8;
}

.tag-empty {
    padding: 40px 20px;
    text-align: center;
}

.tag-empty .page-intro {
    margin-bottom: 0;
}

.stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    background: rgba(0,0,0,0.2);
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: white;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #2d3748;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #e0e6ed;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-count {
    font-size: 14px;
    font-weight: 600;
    color: #6b7a90;
    background: #1e2430;
    padding: 4px 12px;
    border-radius: 12px;
}

.section-link {
    color: #2196F3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.section-link:hover {
    text-decoration: underline;
}

/* Filters - Compact Design */
.filters {
    background: #252d3d;
    padding: 18px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.filter-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.filter-main {
    flex: 1;
}

.filter-title {
    font-size: 13px;
    font-weight: 700;
    color: #6b7a90;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.filter-primary {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.filter-btn {
    padding: 8px 18px;
    background: #1e2430;
    border: 2px solid #2d3748;
    color: #a8b4c4;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

.filter-btn:hover {
    border-color: #2196F3;
    color: #2196F3;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #2196F3;
    border-color: #2196F3;
    color: white;
}

.filter-btn .emoji {
    font-size: 16px;
}

.filter-more {
    margin-top: 10px;
}

/* details/summary 展开更多分类，无需 JS */
.filter-more summary.filter-toggle {
    background: none;
    border: none;
    color: #2196F3;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.filter-more summary.filter-toggle::-webkit-details-marker {
    display: none;
}

.filter-more summary.filter-toggle:hover {
    text-decoration: underline;
}

.filter-more summary.filter-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s;
}

.filter-more[open] summary.filter-toggle::after {
    transform: rotate(180deg);
}

.filter-extended {
    margin-top: 12px;
}

.filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-row-label {
    font-size: 11px;
    color: #6b7a90;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 100px;
    padding-top: 8px;
}

.filter-btn-small {
    padding: 6px 14px;
    background: #1e2430;
    border: 1px solid #2d3748;
    color: #8b97a8;
    font-weight: 600;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-btn-small:hover {
    border-color: #2196F3;
    color: #2196F3;
}

.filter-btn-small.active {
    background: #2196F3;
    border-color: #2196F3;
    color: white;
}

.filter-search {
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    background: #1e2430;
    border: 2px solid #2d3748;
    border-radius: 6px;
    color: #e0e6ed;
    font-size: 13px;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #2196F3;
}

.search-input::placeholder {
    color: #6b7a90;
}

/* Search Page Hero */
.featured-search .featured-container {
    flex-direction: column;
    gap: 24px;
}
.search-hero-form {
    width: 100%;
    max-width: 560px;
}
.search-form {
    display: flex;
    gap: 12px;
    width: 100%;
}
.search-hero-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: #fff;
}
.search-hero-input::placeholder {
    color: rgba(255,255,255,0.7);
}
.search-hero-input:focus {
    border-color: #fff;
    background: rgba(255,255,255,0.2);
    outline: none;
}
.search-submit-btn {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #2196F3;
    background: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}
.search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.section-count {
    font-size: 14px;
    color: #8b98a8;
    font-weight: 500;
}
.search-empty {
    padding: 40px 20px;
    text-align: center;
}
.search-empty .page-intro {
    margin-bottom: 16px;
}

/* ========== Mobile Menu & Bottom Bar ========== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #151a24;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-panel.show {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #2d3748;
}

.mobile-menu-header h3 {
    font-size: 20px;
    color: #e0e6ed;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: #252d3d;
    border: 2px solid #2d3748;
    border-radius: 8px;
    color: #e0e6ed;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    border-color: #2196F3;
    color: #2196F3;
}

.mobile-menu-search {
    padding: 16px;
    border-bottom: 1px solid #2d3748;
}

.mobile-menu-search .search-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
}

.mobile-menu-section {
    padding: 16px;
    flex: 1;
}

.mobile-menu-title {
    font-size: 13px;
    font-weight: 700;
    color: #6b7a90;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mobile-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-cat-btn {
    width: 100%;
    padding: 14px 16px;
    background: #252d3d;
    border: 2px solid #2d3748;
    border-radius: 8px;
    color: #e0e6ed;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
}

.mobile-cat-btn:hover {
    border-color: #2196F3;
    color: #2196F3;
}

.mobile-cat-btn.active {
    background: #2196F3;
    border-color: #2196F3;
    color: white;
}

.mobile-menu-links {
    padding: 16px;
    border-top: 2px solid #2d3748;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links a {
    padding: 14px;
    color: #a8b4c4;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu-links a:hover {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #151a24;
    border-top: 3px solid #2196F3;
    z-index: 997;
    padding: 0 10px;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    background: none;
    border: none;
    color: #a8b4c4;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
}

.mobile-bar-btn:hover,
.mobile-bar-btn:focus {
    color: #2196F3;
    background: rgba(33, 150, 243, 0.15);
}

.mobile-bar-btn.active {
    color: #2196F3;
}

.mobile-bar-icon {
    font-size: 24px;
    line-height: 1;
}

.mobile-bar-label {
    line-height: 1.2;
}

/* Games Grid */
.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 50px;
}

.game-box {
    background: #252d3d;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.game-box:hover {
    transform: translateY(-4px);
    border-color: #2196F3;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.game-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #1976D2 0%, #2196F3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

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

.game-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff9800;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.game-label.new {
    background: #4caf50;
}

.game-label.hot {
    background: #f44336;
}

.game-content {
    padding: 14px;
}

.game-title {
    font-size: 16px;
    font-weight: 700;
    color: #e0e6ed;
    margin-bottom: 7px;
}

.game-text {
    font-size: 12px;
    color: #8b97a8;
    line-height: 1.4;
    margin-bottom: 10px;
    height: 33px;
    overflow: hidden;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #2d3748;
}

.game-type {
    font-size: 11px;
    color: #6b7a90;
    font-weight: 600;
    text-transform: uppercase;
}

.game-score {
    font-size: 14px;
    font-weight: 700;
    color: #ff9800;
}

/* Game Detail Layout */
.game-detail-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-top: 10px;
}

.game-detail-main {
    flex: 2;
    min-width: 0;
}

.game-detail-aside {
    flex: 1;
    min-width: 260px;
}

.game-hero-card {
    background: #252d3d;
    border-radius: 12px;
    border: 2px solid #2d3748;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.game-hero-media img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

.game-hero-info {
    padding: 18px 18px 20px;
}

.game-hero-title {
    font-size: 20px;
    font-weight: 700;
    color: #e0e6ed;
    margin: 6px 0 8px;
}

.game-hero-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #8b97a8;
    margin-bottom: 10px;
}

.game-hero-meta span:first-child {
    text-transform: uppercase;
    font-weight: 600;
    color: #6b7a90;
}

 .game-hero-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #8b97a8;
    margin-bottom: 14px;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-bottom: 10px;
}

.play-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(33, 150, 243, 0.5);
}

.share-row {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #8b97a8;
}

.share-row .share-link {
    font-size: 12px;
    color: #a8b4c4;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #2d3748;
    background: #1e2430;
    cursor: pointer;
    transition: all 0.2s;
}

/* Ad slots */
.ad-slot {
    margin: 20px 0 26px;
}

.ad-slot--index-top {
    margin-bottom: 24px;
}

.ad-slot--index-middle {
    margin: 32px 0;
}

.ad-slot--detail-top,
.ad-slot--tags-top {
    margin: 20px 0 24px;
}

.ad-slot-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    background: #151a24;
    border: 1px solid #2d3748;
    text-align: center;
}

.ad-slot-inner iframe {
    max-width: 100%;
}

.share-row .share-link:hover {
    border-color: #2196F3;
    color: #2196F3;
    background: rgba(33, 150, 243, 0.12);
}

.game-article {
    padding: 18px 18px 20px;
    margin-bottom: 28px;
    background: #252d3d;
    border-radius: 10px;
    border: 1px solid #2d3748;
    font-size: 13px;
    color: #cbd5f5;
    line-height: 1.7;
}

.game-article h2,
.game-article h3 {
    margin-top: 10px;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.game-article p + p {
    margin-top: 8px;
}

.comments {
    margin-top: 24px;
}

.comments h2 {
    font-size: 16px;
    font-weight: 700;
    color: #e0e6ed;
    margin-bottom: 14px;
}

.comment-form {
    margin-bottom: 20px;
    padding: 18px 20px;
    background: #252d3d;
    border: 1px solid #2d3748;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
}

.comment-input {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    background: #1e2430;
    border: 2px solid #2d3748;
    border-radius: 8px;
    color: #e0e6ed;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.5;
    transition: border-color 0.2s;
}

.comment-input:focus {
    outline: none;
    border-color: #2196F3;
}

.comment-input::placeholder {
    color: #6b7a90;
}

.comment-text {
    min-height: 80px;
    resize: vertical;
    vertical-align: top;
}

.comment-submit {
    align-self: flex-start;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #2196F3;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.comment-submit:hover {
    background: #1976D2;
}

.comment-submit:focus {
    outline: none;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment {
    padding: 12px 14px;
    background: #252d3d;
    border-radius: 10px;
    border: 1px solid #2d3748;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.comment-author {
    font-size: 13px;
    font-weight: 600;
    color: #e0e6ed;
}

.comment-date {
    font-size: 11px;
    color: #6b7a90;
}

.comment-body {
    font-size: 13px;
    color: #8b97a8;
    line-height: 1.5;
}

/* Generic content pages (About / Contact / FAQ / Search) */
.page-section {
    max-width: 820px;
    margin: 40px auto 60px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: #e0e6ed;
    margin-bottom: 14px;
}

.page-intro {
    font-size: 14px;
    color: #8b97a8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-section p,
.page-section li {
    font-size: 14px;
    color: #8b97a8;
    line-height: 1.7;
}

.page-section ul {
    padding-left: 20px;
    list-style: disc;
}

.page-section a {
    color: #a8b4c4;
    text-decoration: none;
}

.page-section a:hover {
    color: #2196F3;
    text-decoration: underline;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 14px 0;
    border-bottom: 1px solid #2d3748;
}

.faq-item h2 {
    font-size: 15px;
    font-weight: 700;
    color: #e0e6ed;
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 14px;
}

/* Footer */
.footer {
    background: #151a24;
    padding: 50px 25px 25px;
    margin-top: 80px;
    border-top: 3px solid #2196F3;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 35px;
}

.footer-section h3 {
    color: #2196F3;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-section p {
    color: #8b97a8;
    line-height: 1.7;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #8b97a8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2196F3;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #2d3748;
    color: #6b7a90;
    font-size: 13px;
}

/* Sections */
.game-section {
    margin-bottom: 50px;
}

/* Responsive */
@media (max-width: 968px) {
    .featured-container {
        flex-direction: column;
        text-align: center;
    }
    
    .stats {
        margin-top: 20px;
    }

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

    .filter-search {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-overlay,
    .mobile-menu-panel {
        display: flex;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }

    .footer {
        margin-bottom: 64px;
    }
    
    .featured-text h1 {
        font-size: 28px;
    }
    
    .stats {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .filter-primary {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .filter-btn .emoji {
        font-size: 14px;
    }
    
    .games-container {
        grid-template-columns: 1fr;
    }

    .game-detail-layout {
        flex-direction: column;
    }

    .game-detail-aside {
        min-width: 0;
        width: 100%;
    }

    /* 移动端缩小游戏截图高度，避免遮挡内容 */
    .game-image {
        height: 240px;
        font-size: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
