body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: url(/img/classic/bgpattern.png) rgb(32, 96, 70);
    color: rgb(255, 255, 255);
}

a {
    color: #4dff57;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5em 1.5em;
}
.logo img {
    display: block;
}
.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: #1f1f1f;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform .3s;
}
.logo::before {
    content: "♠";
    font-size: 2rem;
    color: #1f1f1f;
}
.menu a {
    margin-left: 1.2em;
    color: #206046;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08em;
    transition: color 0.2s;
}
.menu a:hover {
    color: #145332;
}

.main-content {
    max-width: 1100px;
    margin: 2em auto 0;
    padding: 0 1em;
}

h1 {
    margin-top: 1.3em;
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
}
.seo-short {
    font-size: 1.1em;
    color: #ffffff;
    margin: 1em auto 2em;
    text-align: center;
    max-width: 560px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2em;
    margin: 2.5em auto;
}
.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 1em;
    box-shadow: 0 2px 16px #0001;
    text-decoration: none;
    padding: 1.2em 1em;
    transition: transform 0.15s, box-shadow 0.15s;
}
.game-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px #0002;
}
.game-preview {
    width: 100%;
    max-width: 140px;
    border-radius: 0.7em;
    margin-bottom: 1em;
}
.game-title {
    font-size: 1.08em;
    color: #223;
    font-weight: 500;
    margin-top: 0.2em;
    text-align: center;
}
.seo-long {
    margin: 3em auto 2em;
    max-width: 800px;
    font-size: 1.07em;
    line-height: 1.65;
    border-radius: 1em;
    padding: 2em;
    box-shadow: 0 2px 16px #0001;
}
.seo-long h2 {
    color: #ffffff;
    margin-top: 0;
}

.footer {
    background: linear-gradient(135deg, #181818 0%, #16412f 100%);
    color: #fff;
    margin-top: 2em;
    padding: 1.2em 0 0.7em;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2em;
    justify-content: center;
    font-size: 1.05em;
}
.footer-inner a {
    color: #b5f7d1;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-inner a:hover {
    color: #fff;
}
