body {
    background: #f7f7fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    margin: 0;
}
.header-container {
    background: #222;
    color: #fff;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}
.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}
nav a:hover {
    background: #ff9800;
    color: #fff;
}
main {
    max-width: 800px;
    margin: 40px auto 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
}
.blog-section h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #ff9800;
    letter-spacing: 1px;
}
.blog-section > p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 28px;
}
.blog-post {
    background: #f9f6f2;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 22px 20px 18px 20px;
    margin-bottom: 28px;
    transition: box-shadow 0.2s;
}
.blog-post:hover {
    box-shadow: 0 6px 24px rgba(255,152,0,0.13);
}
.blog-post h2 {
    font-size: 1.4rem;
    margin: 0 0 8px 0;
    color: #222;
}
.blog-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 12px;
}
.blog-post p {
    font-size: 1.08rem;
    color: #333;
}
.blog-post a {
    color: #ff9800;
    text-decoration: underline;
    font-weight: 500;
}
.blog-post a:hover {
    text-decoration: none;
    color: #e65100;
}
footer {
    background: #222;
    color: #fff;
    padding: 28px 0 16px 0;
    margin-top: 48px;
    text-align: center;
    border-top: 4px solid #ff9800;
}
.footer-links {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ff9800;
    text-decoration: none;
    margin: 0 14px;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}
.game-screenshot {
    width: 100%;
    max-width: 340px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 16px 0 12px 0;
    display: block;
    object-fit: cover;
    background: #eee;
    border: 1px solid #e0e0e0;
}
ol > li {
    margin-bottom: 38px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 900px) {
    main {
        max-width: 98vw;
        padding: 18px 6vw 18px 6vw;
    }
}
@media (max-width: 600px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
        padding: 12px 0;
    }
    main {
        padding: 12px 2vw 12px 2vw;
    }
    .blog-section h1 {
        font-size: 1.4rem;
    }
    .blog-post h2 {
        font-size: 1.1rem;
    }
}