/**
 * TGP Game Hub - Modern Dark Theme
 * Version 2.0.0
 */

:root {
    --tgp-bg: #19192a;
    --tgp-surface: rgba(255, 255, 255, 0.03);
    --tgp-surface-hover: rgba(255, 255, 255, 0.06);
    --tgp-border: rgba(255, 255, 255, 0.08);
    --tgp-border-light: rgba(255, 255, 255, 0.12);
    --tgp-accent: #ff8a00;
    --tgp-accent-hover: #ff9f2e;
    --tgp-text: #f0f0f5;
    --tgp-text-muted: rgba(255, 255, 255, 0.65);
    --tgp-radius: 10px;
    --tgp-radius-sm: 6px;
    --tgp-radius-lg: 14px;
    --tgp-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --tgp-transition: 0.15s ease;
}

/* ========================================
   Layout & Container
   ======================================== */

.tgp-game-hub {
    background: var(--tgp-bg);
    min-height: 100vh;
}

.tgp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 1280px) {
    .tgp-container {
        padding: 0 48px;
    }
}

/* ========================================
   Hero Section
   ======================================== */

.tgp-hero {
    position: relative;
    height: 280px;
    background: var(--hero-bg) center/cover no-repeat;
    margin-bottom: -60px;
}

.tgp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(25, 25, 42, 0.4) 0%,
        rgba(25, 25, 42, 0.6) 50%,
        rgba(25, 25, 42, 0.95) 100%
    );
}

@media (max-width: 768px) {
    .tgp-hero {
        height: 200px;
        margin-bottom: -40px;
    }
}

/* ========================================
   Navigation Buttons
   ======================================== */

.tgp-nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
}

.tgp-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(25, 25, 42, 0.9);
    border: 1px solid var(--tgp-border-light);
    border-radius: var(--tgp-radius);
    color: var(--tgp-text);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all var(--tgp-transition);
}

