body {
    background-color: #ffffff;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.reader-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 40px 20px;
}

@media (max-width: 1024px) {
    .reader-container {
        grid-template-columns: 1fr;
    }
}

.feature-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 32px;
    margin-bottom: 24px;
}

.category-badge {
    display: inline-block;
    background-color: #dc2626;
    color: white;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.article-meta {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

h1 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.sub-border {
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    border-left: 6px solid #dc2626;
    padding-left: 20px;
    margin: 32px 0;
    color: #1a1a1a;
}

.ai-brief {
    background-color: #fdf2f2;
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 24px;
    margin: 40px 0;
}

.ai-brief h4 {
    margin: 0 0 10px 0;
    color: #dc2626;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ai-brief p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    font-style: italic;
}

.blog-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    margin: 32px 0;
}

.blog-card h4 {
    margin-top: 0;
    color: #dc2626;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
}

.operator-highlight {
    background: #fefce8;
    border: 1px dashed #ca8a04;
    padding: 24px;
    border-radius: 20px;
    margin: 40px 0;
}

.operator-highlight h4 {
    margin: 0 0 10px 0;
    font-size: 11px;
    color: #a16207;
    font-weight: 900;
}

.deep-context {
    background-color: #0f172a;
    color: #f1f5f9;
    padding: 32px;
    border-radius: 24px;
    margin-top: 64px;
}

.deep-context h4 {
    margin-top: 0;
    color: #ef4444;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.deep-context p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.8;
    color: #fff;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
}

.data-table th {
    background: #f8fafc;
    padding: 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: #64748b;
    text-align: left;
}

.data-table td {
    padding: 14px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

p {
    margin-bottom: 24px;
    font-size: 17px;
    color: #334155;
}

.sidebar {
    position: sticky;
    top: 40px;
    align-self: start;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.widget-header h3 {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: #dc2626;
    margin: 0;
    letter-spacing: 0.1em;
}

.pulse-item {
    border-left: 2px solid #ef4444;
    padding-left: 12px;
    margin-bottom: 16px;
}

.pulse-item time {
    font-size: 9px;
    font-weight: 900;
    color: #94a3b8;
}

.pulse-item p {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin: 2px 0 0 0;
}

.poll-box {
    background: #0f172a;
    color: #fff;
    border-radius: 24px;
    padding: 24px;
}

.poll-question {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.4;
    color: #f1f5f9;
}

.poll-btn {
    width: 100%;
    text-align: left;
    padding: 12px 16px 20px 16px;
    /* Increased bottom padding to make room for the poll-bar */
    margin-bottom: 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;

    /* THE FIX: Red border and 10% transparent red background */
    background: rgba(220, 38, 38, 0.1);
    color: #fff;
    border: 1px solid #ef4444;

    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
}

.poll-btn:hover {
    /* Slightly deeper red on hover */
    background: rgba(220, 38, 38, 0.2);
    border-color: #ff0000;
}

.poll-bar {
    height: 6px;
    /* Slimmer bar for a cleaner 2026 look */
    border-radius: 3px;
    background: #dc2626;
    position: absolute;
    bottom: 6px;
    left: 12px;
    right: 12px;
    /* Set a right constraint so it doesn't leak out */
    width: 0%;
    /* This will be controlled by JS or inline style */
}

.trending-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.trending-num {
    font-size: 32px;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 0.8;
}

.trending-text h5 {
    margin: 0 0 4px 0;
    font-size: 10px;
    font-weight: 900;
    color: #dc2626;
    text-transform: uppercase;
}

.trending-text p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.trending-text p a:hover {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #dc2626 !important;
    line-height: 1.3;
}

.footer {
    background-color: #0f1113;
    color: #ffffff;
    padding: 64px 0 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-strip {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .table-responsive table{
        font-size: 11px
    }
}

.table-responsive table td, th, tr{
    border-width: 1px;
    padding: 5px;
}

/* Branding */
.brand-flex {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 24px;
}

.logo-box {
    background-color: #2530b1;
    padding: 6px;
    border-radius: 6px;
    box-shadow: 0 10px 15px -3px rgba(255, 59, 59, 0.1);
}

.logo-svg {
    width: 24px;
    height: 24px;
    fill: white;
    display: block;
}

.brand-name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin: 0;
}

.italic-red {
    color: #2530b1;
    font-style: italic;
    margin-left: 2px;
}

.tagline {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.625;
    max-width: 320px;
}

/* Social Icons */
.social-flex {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s;
    color: #9ca3af;
    text-decoration: none;
}

.social-icon:hover.yt {
    background-color: #2530b1;
    color: white;
}

.social-icon:hover.fb {
    background-color: #1877f2;
    color: white;
}

.social-icon:hover.ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae1 90%);
    color: white;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Navigation */
.col-title {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #2530b1;
    margin-bottom: 24px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    margin-bottom: 16px;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-link:hover {
    color: white;
}

/* Trending Section */
.trending-item {
    display: block;
    text-decoration: none;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
    padding-left: 16px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.trending-item:hover {
    border-left-color: #2530b1;
}

.trending-cat {
    font-size: 10px;
    font-weight: 900;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 4px;
}

.trending-title {
    font-size: 14px;
    font-weight: 700;
    color: #d1d5db;
    margin: 0;
    line-height: 1.25;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.trending-item:hover .trending-title {
    color: white;
}

/* Bottom Strip */
.bottom-strip {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.copyright {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-link {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: white;
}

/* Custom Scrollbar for the list */
.custom-scrollbar::-webkit-scrollbar {
    width: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 10px;
}

#commentsList {
    max-height: 350px;
    /* Adjust height as needed */
    overflow-y: auto;
    padding-right: 8px;
    /* For scrollbar spacing */
}

/* Custom scrollbar */
#commentsList::-webkit-scrollbar {
    width: 5px;
}

#commentsList::-webkit-scrollbar-track {
    background: transparent;
}

#commentsList::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 10px;
}