/* SteamReviewHub.com - Dark Gaming Theme */
/* Matches the mockup design with dark blue gradients */

/* ============================================================================
   CSS VARIABLES
   ============================================================================ */

:root {
    /* Core colors */
    --bg-primary: #0a0f1a;
    --bg-secondary: #0d1526;
    --bg-card: #111b2e;
    --bg-card-hover: #152238;
    --bg-header: rgba(13, 21, 38, 0.95);
    
    /* Accent colors */
    --accent-blue: #66c0f4;
    --accent-blue-bright: #4fc3f7;
    --accent-blue-glow: rgba(102, 192, 244, 0.3);
    --accent-orange: #f4a460;
    --accent-green: #4ade80;
    --accent-red: #ef4444;
    --accent-yellow: #fbbf24;
    --accent-purple: #a855f7;
    
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
    
    /* Borders */
    --border-color: rgba(102, 192, 244, 0.15);
    --border-glow: rgba(102, 192, 244, 0.4);
    
    /* Gradients */
    --gradient-bg: linear-gradient(180deg, #0a0f1a 0%, #0d1526 50%, #111b2e 100%);
    --gradient-card: linear-gradient(145deg, rgba(17, 27, 46, 0.9) 0%, rgba(13, 21, 38, 0.9) 100%);
    --gradient-header: linear-gradient(90deg, rgba(102, 192, 244, 0.1) 0%, transparent 50%, rgba(102, 192, 244, 0.1) 100%);
    
    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(102, 192, 244, 0.2);
    
    /* Spacing */
    --nav-height: 70px;
    --container-width: 1400px;
    --sidebar-width: 320px;
    
    /* Rating colors */
    --rating-excellent: #4ade80;
    --rating-great: #66c0f4;
    --rating-good: #fbbf24;
    --rating-poor: #ef4444;
}

/* ============================================================================
   BASE STYLES
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-blue-bright);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

header {
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--accent-blue);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: -2px;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(102, 192, 244, 0.1);
}

.nav-link.active {
    color: var(--accent-blue);
    background: rgba(102, 192, 244, 0.15);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: var(--shadow-card);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
}

.nav-dropdown-content a:hover {
    background: rgba(102, 192, 244, 0.1);
    color: var(--text-primary);
}

/* Search */
.nav-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 12px;
    transition: all 0.2s ease;
}

.nav-search:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px var(--accent-blue-glow);
}

.nav-search input {
    background: none;
    border: none;
    padding: 10px 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    width: 180px;
    outline: none;
}

.nav-search input::placeholder {
    color: var(--text-muted);
}

.nav-search-icon {
    color: var(--text-muted);
}