.tgp-nav-btn:hover {
    background: var(--tgp-surface-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.tgp-nav-btn svg {
    opacity: 0.8;
}

.tgp-nav-calendar {
    background: var(--tgp-accent);
    border-color: transparent;
    color: #000;
}

.tgp-nav-calendar:hover {
    background: var(--tgp-accent-hover);
    border-color: transparent;
    color: #000;
}

.tgp-nav-calendar svg {
    opacity: 1;
}

@media (max-width: 480px) {
    .tgp-nav-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .tgp-nav-btn span {
        display: none;
    }
    
    .tgp-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   Info Card
   ======================================== */

.tgp-info-card {
    position: relative;
    z-index: 5;
    background: var(--tgp-surface);
    border: 1px solid var(--tgp-border);
    border-radius: var(--tgp-radius-lg);
    padding: 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.tgp-info-grid {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 20px;
    align-items: start;
}

@media (max-width: 900px) {
    .tgp-info-grid {
        grid-template-columns: 120px 1fr;
    }
}

@media (max-width: 640px) {
    .tgp-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Game Art */
.tgp-info-art {
    display: flex;
    justify-content: center;
}

.tgp-game-art {
    width: 140px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--tgp-radius);
    box-shadow: var(--tgp-shadow);
}

@media (max-width: 900px) {
    .tgp-game-art {
        width: 120px;
    }
}

@media (max-width: 640px) {
    .tgp-game-art {
        width: 160px;
        margin: 0 auto;
    }
}

/* Game Art Placeholder */
.tgp-game-art-placeholder {
    width: 140px;
    height: 187px;
    background: linear-gradient(135deg, #2a2a3d, #1a1a2a);
    border-radius: var(--tgp-radius);
}

@media (max-width: 900px) {
    .tgp-game-art-placeholder {
        width: 120px;
        height: 160px;
    }
}

@media (max-width: 640px) {
    .tgp-game-art-placeholder {
        width: 160px;
        height: 213px;
        margin: 0 auto;
    }
}

/* ========================================
   Google Follow CTA Box - All Devices
   ======================================== */

.tgp-mfg-follow {
    position: relative;
    margin: 30px 0;
    padding: 24px 28px;
    border-radius: 12px;
    
    /* Dark glass background */
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(25, 25, 42, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* Subtle border */
    border: 1px solid rgba(255, 255, 255, 0.08);
    
    /* Shadow for depth */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    
    overflow: hidden;
    z-index: 1;
}

/* Animated gradient left border accent */
.tgp-mfg-follow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(
        180deg,
        #4285F4,
        #EA4335,
        #FBBC05,
        #34A853,
        #4285F4
    );
    background-size: 100% 200%;
    animation: tgpGradientSlide 3s linear infinite;
}

@keyframes tgpGradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 0% 200%; }
}

/* Subtle background glow */
.tgp-mfg-follow::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(
        circle,
        rgba(66, 133, 244, 0.15) 0%,
        rgba(234, 67, 53, 0.1) 30%,
        transparent 70%
    );
    filter: blur(40px);
    z-index: -1;
    animation: tgpGlowPulse 4s ease-in-out infinite;
}

@keyframes tgpGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Paragraph styling */
.tgp-mfg-follow p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-style: normal !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.tgp-mfg-follow p em {
    font-style: normal;
}

/* Link styling with Google gradient */
.tgp-mfg-follow a {
    position: relative;
    font-weight: 700;
    font-style: normal;
    text-decoration: none !important;
    background: linear-gradient(
        90deg,
        #4285F4 0%,
        #EA4335 33%,
        #FBBC05 66%,
        #34A853 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tgpLinkShine 4s linear infinite;
    transition: all 0.3s ease;
}

@keyframes tgpLinkShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Google icon before the link */
.tgp-mfg-follow a::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    background-image: url('https://thegamepost.com/wp-content/uploads/2025/09/google-icon-3.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .tgp-mfg-follow {
        margin: 24px 0;
        padding: 20px 22px;
    }
    
    .tgp-mfg-follow p {
        font-size: 14px;
        text-align: center;
        justify-content: center;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .tgp-mfg-follow::before,
    .tgp-mfg-follow::after,
    .tgp-mfg-follow a {
        animation: none !important;
    }
}

/* Game Details */
.tgp-info-details {
    min-width: 0;
}

.tgp-game-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.2;
    color: var(--tgp-text);
}

.tgp-game-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--tgp-text-muted);
    margin: 0 0 12px;
}

/* Meta Grid */
.tgp-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin: 0 0 14px;
    padding: 0;
}

.tgp-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tgp-meta-item dt {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tgp-text-muted);
}

.tgp-meta-item dd {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--tgp-text);
    margin: 0;
}

.tgp-meta-full {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .tgp-meta-grid {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 14px;
    }
}

/* Buy Section */
.tgp-buy-section {
    margin-top: 14px;
}

.tgp-buy-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tgp-text-muted);
    margin-bottom: 8px;
}

.tgp-buy-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tgp-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: var(--tgp-accent);
    border-radius: var(--tgp-radius-sm);
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--tgp-transition);
}

.tgp-buy-btn:hover {
    background: var(--tgp-accent-hover);
    transform: translateY(-1px);
}

.tgp-buy-btn svg {
    opacity: 0.7;
}

@media (max-width: 640px) {
    .tgp-buy-buttons {
        justify-content: center;
    }
}

/* Score Card */
.tgp-score-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: var(--tgp-surface);
    border: 1px solid var(--tgp-accent);
    border-radius: var(--tgp-radius);
    min-width: 140px;
    text-align: center;
}

.tgp-score-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--tgp-text-muted);
    margin-bottom: 8px;
}

.tgp-score-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.tgp-score-star {
    color: var(--tgp-accent);
    margin-right: 4px;
}

.tgp-score-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--tgp-text);
    line-height: 1;
}

.tgp-score-max {
    font-size: 1rem;
    font-weight: 600;
    color: var(--tgp-text-muted);
}

