.game-shell {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 1rem 2rem;
}

body.game-page {
    align-items: center;
    justify-content: flex-start;
}

.breadcrumb-trail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #475569;
    align-items: center;
    margin: 0 auto 1rem;
}

.breadcrumb-trail a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-trail span[aria-hidden="true"] {
    opacity: 0.6;
}

.seo-section {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.seo-section h2,
.seo-section h3 {
    margin-bottom: 0.85rem;
    line-height: 1.4;
}

.seo-section p {
    margin-bottom: 1rem;
    color: #475569;
}

.seo-section ul,
.seo-section ol {
    margin: 0 0 1.25rem 1.25rem;
    color: #475569;
    line-height: 1.7;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-card {
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.info-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

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

.faq-item {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.meta-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.2);
    font-size: 0.95rem;
}

.meta-list span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .game-shell {
        padding: 0 1rem 3rem;
    }

    .seo-section {
        padding: 1.25rem;
    }
}
