/* ============================================
   GAMEPULSE — Page Styles (About / Contact)
   ============================================ */

/* ---------- PAGE HERO ---------- */
.page-hero {
    margin-top: var(--header-h);
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 45, 106, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

/* Grid pattern overlay */
.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.page-hero-bg.has-hero-image::before {
    display: none;
}


.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    letter-spacing: 8px;
    margin-top: 10px;
    margin-bottom: 14px;
}

.page-hero-desc {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* ---------- ABOUT SPLIT ---------- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 18px;
}

.about-img-frame {
    position: relative;
    overflow: hidden;
}

.about-img-frame img {
    width: 100%;
    display: block;
    filter: brightness(0.8) contrast(1.1);
}

.frame-corner {
    position: absolute;
    width: 40px; height: 40px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
}

.frame-tl {
    top: -1px; left: -1px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.frame-br {
    bottom: -1px; right: -1px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

/* ---------- STATS ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-card {
    text-align: center;
    padding: 36px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.stat-card:hover {
    border-color: var(--accent);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-dim);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 10px;
}

.stat-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

.stat-card:hover .stat-bar {
    transform: scaleX(1);
}

/* ---------- MISSION ---------- */
.mission-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 48px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.value-item {
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.value-item:hover {
    border-color: var(--accent);
}

.value-num {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 14px;
}

.value-item h4 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- TEAM ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.team-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.team-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.6) brightness(0.85);
    transition: filter 0.4s;
}

.team-card:hover .team-img img {
    filter: grayscale(0) brightness(1);
}

.team-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--surface) 0%, transparent 60%);
}

.team-info {
    padding: 18px 20px;
    position: relative;
}

.team-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.team-card:hover .team-name {
    color: var(--accent);
}

.team-role {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    display: block;
    margin-top: 6px;
}

/* ---------- CONTACT SPLIT ---------- */
.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 12px var(--accent-dim);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235a6378'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--surface);
    color: var(--text);
}

/* Form success */
.form-success {
    text-align: center;
    padding: 48px 24px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.03);
    margin-top: 28px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border: 2px solid #00ff88;
    color: #00ff88;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.form-success p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #00ff88;
    margin-bottom: 8px;
}