.tgp-score-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--tgp-border-light);
    border-radius: var(--tgp-radius-sm);
    color: var(--tgp-text);
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--tgp-transition);
}

.tgp-score-link:hover {
    background: var(--tgp-surface-hover);
    border-color: var(--tgp-accent);
    color: var(--tgp-accent);
}

@media (max-width: 900px) {
    .tgp-score-card {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        padding: 12px 20px;
    }
    
    .tgp-score-label {
        margin: 0;
    }
    
    .tgp-score-link {
        margin: 0;
    }
}

/* ========================================
   Content Layout
   ======================================== */

.tgp-content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    padding-bottom: 40px;
}

@media (max-width: 1024px) {
    .tgp-content-layout {
        grid-template-columns: 1fr;
    }
}

.tgp-sidebar {
    align-self: start;
}

@media (max-width: 1024px) {
    .tgp-sidebar {
        display: none;
    }
}

/* ========================================
   Tabs
   ======================================== */

.tgp-tabs {
    display: flex;
    gap: 6px;
    padding: 4px;
    background: var(--tgp-surface);
    border-radius: var(--tgp-radius);
    margin-bottom: 20px;
}

.tgp-tab {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: var(--tgp-radius-sm);
    color: var(--tgp-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tgp-transition);
}

.tgp-tab:hover {
    color: var(--tgp-text);
    background: var(--tgp-surface-hover);
}

.tgp-tab.active {
    background: var(--tgp-accent);
    color: #000;
}

@media (max-width: 480px) {
    .tgp-tabs {
        gap: 4px;
        padding: 3px;
    }
    
    .tgp-tab {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

/* Tab Panels */
.tgp-panel {
    display: none;
}

.tgp-panel.active {
    display: block;
}

/* Loading State */
.tgp-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.tgp-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--tgp-border);
    border-top-color: var(--tgp-accent);
    border-radius: 50%;
    animation: tgp-spin 0.8s linear infinite;
}

@keyframes tgp-spin {
    to { transform: rotate(360deg); }
}

/* Empty State */
.tgp-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--tgp-text-muted);
    font-size: 0.9rem;
}

/* ========================================
   Post Grid
   ======================================== */

.tgp-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .tgp-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .tgp-post-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Post Card */
.tgp-post-card {
    background: var(--tgp-surface);
    border: 1px solid var(--tgp-border);
    border-radius: var(--tgp-radius);
    overflow: hidden;
    transition: all var(--tgp-transition);
}

.tgp-post-card:hover {
    border-color: var(--tgp-border-light);
    transform: translateY(-2px);
    box-shadow: var(--tgp-shadow);
}

.tgp-post-thumb {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}

.tgp-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tgp-post-card:hover .tgp-post-thumb img {
    transform: scale(1.03);
}

.tgp-post-body {
    padding: 12px;
}

.tgp-post-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--tgp-text);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color var(--tgp-transition);
}

.tgp-post-title:hover {
    color: var(--tgp-accent);
}

.tgp-post-date {
    font-size: 0.75rem;
    color: var(--tgp-text-muted);
}

.tgp-review-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--tgp-accent);
    border-radius: 4px;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px;
}

/* Load More */
.tgp-load-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.tgp-load-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--tgp-border-light);
    border-radius: 999px;
    color: var(--tgp-text);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--tgp-transition);
}

.tgp-load-btn:hover {
    background: var(--tgp-surface-hover);
    border-color: var(--tgp-accent);
}

.tgp-load-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   Gallery
   ======================================== */

.tgp-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.tgp-gallery a {
    display: block;
    aspect-ratio: 16/9;
    border-radius: var(--tgp-radius-sm);
    overflow: hidden;
    background: #111;
}

.tgp-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tgp-gallery a:hover img {
    transform: scale(1.05);
}

/* ========================================
   Lightbox
   ======================================== */

.tgp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.tgp-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.tgp-lb-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--tgp-radius);
    object-fit: contain;
}

.tgp-lb-close,
.tgp-lb-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all var(--tgp-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tgp-lb-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
}

