:root {
    --bg-dark: #0a0b0d;
    --glass-bg: rgba(15, 15, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent-red: #ff3e3e;
    --accent-blue: #3388ff;
    --accent-silver: #f0f0f0;
    --text-primary: #ffffff;
    --text-secondary: #d1d1d1; /* High contrast improved */
    --glow-red: 0 0 20px rgba(255, 51, 51, 0.3);
    --glow-blue: 0 0 20px rgba(51, 136, 255, 0.3);
    --glow-silver: 0 0 20px rgba(240, 240, 240, 0.2);
    --primary-bg: #050508;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body.dark-theme {
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px; /* Optimized for mobile */
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 100%; /* Ensure glass panels don't overflow */
}

/* Animations */
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }
.blink { color: var(--accent-red); animation: blink 1s infinite; }

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 11, 13, 0.8);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrap on mobile */
}

@media (max-width: 767px) {
    header {
        padding: 10px 0;
    }
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 15px;
        font-size: 12px;
    }
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-red);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }

/* Social Intelligence Waterfall (Masonry) */
.social-intelligence {
    margin-top: 40px;
    column-count: 3;
    column-gap: 20px;
}

.social-card {
    break-inside: avoid;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.social-card:hover {
    transform: scale(1.02);
}

.social-card.x-post {
    background: rgba(15, 20, 25, 0.7);
    border-left: 4px solid #1d9bf0;
    max-width: 100%; /* Prevent overflow */
}

.social-card.reddit-post {
    background: rgba(255, 69, 0, 0.05);
    border-left: 4px solid #ff4500;
}

.social-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.social-platform {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.social-user {
    font-weight: bold;
    font-size: 14px;
}

.social-content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.social-footer {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #888;
}

@media (max-width: 900px) {
    .social-intelligence {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .social-intelligence {
        column-count: 1;
    }
}

.latest-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    overflow: hidden;
    border-radius: 20px;
}

.article-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.article-body {
    padding: 25px;
}

.article-body h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.article-body p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Hero Section - Mobile First */
.hero-section {
    padding: 40px 0;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
    .hero-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 40px;
        align-items: center;
    }
}

.video-container {
    padding: 10px;
    position: relative;
    overflow: hidden;
    align-self: start;
}

.hero-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    opacity: 0.9;
    filter: sepia(0.2) contrast(1.1);
}

.video-embed {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--glow-blue);
    border: 1px solid var(--glass-border);
}

.info-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1.h1-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff, #a0a0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
    color: var(--accent-red);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.meta-info {
    list-style: none;
    margin-bottom: 30px;
}

.meta-info li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-secondary);
}

.meta-info strong { color: #fff; }

.cta-group {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--accent-red);
    color: #fff;
    box-shadow: var(--glow-red);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn:hover { transform: translateY(-3px); }

/* Concept */
.concept-section {
    padding: 40px 0;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 15px;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--text-secondary);
}

/* Countdown */
.countdown-section {
    padding: 40px 0;
    text-align: center;
}

.countdown-box {
    padding: 40px;
}