/* Social icons */
.nav-social {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.nav-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.nav-social a:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================================================
   NEWS TICKER
   ============================================================================ */

.news-ticker {
    background: rgba(102, 192, 244, 0.1);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ticker-label {
    background: var(--accent-blue);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-item a {
    color: var(--text-secondary);
}

.ticker-item a:hover {
    color: var(--accent-blue);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */

.breadcrumbs {
    padding: 16px 0;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text-muted);
}

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

.breadcrumbs span {
    color: var(--text-muted);
    margin: 0 8px;
}

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

/* ============================================================================
   PAGE LAYOUT
   ============================================================================ */

.page-content {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 30px;
    padding: 30px 0;
}

.main-content {
    min-width: 0;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Full width layout */
.page-full {
    padding: 30px 0;
}

/* ============================================================================
   SECTION HEADERS
   ============================================================================ */

.section-header {
    margin-bottom: 24px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 4px;
}

/* ============================================================================
   CATEGORY FILTER TABS
   ============================================================================ */

.category-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 10px;
}

.category-tab {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-tab:hover {
    background: rgba(102, 192, 244, 0.1);
    color: var(--text-primary);
}

.category-tab.active {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

/* ============================================================================
   ARTICLE CARDS GRID
   ============================================================================ */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.article-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-reviews { background: var(--accent-blue); color: var(--bg-primary); }
.category-controversies { background: var(--accent-red); color: white; }
.category-updates { background: var(--accent-green); color: var(--bg-primary); }
.category-indie { background: var(--accent-purple); color: white; }
.category-aaa { background: var(--accent-orange); color: var(--bg-primary); }
.category-general { background: var(--text-muted); color: white; }

.article-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-card-source {
    display: flex;
    align-items: center;
    gap: 4px;
}

.source-icon {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

/* ============================================================================
   SIDEBAR WIDGETS
   ============================================================================ */

.sidebar-widget {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.widget-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.widget-icon {
    font-size: 1.2rem;
}

.widget-content {
    padding: 12px;
}

/* Hot Topics Widget */
.hot-topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.hot-topic-item:hover {
    background: rgba(102, 192, 244, 0.1);
}

.hot-topic-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.hot-topic-image.placeholder {
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.hot-topic-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hot-topic-title:hover {
    color: var(--accent-blue);
}

.hot-topic-status {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-active { color: var(--accent-red); }
.status-ongoing { color: var(--accent-yellow); }
.status-resolved { color: var(--accent-green); }

.widget-divider {
    margin: 12px 0;
    border-top: 1px solid var(--border-color);
}

.widget-link {
    display: block;
    text-align: center;
    padding: 12px;
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.widget-link:hover {
    background: rgba(102, 192, 244, 0.1);
}

/* ============================================================================
   PAGINATION
   ============================================================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination a {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.pagination a:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
    border-color: var(--accent-blue);
}

.pagination .active {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

/* ============================================================================
   TRENDING TAGS
   ============================================================================ */

.trending-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.trending-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
}

.trending-label .heart {
    color: var(--accent-red);
}

.tag {
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(102, 192, 244, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.tag:hover {
    background: rgba(102, 192, 244, 0.2);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* ============================================================================
   ARTICLE DETAIL PAGE
   ============================================================================ */

.article-hero {
    margin-bottom: 30px;
}

.article-hero img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-caption {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.article-header {
    margin-bottom: 24px;
}

.article-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-date {
    color: var(--text-muted);
}

.article-source-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-blue);
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-body h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 32px 0 16px;
}

.article-body p {
    margin-bottom: 16px;
}

/* AI Commentary */
.ai-commentary {
    margin: 40px 0;
}

.ai-commentary-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ai-commentary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.commentary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.commentary-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.commentary-icon {
    font-size: 1.2rem;
}

.commentary-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.commentary-content {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.commentary-content ul {
    margin-top: 10px;
    padding-left: 20px;
}

.commentary-content li {
    margin-bottom: 6px;
}

.commentary-read-more {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(102, 192, 244, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.commentary-read-more:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

/* Review Bomb Tracker Widget */
.tracker-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.tracker-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tracker-widget-icon {
    font-size: 1.3rem;
}

.tracker-widget-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tracker-widget-subtitle {
    font-size: 0.9rem;
    color: var(--accent-blue);
}

.tracker-widget-section {
    margin-bottom: 16px;
}

.tracker-widget-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tracker-widget-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tracker-widget-btn {
    display: block;
    text-align: center;
    padding: 12px;
    background: rgba(102, 192, 244, 0.1);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    color: var(--accent-blue);
    font-weight: 500;
    transition: all 0.2s ease;
}

.tracker-widget-btn:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.share-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent-blue);
}

.share-btn.twitter:hover { background: #1da1f2; color: white; border-color: #1da1f2; }
.share-btn.reddit:hover { background: #ff4500; color: white; border-color: #ff4500; }
.share-btn.facebook:hover { background: #1877f2; color: white; border-color: #1877f2; }

.like-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(102, 192, 244, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.like-count {
    font-weight: 600;
}

/* Related Articles */
.related-articles {
    margin-top: 24px;
}

.related-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.related-item:last-child {
    border-bottom: none;
}

.related-images {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.related-images img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.related-info {
    flex: 1;
}

.related-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.related-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ============================================================================
   GAME REVIEW PAGE
   ============================================================================ */

.game-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.game-hero-image {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
}

.game-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.7) 50%, transparent 100%);
    padding: 40px;
    display: flex;
    align-items: flex-end;
}

.game-hero-content {
    max-width: 50%;
}

.game-score-badge {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e6091 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(102, 192, 244, 0.4);
}

.score-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.score-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.game-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-genres {
    display: flex;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.game-genre-tag {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Game Ratings Panel */
.game-ratings-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
}

.ratings-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.ratings-tab {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.ratings-tab:hover {
    color: var(--text-primary);
}

.ratings-tab.active {
    color: var(--text-primary);
    font-weight: 600;
}

.ratings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rating-row {
    margin-bottom: 16px;
}

.rating-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.rating-name {
    color: var(--text-secondary);
}

.rating-value {
    color: var(--text-primary);
    font-weight: 600;
}

.rating-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-green) 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Review Stats */
.review-stats {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stat-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.stat-label {
    width: 100px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat-bar-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    border-radius: 6px;
}

.stat-fill.positive { background: var(--accent-green); }
.stat-fill.mixed { background: var(--accent-yellow); }
.stat-fill.negative { background: var(--accent-red); }

.stat-percent {
    font-size: 0.85rem;
    color: var(--text-muted);
    width: 80px;
}

/* Pros & Cons */
.pros-cons {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.pros-cons-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-list, .cons-list {
    margin-bottom: 16px;
}

.pros-list h4 {
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.cons-list h4 {
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pros-list ul, .cons-list ul {
    list-style: none;
    padding-left: 24px;
}

.pros-list li, .cons-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 6px;
    position: relative;
}

.pros-list li::before {
    content: "•";
    color: var(--accent-green);
    position: absolute;
    left: -16px;
}

.cons-list li::before {
    content: "•";
    color: var(--accent-red);
    position: absolute;
    left: -16px;
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.video-card:hover .video-play-btn {
    opacity: 1;
}

.video-play-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.video-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.3;
}

/* Review Sections (Expandable) */
.review-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.review-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(90deg, rgba(102, 192, 244, 0.1) 0%, transparent 100%);
    cursor: pointer;
    transition: background 0.2s ease;
}

.review-section-header:hover {
    background: linear-gradient(90deg, rgba(102, 192, 244, 0.2) 0%, transparent 100%);
}

.review-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.review-section-arrow {
    color: var(--accent-blue);
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.review-section.active .review-section-arrow {
    transform: rotate(90deg);
}

.review-section-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-section.active .review-section-content {
    padding: 20px;
    max-height: 500px;
}

/* ============================================================================
   TRACKER PAGE
   ============================================================================ */

.tracker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tracker-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tracker-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.tracker-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.tracker-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tracker-card-body {
    padding: 20px;
}

.tracker-card-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tracker-card-status.active {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.tracker-card-status.ongoing {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-yellow);
}

.tracker-card-status.resolved {
    background: rgba(74, 222, 128, 0.2);
    color: var(--accent-green);
}

.tracker-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tracker-card-game {
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.tracker-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Tracker Detail */
.tracker-header {
    margin-bottom: 30px;
}

.tracker-status-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 16px;
}

.tracker-status-large.active {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

.tracker-status-large.ongoing {
    background: rgba(251, 191, 36, 0.2);
    color: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
}

.tracker-status-large.resolved {
    background: rgba(74, 222, 128, 0.2);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.tracker-detail-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tracker-detail-game {
    font-size: 1.1rem;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.tracker-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Evidence Timeline */
.evidence-timeline {
    margin-top: 40px;
}

.timeline-header {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.evidence-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
}

.evidence-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(102, 192, 244, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.evidence-content {
    flex: 1;
}

.evidence-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.evidence-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.evidence-summary {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Milestones */
.milestones-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.milestones-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.milestone-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.milestone-item:last-child {
    border-bottom: none;
}

.milestone-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.milestone-item.achieved .milestone-checkbox {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.milestone-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.milestone-item.achieved .milestone-text {
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--accent-blue);
}

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

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

/* ============================================================================
   ADMIN STYLES
   ============================================================================ */

.admin-header {
    background: var(--accent-blue);
    color: var(--bg-primary);
    padding: 10px 20px;
    text-align: center;
    font-weight: 600;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: var(--bg-card);
    font-weight: 600;
    color: var(--text-primary);
}

.admin-table td {
    color: var(--text-secondary);
}

.admin-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-blue-bright);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1200px) {
    .page-content {
        grid-template-columns: 1fr 280px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .game-hero-content {
        max-width: 100%;
    }
    
    .ratings-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-commentary-grid {
        grid-template-columns: 1fr;
    }
    
    .tracker-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--bg-header);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-search {
        width: 100%;
    }
    
    .nav-search input {
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .game-title {
        font-size: 1.8rem;
    }
    
    .game-hero-overlay {
        padding: 20px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .trending-tags {
        flex-wrap: wrap;
    }
    
    .category-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .article-card-body {
        padding: 12px;
    }
    
    .game-score-badge {
        width: 60px;
        height: 60px;
    }
    
    .score-number {
        font-size: 1.5rem;
    }
}

/* ============================================================================
   AFFILIATE LINKS - WHERE TO BUY
   ============================================================================ */

.buy-widget {
    border: 2px solid var(--accent-green);
}

.buy-widget .widget-header {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
}

.affiliate-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.affiliate-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.affiliate-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--store-color, var(--accent-blue));
}

.affiliate-btn:hover {
    background: var(--bg-card);
    border-color: var(--store-color, var(--accent-blue));
    transform: translateX(4px);
}

.affiliate-icon {
    font-size: 1.3rem;
}

.affiliate-store {
    flex: 1;
    font-weight: 500;
}

.affiliate-arrow {
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.affiliate-btn:hover .affiliate-arrow {
    transform: translateX(4px);
    color: var(--store-color, var(--accent-blue));
}

/* Store-specific hover colors */
.affiliate-btn[title*="Steam"]:hover {
    border-color: #1b2838;
}

.affiliate-btn[title*="Amazon"]:hover {
    border-color: #ff9900;
}

.affiliate-btn[title*="Green Man"]:hover {
    border-color: #00c853;
}

.affiliate-btn[title*="Humble"]:hover {
    border-color: #cc3333;
}

.affiliate-btn[title*="GOG"]:hover {
    border-color: #86328a;
}

.affiliate-btn[title*="CDKeys"]:hover {
    border-color: #e91e63;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden { display: none; }
.visible { display: block; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.3s ease;
}