.tgp-lb-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
}

.tgp-lb-prev { left: 20px; }
.tgp-lb-next { right: 20px; }

.tgp-lb-close:hover,
.tgp-lb-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Mobile Featured Game Block
   ======================================== */

.tgp-mfg {
    display: none;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .tgp-mfg {
        display: block;
    }
}

.tgp-mfg-inner {
    background: var(--tgp-surface);
    border: 1px solid var(--tgp-border);
    border-radius: var(--tgp-radius);
    padding: 14px;
}

.tgp-mfg-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tgp-accent);
    margin-bottom: 10px;
}

.tgp-mfg-game {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.tgp-mfg-thumb {
    width: 64px;
    height: 64px;
    border-radius: var(--tgp-radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: #111;
}

.tgp-mfg-placeholder {
    width: 64px;
    height: 64px;
    border-radius: var(--tgp-radius-sm);
    background: linear-gradient(135deg, #2a2a3d, #1a1a2a);
}

.tgp-mfg-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.tgp-mfg-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tgp-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tgp-mfg-date {
    font-size: 0.8rem;
    color: var(--tgp-text-muted);
}

.tgp-mfg-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: var(--tgp-accent);
    border-radius: var(--tgp-radius-sm);
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--tgp-transition);
}

.tgp-mfg-cta:hover {
    background: var(--tgp-accent-hover);
}

/* ========================================
   Sidebar Widget Styles
   ======================================== */

.tgp-fg-card {
    background: var(--tgp-surface);
    border: 1px solid var(--tgp-border);
    border-radius: var(--tgp-radius);
    padding: 16px;
}

.tgp-fg-thumb {
    display: block;
    margin-bottom: 12px;
}

.tgp-fg-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--tgp-radius-sm);
}

.tgp-fg-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
    text-align: center;
}

.tgp-fg-title a {
    color: var(--tgp-text);
    text-decoration: none;
}

.tgp-fg-title a:hover {
    color: var(--tgp-accent);
}

.tgp-fg-meta {
    margin: 0 0 14px;
    padding: 0;
}

.tgp-fg-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--tgp-border);
}

.tgp-fg-row:last-child {
    border-bottom: none;
}

.tgp-fg-row dt {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--tgp-text-muted);
}

.tgp-fg-row dd {
    font-size: 0.8rem;
    color: var(--tgp-text);
    margin: 0;
    text-align: right;
}

.tgp-fg-buy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tgp-fg-btn {
    display: block;
    padding: 8px 12px;
    background: var(--tgp-accent);
    border-radius: var(--tgp-radius-sm);
    color: #000;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background var(--tgp-transition);
}

.tgp-fg-btn:hover {
    background: var(--tgp-accent-hover);
}

/* Review Summary Shortcode */
.tgp-review-summary {
    display: flex;
    gap: 20px;
    background: var(--tgp-surface);
    border: 1px solid var(--tgp-border);
    border-radius: var(--tgp-radius);
    padding: 20px;
    margin: 20px 0;
}

.tgp-rs-left {
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid var(--tgp-border);
}

.tgp-score {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--tgp-accent);
    line-height: 1;
}

.tgp-score-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--tgp-text-muted);
    margin-top: 4px;
}

.tgp-rs-right {
    flex: 1;
}

.tgp-pros, .tgp-cons {
    margin-bottom: 12px;
}

.tgp-pros:last-child, .tgp-cons:last-child {
    margin-bottom: 0;
}

.tgp-pros strong, .tgp-cons strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.tgp-pros strong { color: #4ade80; }
.tgp-cons strong { color: #f87171; }

.tgp-pros p, .tgp-cons p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--tgp-text-muted);
}

/* More on Game Widget */
.tgp-more-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tgp-more-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--tgp-border);
}

.tgp-more-list li:last-child {
    border-bottom: none;
}

.tgp-more-list a {
    color: var(--tgp-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--tgp-transition);
}

.tgp-more-list a:hover {
    color: var(--tgp-accent);
}