.countdown-box h2 {
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.flip-clock {
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .flip-clock {
        gap: 20px;
    }
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span {
    font-size: 48px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    background: #1a1a1e;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.time-block label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Gameplay Table - Mobile First */
.gameplay-section {
    padding: 60px 0;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .gameplay-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .gameplay-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gameplay-card {
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.gameplay-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.gameplay-card h3 {
    color: var(--accent-red);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gameplay-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .gameplay-grid {
        grid-template-columns: 1fr;
    }
}

/* Lawsuit Watch / News */
.warning-panel {
    border-left: 4px solid var(--accent-red);
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.warning-panel h2 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 25px;
    font-size: 24px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: start;
}

.news-date {
    font-size: 11px;
    font-weight: 900;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 4px;
}

.news-content h4 {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.news-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.news-content span {
    color: var(--text-primary);
    font-weight: 700;
}

/* Comments Section Redesign */
.comment-item {
    position: relative;
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 12px;
    transition: transform 0.2s;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-author {
    font-weight: 800;
    color: var(--accent-blue);
    font-size: 14px;
}

.comment-meta {
    font-size: 11px;
    color: var(--text-secondary);
}

.comment-body {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.comment-footer {
    display: flex;
    gap: 20px;
    align-items: center;
}

.comment-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.action-btn:hover { color: var(--text-primary); }
.action-btn.up:hover { color: var(--accent-silver); }
.action-btn.down:hover { color: #ff4444; }
.action-btn.reply:hover { color: var(--accent-blue); }

.vote-count { font-size: 12px; min-width: 20px; text-align: center; }

/* Nested Replies */
.comment-replies {
    margin-top: 15px;
    padding-left: 30px;
    border-left: 2px solid var(--glass-border);
}

.reply-input-area {
    margin-top: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.reply-input-area.active { display: flex; }

.reply-input-area input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 8px 12px;
    color: white;
    font-size: 13px;
}

/* Social Feed Waterfall */
.social-feed {
    margin-top: 30px;
}

.waterfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.social-card {
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 13px;
}

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

.social-platform {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
}

.platform-x { background: #000; color: #fff; }
.platform-reddit { background: #ff4500; color: #fff; }

.social-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Cleanup Investigation Link */
.read-more {
    color: var(--accent-blue) !important;
    text-decoration: underline;
    font-weight: 700;
}

.read-more:visited {
    color: var(--accent-blue) !important;
}

/* How to Play Panel Polish */
.how-to-panel {
    padding: 50px;
    border-left: 5px solid var(--accent-blue);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.steam-link-btn {
    background: #1b2838;
    color: #66c0f4;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid #2a475e;
    transition: all 0.3s;
}

.steam-link-btn:hover {
    background: #2a475e;
    color: white;
}

.mechanics-grid {
    display: grid;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}

.social-content {
    color: #999;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
}

.social-footer {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #555;
    font-family: monospace;
}

/* Specific Brands */
.x-post { border-left: 4px solid #1d9bf0; }
.reddit-post { border-left: 4px solid #ff4500; }

.x-post .social-user { color: #fff; }
.reddit-post .social-user { color: #fff; }

.live-status {
    margin-top: 40px;
    padding: 20px;
    background: rgba(240, 240, 240, 0.03);
    border: 1px solid rgba(240, 240, 240, 0.1);
    font-family: monospace;
    font-size: 14px;
    color: var(--accent-silver);
}

@media (max-width: 800px) {
    .social-intelligence { columns: 1; }
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.article-card {
    padding: 25px;
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-8px);
}

.badge-blue {
    display: inline-block;
    background: rgba(0, 102, 255, 0.2);
    color: #00d2ff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 10px;
}

.badge-red {
    display: inline-block;
    background: rgba(255, 51, 51, 0.2);
    color: #ff3333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* Article Specific Image Fixes - Optimized Size */
.case-study .comparison-visual {
    height: auto;
    width: 100%;
    max-width: 650px;
    margin: 0 auto 25px auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.case-study .comparison-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Tag Styles */
.tag-soon {
    font-size: 10px;
    background: var(--accent-blue);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    opacity: 0.8;
}

/* Trailer Section */
.video-wrapper {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Coming Soon Styling */
.soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.soon-item.locked {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(0, 210, 255, 0.3);
    border-radius: 12px;
    text-align: center;
    color: var(--text-secondary);
    transition: all 0.3s;
    filter: grayscale(1);
}

.soon-item.locked::after {
    content: "UNDER DEVELOPMENT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 14px;
    font-weight: 900;
    color: var(--accent-blue);
    opacity: 0.1;
    white-space: nowrap;
}

.soon-item.locked span {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* How to Play Card Polish */
.mechanic-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: transform 0.2s;
}

.mechanic-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}
.meter-container {
    padding: 40px;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 800;
}

.label-hype { color: var(--accent-blue); }
.label-hate { color: var(--accent-red); }

.progress-bar {
    height: 30px;
    background: #1a1a1e;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    border: 1px solid var(--glass-border);
}

.hype-segment {
    background: var(--accent-blue);
    box-shadow: var(--glow-blue);
    transition: width 0.5s ease;
}

.hate-segment {
    background: var(--accent-red);
    box-shadow: var(--glow-red);
    transition: width 0.5s ease;
}

.vote-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.vote-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
}

.vote-btn.hype { background: var(--accent-blue); color: #fff; }
.vote-btn.hate { background: var(--accent-red); color: #fff; }

/* Origin Dex */
.origin-dex {
    padding: 60px 0;
}

.section-header { margin-bottom: 40px; }
.section-header h2 { font-family: 'Outfit', sans-serif; font-size: 32px; }
.section-header p { color: var(--text-secondary); }

.origin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.origin-card {
    overflow: hidden;
    transition: transform 0.3s;
}

.origin-card:hover { transform: translateY(-5px); }

.comparison-visual {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #1a1a1e;
}

.comparison-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to show full image */
    background: #0a0a0c;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.coming-soon-tag {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.seo-section {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
}

.seo-section h2 {
    font-size: 32px;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.seo-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
}

.origin-card:hover .comparison-visual img {
    transform: scale(1.1);
}

/* Similarity Voter */
.similarity-voter {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.voter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.voter-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.voter-value {
    font-size: 14px;
    font-weight: 900;
    color: var(--accent-red);
}

.voter-bar {
    height: 6px;
    background: #1a1a1e;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.voter-progress {
    height: 100%;
    background: var(--accent-red);
    box-shadow: var(--glow-red);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Origin Dex Similarity Voting */
.voter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.vote-sm {
    background: transparent;
    font-size: 10px;
    padding: 6px 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    transition: all 0.3s;
    border-radius: 4px;
}

/* CLONE Button - Primary Red */
.vote-sm.clone {
    border: 1px solid var(--accent-red);
    color: #fff;
}

.vote-sm.clone:hover {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(183, 28, 28, 0.4);
}

/* ORIGINAL Button - Neutral Silver */
.vote-sm.original {
    border: 1px solid #444;
    color: #888;
}

.vote-sm.original:hover {
    border-color: #fff;
    color: #fff;
}

.vote-sm:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.similarity-label {
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 700;
}

.similarity-bar {
    height: 4px;
    background: #111;
    border-radius: 2px;
    overflow: hidden;
    margin: 12px 0;
    border: 1px solid #222;
}

.similarity-fill {
    height: 100%;
    background: var(--accent-red);
    box-shadow: 0 0 10px rgba(255, 62, 62, 0.3);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.voter-actions {
    display: flex;
    gap: 8px;
}

.vote-btn {
    flex: 1;
    padding: 6px 0;
    font-size: 10px;
    font-weight: 800;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.vote-btn.clone:hover {
    background: rgba(255, 51, 51, 0.1);
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.vote-btn.original:hover {
    background: rgba(51, 136, 255, 0.1);
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.card-content {
    padding: 20px;
}

.card-content h3 { font-family: 'Outfit', sans-serif; margin-bottom: 10px; font-size: 18px; }
.card-content p { font-size: 14px; color: var(--text-secondary); }

/* Tables & Wiki */
.wiki-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 60px 0;
}

.wiki-category { padding: 30px; }
.wiki-category h3 { margin-bottom: 20px; color: var(--accent-blue); }
.wiki-category ul { list-style: none; }
.wiki-category li { margin-bottom: 15px; }
.wiki-category a { color: #fff; text-decoration: none; border-bottom: 1px dashed var(--accent-blue); }

.reqs-table {
    width: 100%;
    border-collapse: collapse;
}

.reqs-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 14px;
}

/* Soon Grid */
.soon-section { padding: 40px 0; }
.soon-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.soon-item {
    flex: 1;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed var(--glass-border);
    border-radius: 16px;
    color: var(--text-secondary);
}

.soon-item.locked { cursor: not-allowed; }

/* FAQ Enhancements */
.faq-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    margin-top: 40px;
}

.faq-item {
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.faq-question {
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-size: 19px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.faq-answer {
    color: #bbb;
    line-height: 1.7;
    font-size: 15.5px;
}

/* Comments */
.comment-section { padding: 60px 0; }
.comment-form { padding: 30px; margin-bottom: 40px; }
.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1e;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    margin-bottom: 15px;
}

.comments-list { display: flex; flex-direction: column; gap: 20px; }

.site-footer {
    background: #050508;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 40px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    max-width: 250px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s;
    padding: 5px 10px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
}

.social-icon:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.footer-nav-col h4 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 25px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav-col ul {
    list-style: none;
}

.footer-nav-col li {
    margin-bottom: 12px;
}

.footer-nav-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-nav-col a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-column ul li a:hover {
    color: #fff;
}

/* --- Ultra-Premium Forensic Dossier System --- */
.dossier-mode {
    background-color: #050505 !important;
    position: relative;
    color: #d1d1d1; /* Neutral grey-white text */
}

/* Data Grid Background Subtlety - Neutral */
.dossier-mode::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
}

.case-study {
    border: 1px solid #222; /* Very subtle grey border */
    background: #080808;
    margin-bottom: 120px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.9);
    border-radius: 0;
    position: relative;
}

.case-top-bar {
    background: #111; /* Clean dark header */
    color: #fff; /* Pure white text */
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    padding: 15px 20px;
    font-size: 10px;
    letter-spacing: 1px; /* Reduced for mobile */
    border-bottom: 1px solid #222;
}

@media (min-width: 768px) {
    .case-top-bar {
        padding: 15px 30px;
        font-size: 11px;
        letter-spacing: 3px;
    }
}

.case-body-split {
    display: flex;
    flex-direction: column; /* Vertical on mobile */
}

@media (min-width: 1100px) {
    .case-body-split {
        flex-direction: row; /* Horizontal on desktop */
    }
    .case-evidence {
        flex: 1.4;
        border-right: 1px solid #1a1a1a;
    }
    .case-analysis {
        flex: 1;
    }
}

.case-evidence {
    padding: 0; /* Flush image layout */
    background: #000;
    overflow: hidden;
    position: relative;
}

.case-evidence img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.9);
    display: block; /* Avoid inline spacing issues */
}

.case-evidence:hover img {
    transform: scale(1.02);
    filter: brightness(1);
}

.case-analysis {
    padding: 60px 80px;
    background: #080808;
    border-top: 1px solid #1a1a1a;
}

.status-badge {
    background: #fff; /* High contrast black on white */
    color: #000;
    border: none;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.similarity-score {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-left: 15px;
    font-family: monospace;
}

/* Hype vs Hate Meter Section */
.meter-section {
    padding: 100px 0;
    text-align: center;
}

.meter-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
}

.label-hype { 
    color: #fff; 
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
.label-hate { 
    color: var(--accent-red); 
    text-shadow: 0 0 10px rgba(255, 62, 62, 0.3);
}

.progress-bar {
    height: 12px;
    background: #1a1a1a;
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #333;
}

.hype-segment {
    background: var(--accent-blue);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.hate-segment {
    background: var(--accent-red);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 62, 62, 0.2);
}

.vote-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap; /* Stack on tiny screens */
}

.vote-btn {
    padding: 14px 40px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    border-radius: 4px;
    min-height: 48px; /* High mobility accessibility */
}

.vote-btn.hype:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.vote-btn.hate {
    border-color: var(--accent-red);
    color: #fff;
}

.vote-btn.hate:hover {
    background: var(--accent-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 62, 62, 0.4);
}

.case-text h3 {
    font-family: 'Outfit', sans-serif;
    color: #fff; 
    text-shadow: none;
    font-weight: 900;
    font-size: 32px;
    margin: 30px 0;
    letter-spacing: -1px;
}

.case-text p {
    color: #999; /* Clean grey text */
    font-size: 17px;
    line-height: 1.9;
}

.forensic-note {
    border-left: 3px solid #fff;
    background: #111;
    padding: 30px;
    margin-top: 50px;
    position: relative;
    font-family: monospace;
    font-size: 14px;
    color: #fff;
}

.forensic-note::before {
    content: "SYSTEM_RECAP";
    position: absolute;
    top: -12px; left: 20px;
    font-size: 10px;
    background: #000;
    color: #666;
    padding: 2px 10px;
    border: 1px solid #222;
}

@media (max-width: 1000px) {
    .case-body-split {
        grid-template-columns: 1fr;
    }
    .case-evidence {
        height: 350px;
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
    }
}

/* Link Button Styling */
.view-more {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 20px;
}

.link-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-red), #900);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(183, 28, 28, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.link-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(183, 28, 28, 0.5);
    background: white;
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.link-btn:active {
    transform: translateY(0);
}

/* Site Footer */
.site-footer {
    background: #050508;
    padding: 60px 0 30px; 
    border-top: 1px solid var(--glass-border);
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack on mobile */
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1.5fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-info .logo {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    font-family: 'Outfit';
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Protected Comment System - Bureau Silver Style */
#comments {
    margin-top: 120px;
    padding-top: 80px;
    border-top: 1px solid #222;
}

.comment-box {
    max-width: 800px;
    margin: 0 auto;
}

.comment-form {
    background: #080808;
    padding: 40px;
    border: 1px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.comment-form h3 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: monospace;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    border-radius: 0;
}

.input-group textarea {
    height: 150px;
    resize: vertical;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #fff;
    outline: none;
    background: #151515;
}

.turnstile-container {
    margin-bottom: 30px;
}

.comment-submit {
    width: 100%;
    background: #fff;
    color: #000;
    border: none;
    padding: 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-submit:hover {
    background: #ccc;
    transform: translateY(-2px);
}

.comment-submit:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.comment-feedback {
    margin-top: 20px;
    padding: 15px;
    font-family: monospace;
    font-size: 13px;
    display: none;
}

.feedback-error {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border-left: 3px solid #ff4444;
    display: block;
}

.feedback-success {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-left: 3px solid #fff;
    display: block;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
        margin-bottom: 30px;
    }
}

/* Post & Article Styling */
.page-content { padding: 60px 0; max-width: 900px; margin: 0 auto; }
.post-header { text-align: center; margin-bottom: 60px; }
.post-header h1 { font-family: 'Outfit', sans-serif; font-size: 42px; margin-bottom: 20px; color: #fff; }
.post-meta { color: var(--text-secondary); font-size: 14px; font-weight: 600; }

.post-body {
    padding: 50px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--accent-red);
    font-size: 28px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.post-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 20px;
}

.post-body p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #ccc;
    font-size: 16px;
}

.post-body ul { margin-bottom: 30px; padding-left: 20px; }
.post-body li { margin-bottom: 12px; color: #bbb; line-height: 1.6; }


.gameplay-grid {
    padding: 20px;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .gameplay-grid {
        padding: 40px;
        border-radius: 24px;
    }
}