.form-success span {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Form error */
.form-error {
    padding: 14px 18px;
    border: 1px solid var(--accent-hot-dim);
    color: var(--accent-hot);
    font-family: var(--font-mono);
    font-size: 0.88rem;
    letter-spacing: 1px;
    margin-top: 28px;
}

/* ---------- CONTACT INFO ---------- */
.contact-info-wrap {
    margin-top: 0;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 28px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s;
}

.info-item:first-child {
    border-top: 1px solid var(--border);
}

.info-item:hover {
    padding-left: 6px;
}

.info-icon {
    font-size: 1.2rem;
    color: var(--accent);
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.info-item:hover .info-icon {
    border-color: var(--accent);
}

.info-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    display: block;
}

.info-value {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    display: block;
    margin-top: 2px;
    transition: color 0.3s;
}

.info-item:hover .info-value {
    color: var(--accent);
}

.contact-note {
    margin-top: 28px;
    padding: 22px;
    background: var(--surface);
    border-left: 2px solid var(--accent);
}

.contact-note p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-note p + p {
    margin-top: 12px;
}

.contact-note strong {
    color: var(--text);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-visual { order: -1; }

    .mission-values {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .page-hero { padding: 56px 0 40px; }

    .page-hero-title { letter-spacing: 4px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .team-grid  { grid-template-columns: 1fr; }
}


/* ============================================
   WALKTHRU LISTING
   ============================================ */

/* ---------- FILTER BAR ---------- */
.filter-bar {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cat-pill {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 2px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.cat-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.cat-pill.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    box-shadow: 0 0 14px var(--accent-dim);
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.filter-search {
    display: flex;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.filter-search:focus-within {
    border-color: var(--accent);
}

.filter-search input {
    background: transparent;
    border: none;
    padding: 10px 14px;
    color: var(--text);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    outline: none;
    width: 180px;
}

.filter-search input::placeholder {
    color: var(--text-dim);
}

.filter-search button {
    padding: 10px 14px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.filter-search button:hover {
    color: var(--accent);
}

.filter-sort {
    display: flex;
    gap: 0;
}

.sort-btn {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 10px 14px;
    color: var(--text-dim);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.sort-btn:hover {
    color: var(--text-muted);
}

.sort-btn.active {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
}

.filter-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.result-count {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.result-count strong {
    color: var(--accent);
}

.clear-filters {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: var(--accent-hot);
    transition: opacity 0.3s;
}

.clear-filters:hover {
    opacity: 0.7;
}

/* ---------- ARTICLE LIST ---------- */
.walkthru-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.list-article {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.list-article:first-child {
    border-top: 1px solid var(--border);
}

.list-article:hover {
    padding-left: 8px;
    border-bottom-color: var(--accent-dim);
}

.list-article-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dim);
    min-width: 36px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.list-article:hover .list-article-num {
    color: var(--accent);
}

.list-article-img {
    width: 160px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.list-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.list-article:hover .list-article-img img {
    transform: scale(1.1);
}

.list-article-body {
    flex: 1;
    min-width: 0;
}

.list-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.meta-game {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
}

.meta-sep {
    color: var(--text-dim);
    font-size: 0.72rem;
}

.meta-cat,
.meta-date,
.meta-read {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    color: var(--text-dim);
}

.list-article-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.35;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.list-article:hover .list-article-title {
    color: var(--accent);
}

.list-article-excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-article-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    min-width: 100px;
    justify-content: flex-end;
}

.stat-views {
    text-align: right;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
}

/* Rename from .stat-label to: */
.list-stat-label {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.list-arrow {
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.list-article:hover .list-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

/* ---------- PAGINATION ---------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.page-btn {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.page-btn.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.page-next {
    letter-spacing: 2px;
    color: var(--accent);
    border-color: var(--accent-dim);
}

.page-sep {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-dim);
    padding: 0 4px;
}

/* ---------- EMPTY STATE ---------- */
.empty-state {
    text-align: center;
    padding: 80px 24px;
}

.empty-icon {
    font-size: 2.5rem;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* ============================================
   WALKTHRU INNER — ARTICLE
   ============================================ */

/* ---------- ARTICLE HERO ---------- */
.article-hero {
    margin-top: var(--header-h);
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, var(--bg) 0%, rgba(6, 8, 13, 0.85) 40%, rgba(6, 8, 13, 0.5) 70%),
        linear-gradient(90deg, rgba(6, 8, 13, 0.6) 0%, transparent 60%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 48px;
    max-width: 760px;
}

/* Breadcrumb */
.breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.bc-sep {
    color: var(--text-muted);
}

.bc-current {
    color: var(--accent);
}

.article-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.article-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.article-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.hero-stat-icon {
    color: var(--accent);
    font-size: 0.8rem;
}

/* ---------- ARTICLE LAYOUT ---------- */
.article-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: flex-start;
}

/* Sidebar TOC */
.article-sidebar {
    position: relative;
}

.toc-sticky {
    position: sticky;
    top: calc(var(--header-h) + 28px);
}

.toc-heading {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.toc-link {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    padding: 9px 0;
    padding-left: 14px;
    border-left: 2px solid var(--border);
    transition: all 0.3s;
    line-height: 1.4;
}

.toc-link:hover {
    color: var(--text-muted);
    border-left-color: var(--text-muted);
}

.toc-link.active {
    color: var(--accent);
    border-left-color: var(--accent);
}

.toc-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 10px var(--accent-dim);
}

/* Article content */
.article-content {
    max-width: 760px;
}

.article-section {
    margin-bottom: 44px;
}

.article-h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.article-h2::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 40px;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.article-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.article-content h4 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.article-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.article-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.article-content strong {
    color: var(--text);
}

/* Article tip box */
.article-tip {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--accent);
    margin: 22px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.article-tip strong {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

/* Tags */
.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.tags-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.tag-link {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.3s;
}

.tag-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Author box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 36px;
}

.author-avatar {
    width: 64px; height: 64px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--border);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4);
}

.author-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    display: block;
    margin-bottom: 4px;
}

.author-name {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.author-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Article navigation */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
}

.article-nav-btn {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s;
    border-right: 1px solid var(--border);
}

.article-nav-btn:last-child {
    border-right: none;
}

.article-nav-btn:hover {
    background: var(--surface);
}

.article-nav-btn.next {
    text-align: right;
}

.nav-dir {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.nav-title {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.article-nav-btn:hover .nav-title {
    color: var(--text);
}

/* ---------- RELATED ---------- */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.related-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.06);
}

.related-img {
    height: 180px;
    overflow: hidden;
}

.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.related-card:hover .related-img img {
    transform: scale(1.08);
}

.related-body {
    padding: 20px;
}

.related-game {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.related-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.related-card:hover .related-title {
    color: var(--accent);
}

.related-link {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    transition: all 0.3s;
}

.related-card:hover .related-link {
    color: var(--accent);
    letter-spacing: 3px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .list-article-img { width: 130px; height: 85px; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .filter-row { flex-direction: column; }

    .filter-controls { width: 100%; }

    .filter-search { flex: 1; }
    .filter-search input { width: 100%; }

    .list-article {
        flex-wrap: wrap;
        gap: 14px;
    }

    .list-article-num { display: none; }

    .list-article-img {
        width: 100%;
        height: 160px;
    }

    .list-article-body { width: 100%; }

    .list-article-stats {
        width: 100%;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid var(--border);
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-sidebar {
        order: -1;
        margin-bottom: 32px;
    }

    .toc-sticky { position: static; }

    .toc-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .toc-link {
        padding: 6px 12px;
        border-left: none;
        border-bottom: 2px solid var(--border);
    }

    .toc-link.active {
        border-bottom-color: var(--accent);
        border-left: none;
    }

    .toc-divider { display: none; }

    .article-hero { min-height: 320px; }

    .article-nav { grid-template-columns: 1fr; }
    .article-nav-btn { border-right: none; border-bottom: 1px solid var(--border); }
    .article-nav-btn:last-child { border-bottom: none; }
    .article-nav-btn.next { text-align: left; }

    .author-box { flex-direction: column; gap: 14px; }

    .related-grid { grid-template-columns: 1fr; }

    .pagination { flex-wrap: wrap; }

    .filter-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 480px) {
    .filter-sort { width: 100%; }
    .sort-btn { flex: 1; text-align: center; }

    .article-hero { min-height: 260px; }
    .article-hero-stats { gap: 12px; }
    .hero-stat { font-size: 0.6rem; }
}


/* ============================================
   GAMES LISTING
   ============================================ */

/* ---------- SECONDARY FILTER ROW ---------- */
.filter-row-secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.filter-platforms {
    display: flex;
    gap: 4px;
}

.platform-pill {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    padding: 7px 14px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: all 0.3s var(--ease);
}

.platform-pill:hover {
    color: var(--text-muted);
    border-color: var(--text-muted);
}

.platform-pill.active {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
}

/* ---------- GAMES PAGE GRID ---------- */
.games-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.game-page-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
}

.game-page-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 50px rgba(255, 255, 255, 0.07);
}

.game-page-img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.game-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.game-page-card:hover .game-page-img img {
    transform: scale(1.08);
}

.game-page-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, var(--surface) 0%, transparent 60%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 12px;
}

.game-page-rating {
    background: rgba(6, 8, 13, 0.85);
    border: 1px solid var(--accent-dim);
    padding: 5px 10px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.rating-value {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.rating-max {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-dim);
}

.game-page-platforms {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 4px;
}

.platform-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 1px;
    padding: 3px 7px;
    background: rgba(6, 8, 13, 0.8);
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.game-page-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-page-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.game-genre {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: var(--accent);
}

.game-release {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.5px;
    color: var(--text-dim);
}

.game-page-title {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.35;
    margin-bottom: 12px;
    flex: 1;
    transition: color 0.3s;
}

.game-page-card:hover .game-page-title {
    color: var(--accent);
}

.game-page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.game-guides-count {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.game-card-arrow {
    color: var(--text-dim);
    font-size: 1rem;
    transition: all 0.3s;
}

.game-page-card:hover .game-card-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.game-page-border {
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    transition: width 0.5s var(--ease);
}

.game-page-card:hover .game-page-border {
    width: 100%;
}

/* ============================================
   GAME INNER PAGE
   ============================================ */

/* ---------- GAME HERO ---------- */
.game-hero {
    margin-top: var(--header-h);
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.game-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
}

.game-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, var(--bg) 0%, rgba(6, 8, 13, 0.8) 45%, rgba(6, 8, 13, 0.4) 80%),
        linear-gradient(90deg, rgba(6, 8, 13, 0.7) 0%, transparent 50%);
}

.game-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 44px;
}

.game-hero-layout {
    display: flex;
    gap: 32px;
    align-items: flex-end;
}

.game-hero-thumb {
    width: 200px;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.game-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-hero-info {
    flex: 1;
    min-width: 0;
}

.game-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.meta-genre {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.meta-release {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.game-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 1.1;
    margin-bottom: 14px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.game-hero-platforms {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.platform-badge {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding: 6px 14px;
    border: 1px solid var(--accent-dim);
    color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
}

.game-hero-stats-row {
    display: flex;
    gap: 24px;
}

.game-stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-stat-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-dim);
}

.game-stat-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

/* ---------- GAME INNER LAYOUT ---------- */
.game-inner-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 44px;
    align-items: flex-start;
}

/* Description */
.game-description {
    max-width: 760px;
    margin: 0 auto;
}

.game-desc-text {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-top: 18px;
    margin-bottom: 28px;
}

.game-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.detail-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.detail-item:nth-child(2n) {
    border-right: none;
}

.detail-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.detail-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    display: block;
    margin-bottom: 6px;
}

.detail-value {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
}

/* Game guide list */
.game-guide-list {
    display: flex;
    flex-direction: column;
}

.game-guide-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.game-guide-item:first-child {
    border-top: 1px solid var(--border);
}

.game-guide-item:hover {
    padding-left: 8px;
    border-bottom-color: var(--accent-dim);
}

.guide-num {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-dim);
    min-width: 32px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.game-guide-item:hover .guide-num {
    color: var(--accent);
}

.guide-info {
    flex: 1;
    min-width: 0;
}

.guide-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.35;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.game-guide-item:hover .guide-title {
    color: var(--accent);
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    color: var(--text-dim);
}

.guide-arrow {
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: all 0.3s;
    min-width: 24px;
    text-align: center;
}

.game-guide-item:hover .guide-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

/* ---------- GAME SIDEBAR ---------- */
.sidebar-sticky {
    position: sticky;
    top: calc(var(--header-h) + 28px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.sidebar-heading {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 18px;
}

.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-stat:first-child {
    border-top: 1px solid var(--border);
}

.sidebar-stat-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    color: var(--text-dim);
}

.sidebar-stat-value {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text);
    text-align: right;
}

.rating-highlight {
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    transition: padding-left 0.3s;
}

.sidebar-link-item:first-child {
    border-top: 1px solid var(--border);
}

.sidebar-link-item:hover {
    padding-left: 6px;
}

.sidebar-link-title {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    transition: color 0.3s;
}

.sidebar-link-item:hover .sidebar-link-title {
    color: var(--accent);
}

.sidebar-link-views {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    flex-shrink: 0;
    margin-left: 10px;
}

/* Sidebar CTA */
.sidebar-cta {
    text-align: center;
    border-color: var(--accent-dim);
}

.cta-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Related meta row */
.related-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.related-rating {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
    .games-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .games-page-grid { grid-template-columns: repeat(2, 1fr); }

    .game-inner-layout {
        grid-template-columns: 1fr;
    }

    .game-inner-sidebar {
        order: -1;
    }

    .sidebar-sticky { position: static; }

    .game-hero { min-height: 400px; }
    .game-hero-thumb { width: 140px; height: 140px; }
}

@media (max-width: 768px) {
    .games-page-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .filter-row-secondary { flex-direction: column; align-items: flex-start; }
    .filter-platforms { flex-wrap: wrap; }

    .game-hero { min-height: 340px; }

    .game-hero-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* 1024px — find and change */
    .game-hero-thumb { width: 160px; }

    /* 768px — find and change */
    .game-hero-thumb { width: 140px; }

    /* Remove aspect-ratio overrides, it inherits */

    .game-hero-stats-row { gap: 16px; }

    .game-details-grid { grid-template-columns: 1fr; }
    .detail-item { border-right: none; }
    .detail-item:nth-last-child(2) { border-bottom: 1px solid var(--border); }

    .game-guide-item { flex-wrap: wrap; gap: 10px; }
    .guide-num { display: none; }
    .guide-info { width: 100%; }
    .guide-arrow { display: none; }
}

@media (max-width: 480px) {
    .games-page-grid { grid-template-columns: 1fr; }

    .game-hero { min-height: 280px; }
    .game-hero-title { font-size: 1.5rem; letter-spacing: 3px; }
    .game-hero-platforms { flex-wrap: wrap; }
    .game-hero-stats-row { flex-wrap: wrap; gap: 12px; }
}

/* ---------- CONTROLS ROW ---------- */
.filter-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .filter-controls-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-sort {
        width: 100%;
    }

    .sort-btn {
        flex: 1;
        text-align: center;
    }

    .filter-search {
        width: 100%;
    }

    .filter-search input {
        width: 100%;
    }
}


/* ---------- SINGLE COLUMN ARTICLE ---------- */
.article-layout-single {
    max-width: 760px;
    margin: 0 auto;
}

.article-share-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.share-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}



/* ============================================
   RICH CONTENT — WordPress / ACF WYSIWYG
   ============================================ */

.game-description,
.article-content {
    max-width: 760px;
    margin: 0 auto;
}

.game-description h2,
.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 44px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.game-description h2::after,
.article-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 40px;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.game-description h2:first-child,
.article-content h2:first-child {
    margin-top: 0;
}

.game-description h3,
.article-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 32px;
    margin-bottom: 14px;
}

.game-description h4,
.article-content h4 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
}

.game-description p,
.article-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.game-description p:first-child,
.article-content p:first-child {
    margin-top: 0;
}

.game-description strong,
.article-content strong {
    color: var(--text);
}

.game-description ul,
.game-description ol,
.article-content ul,
.article-content ol {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.game-description ul li,
.article-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.game-description ul li::before,
.article-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.game-description ol li,
.article-content ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    counter-increment: list-counter;
}

.game-description ol,
.article-content ol {
    counter-reset: list-counter;
}

.game-description ol li::before,
.article-content ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 700;
}

.game-description img,
.article-content img {
    width: 100%;
    height: auto;
    margin: 24px 0;
    border: 1px solid var(--border);
}

.game-description blockquote,
.article-content blockquote {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--accent);
    margin: 22px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
}

.game-description a,
.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s;
}

.game-description a:hover,
.article-content a:hover {
    opacity: 0.7;
}

.game-description table,
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.92rem;
}

.game-description th,
.article-content th {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid var(--accent);
    color: var(--accent);
}

.game-description td,
.article-content td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.game-description .article-tip,
.article-content .article-tip {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--accent);
    margin: 22px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.game-description .article-tip strong,
.article-content .article-tip strong {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

/* ---------- TITLE TRUNCATION ---------- */
.game-page-title,
.list-article-title,
.related-title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}