/* ===============
   SHOW & CATEGORY PAGES - PREMIUM MODERN STYLING
   =============== */

.landing-hero {
    background: linear-gradient(165deg, #0c1e3d 0%, #081425 50%, #04080f 100%);
    padding: 70px 0 55px;
    text-align: center;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background:
        radial-gradient(circle at 30% 50%, rgba(34, 197, 94, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    pointer-events: none;
    filter: blur(60px);
}

.landing-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.landing-hero > .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-content-card {
    background: #0d172a;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-card);
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}

.landing-content-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 70%);
    pointer-events: none;
}

.landing-content-img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.landing-content-img:hover {
    transform: scale(1.01);
    box-shadow: 0 16px 50px -8px rgba(0, 0, 0, 0.6);
}

.article-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-main);
}

.article-body h2,
.article-body h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 800;
    margin: 36px 0 16px;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 16px;
}

.article-body h2::before,
.article-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--brand-green);
    border-radius: 2px;
}

.article-body p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.article-body ul,
.article-body ol {
    margin-bottom: 22px;
    padding-left: 28px;
}

.article-body li {
    margin-bottom: 10px;
    list-style: disc;
    color: #cbd5e1;
}

.article-body ol li {
    list-style: decimal;
}

.article-body a {
    color: var(--brand-green-hover);
    font-weight: 600;
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    transition: var(--transition-fast);
}

.article-body a:hover {
    color: var(--brand-green);
    border-bottom-color: var(--brand-green);
}

.article-body blockquote {
    background: var(--accent-quote-bg);
    border-left: 4px solid var(--accent-indigo);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--accent-quote-text);
    font-style: italic;
    font-weight: 500;
}

.article-body img {
    border-radius: var(--radius-md);
    margin: 20px 0;
    box-shadow: var(--shadow-subtle);
}

/* Related Games Grid */
.archive-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
    margin: 44px 0 65px;
}

.archive-item {
    background: #0d172a;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.archive-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.archive-item:hover::before { opacity: 1; }

.archive-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(34, 197, 94, 0.4);
}

.archive-img-wrap {
    height: 190px;
    background: linear-gradient(135deg, #0c1e3d, #081425);
    overflow: hidden;
}

.archive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.archive-item:hover .archive-img {
    transform: scale(1.08);
}

.archive-content {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.archive-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.archive-item:hover .archive-title {
    color: var(--brand-green-hover);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--brand-green);
    color: #04080f;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.archive-item:hover .btn-read-more {
    background: #4ade80;
    color: #04080f;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

@media (max-width: 768px) {
    .page-title { font-size: 2rem; }
    .landing-content-card { padding: 24px; margin: 24px auto; }
    .landing-hero { padding: 50px 0 40px; }
}