body {
    background: #23272f;
    color: #f5f5f5;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #23272f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* header-flex布局 */
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 18px 0;
}

.site-logo {
    height: 48px;
    width: 48px;
    margin-right: 16px;
    border-radius: 8px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.site-title {
    color: #ffd700;
    font-size: 2.2em;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        gap: 8px;
    }
    .site-logo {
        margin-right: 0;
        margin-bottom: 6px;
    }
    .site-title {
        font-size: 1.3em;
    }
}

.container {
    max-width: 900px;
    margin: 60px auto 0 auto;
    background: #262b34;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    padding: 40px 32px 32px 32px;
    text-align: left;
}

h1 {
    color: #ffd700;
    margin-top: 0;
}

nav.categories {
    margin: 30px 0 24px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.categories {
    display: flex;
    gap: 18px;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}
.categories a {
    color: #ffd700;
    background: none;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.2s, color 0.2s;
    font-size: 1em;
}
.categories a:hover {
    background: #ffd700;
    color: #23272f;
}

.game-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 32px auto;
    min-height: 500px;
    background: #1a1d22;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    max-width: 820px;
    overflow: auto;
}

.social-share {
    margin: 36px 0 0 0;
}
.social-share span {
    color: #ffd700;
    font-weight: bold;
    margin-right: 10px;
}
.social-share a {
    margin: 0 8px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s;
}
.social-share a:hover {
    transform: scale(1.2);
}

.game-info {
    text-align: left;
    margin: 32px auto 0 auto;
    max-width: 700px;
    background: #23272f;
    border-radius: 10px;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.game-info h2, .game-info h3 {
    color: #ffd700;
    margin-top: 0;
}

.screenshot img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.footer {
    margin: 60px 0 20px 0;
    color: #888;
    font-size: 0.9em;
    text-align: center;
}

.blog-list, .blog-item {
    text-align: left;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    justify-content: flex-start;
    margin-top: 3px;
}

.game-item {
    background: #23272f;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 5px 5px 5px 5px;
    width: 180px;
    height: 170px;
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
    transform: translateY(-6px) scale(1.04);
    background: #292d36;
    z-index: 2;
}

.game-thumb {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: box-shadow 0.2s, transform 0.2s;
}


.game-item:hover .game-thumb {
    box-shadow: 0 6px 24px rgba(255,215,0,0.18), 0 2px 8px rgba(0,0,0,0.18);
    transform: scale(1.03);
}

.game-title {
    color: #ffd700;
    font-size: 1.05em;
    font-weight: bold;
    margin: 12px 0 6px 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .game-list {
        gap: 20px;
    }
    .game-item {
        width: 45vw;
        min-width: 180px;
        max-width: 220px;
    }
}
@media (max-width: 900px) {
    .game-list {
        gap: 16px;
        justify-content: center;
    }
    .game-item {
        width: 90vw;
        max-width: 320px;
    }
}
@media (max-width: 600px) {
    .game-list {
        flex-direction: column;
        align-items: center;
    }
    .game-item {
        width: 98vw;
        max-width: 360px;
    }
}