/* ── Conspiracy Theories Blog Styles ── */
:root {
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    --primary-color: #ff2d2d;
    --primary-dim: rgba(255, 45, 45, 0.15);
    --secondary-color: #7000ff;
    --text-color: #ffffff;
    --text-muted: #888888;
    --text-dim: #555555;
    --border-color: rgba(255, 45, 45, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.06);
}

/* ── Global Dark Theme ── */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    background: var(--bg-color);
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0000 0%, #1a0000 40%, var(--bg-color) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 45, 45, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(112, 0, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../hero-banner.png') center/cover no-repeat;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(255, 45, 45, 0.4));
    animation: eyePulse 3s ease-in-out infinite;
}

@keyframes eyePulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255, 45, 45, 0.4)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(255, 45, 45, 0.6)); }
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 12px;
    font-weight: 300;
}

.hero-tagline {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 20px;
    font-style: italic;
    letter-spacing: 1px;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* ── Feed Header ── */
.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.feed-header h2 {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.article-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 4px 12px;
    background: var(--primary-dim);
    border-radius: 20px;
    letter-spacing: 1px;
}

/* ── Articles Grid ── */
.articles-grid {
    display: grid;
    gap: 28px;
}

/* ── Article Card ── */
.article-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.article-card:hover {
    border-color: var(--border-color);
    box-shadow: 0 4px 24px rgba(255, 45, 45, 0.1);
    transform: translateY(-2px);
}

.article-card.featured {
    border-color: rgba(255, 45, 45, 0.2);
}

.article-image {
    position: relative;
    min-height: 280px;
    background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
    overflow: hidden;
}

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

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

.article-image.fallback::after {
    content: '👁️';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #1a0000, #0a0a0a);
}

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    z-index: 2;
}

.article-category.political {
    background: rgba(255, 45, 45, 0.9);
    color: #fff;
}

.article-category.aliens {
    background: rgba(0, 242, 255, 0.9);
    color: #000;
}

.article-category.government {
    background: rgba(112, 0, 255, 0.9);
    color: #fff;
}

.article-body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.read-time {
    color: var(--text-dim);
}

.article-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
    color: var(--text-color);
}

.article-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 4px 12px;
    background: var(--primary-dim);
    border: 1px solid rgba(255, 45, 45, 0.2);
    border-radius: 20px;
    font-size: 0.72rem;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: gap 0.2s ease;
    margin-top: auto;
}

.article-link:hover {
    gap: 10px;
}

/* ── Coming Soon ── */
.coming-soon {
    text-align: center;
    margin-top: 60px;
    padding: 48px 32px;
    background: var(--bg-card);
    border: 1px dashed var(--border-subtle);
    border-radius: 16px;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.coming-soon h3 {
    font-size: 1.3rem;
    margin: 0 0 12px 0;
    color: var(--text-color);
    letter-spacing: 1px;
}

.coming-soon p {
    color: var(--text-muted);
    margin: 0 0 24px 0;
    font-size: 0.95rem;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.topic-tag {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.topic-tag:hover {
    border-color: var(--border-color);
    color: var(--primary-color);
    background: var(--primary-dim);
}

/* ── Footer ── */
.site-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    margin-top: 8px !important;
    font-size: 0.75rem !important;
    color: var(--text-dim) !important;
    font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .article-card {
        grid-template-columns: 1fr;
    }

    .article-image {
        min-height: 220px;
        max-height: 280px;
    }

    .article-body {
        padding: 24px 20px;
    }

    .article-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 320px;
    }

    .hero-icon {
        font-size: 3rem;
    }

    .hero h1 {
        letter-spacing: 4px;
    }

    .feed-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .article-card {
        border-radius: 12px;
    }

    .article-body {
        padding: 20px 16px;
    }

    .article-tags {
        gap: 6px;
    }

    .topic-tags {
        gap: 8px;
    }
}
