* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
}
        
body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: rgb(26, 32, 44);
            color: #e8eaed;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: rgb(26, 32, 44);
            padding: 20px 0;
            border-bottom: 1px solid #2d3142;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 600;
            color: #fff;
        }
        
        .tagline {
            color: #6b7280;
            font-size: 13px;
            margin-top: 4px;
            font-style: italic;
        }
        
        .date {
            color: #9ca3af;
            font-size: 14px;
            margin-top: 6px;
        }
        
        .header-icons {
            display: flex;
            gap: 15px;
        }
        
        .icon-btn {
            background: none;
            border: none;
            color: #9ca3af;
            cursor: pointer;
            font-size: 20px;
            padding: 8px;
            transition: color 0.2s;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .icon-btn:hover {
            color: #fff;
        }
        
        @media (max-width: 480px) {
            .icon-btn {
                font-size: 18px;
                min-width: 40px;
                min-height: 40px;
                padding: 6px;
            }
        }
        
        nav {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .nav-link {
            color: #9ca3af;
            text-decoration: none;
            padding: 10px 0;
            font-size: 15px;
            transition: color 0.2s;
            position: relative;
            min-height: 44px;
            display: flex;
            align-items: center;
        }
        
        .nav-link:hover {
            color: #fff;
        }
        
        .nav-link.active {
            color: #fff;
            border-bottom: 2px solid #6366f1;
        }
        
        @media (max-width: 768px) {
            nav {
                gap: 16px;
            }
            
            .nav-link {
                font-size: 14px;
                padding: 8px 0;
            }
        }
        
        @media (max-width: 480px) {
            nav {
                gap: 12px;
            }
            
            .nav-link {
                font-size: 13px;
                padding: 6px 0;
                min-height: 40px;
            }
        }
        main {
            padding: 40px 20px;
            padding-top: 20px;
        }
        
        @media (max-width: 768px) {
            main {
                padding: 24px 16px;
                padding-top: 16px;
            }
        }
        
        @media (max-width: 480px) {
            main {
                padding: 16px 12px;
                padding-top: 12px;
            }
        }
        
        article {
            padding: 25px 0;
            border-bottom: 1px solid #2d3142;
            transition: background-color 0.2s;
        }
        
        article:hover {
            background-color: rgba(255, 255, 255, 0.02);
        }
        
        .news-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 12px;
        }
        
        .news-title {
            font-size: 20px;
            font-weight: 500;
            color: #fff;
            flex: 1;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1.4;
        }
        
        .news-title:hover {
            color: #818cf8;
        }
        
        @media (max-width: 768px) {
            .news-title {
                font-size: 18px;
            }
        }
        
        @media (max-width: 480px) {
            .news-title {
                font-size: 16px;
            }
        }
        
        .check-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #374151;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #6b7280;
            flex-shrink: 0;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .check-icon:hover {
            background-color: #4b5563;
        }
        
        .check-icon.checked {
            background-color: #6366f1;
            color: #fff;
        }
        
        .news-summary {
            color: #9ca3af;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 12px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        @media (max-width: 768px) {
            .news-summary {
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .news-summary {
                font-size: 13px;
                line-height: 1.5;
                margin-bottom: 10px;
            }
        }
        
        .news-meta {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        @media (max-width: 768px) {
            .news-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .news-meta {
                gap: 8px;
            }
        }
        
        .news-sources {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6b7280;
            font-size: 13px;
            flex-wrap: wrap;
            max-width: 100%;
            word-break: break-word;
            overflow: hidden;
        }
        
        .source-link {
            color: #818cf8;
            text-decoration: none;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            max-width: calc(100vw - 60px);
            overflow-wrap: break-word;
            word-break: break-word;
            hyphens: auto;
            padding: 4px 0;
            min-height: 20px;
        }
        
        .source-link:hover {
            color: #a5b4fc;
            text-decoration: underline;
        }
        
        .news-score {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6b7280;
            font-size: 13px;
            min-height: 20px;
            flex-shrink: 0;
        }
        
        .score-badge {
            background-color: #374151;
            color: #fbbf24;
            padding: 4px 10px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 12px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        
        .score-badge.high {
            background-color: rgba(251, 191, 36, 0.1);
            color: #fbbf24;
        }
        
        .score-badge.medium {
            background-color: rgba(147, 197, 253, 0.1);
            color: #93c5fd;
        }
        
        .score-badge.low {
            background-color: rgba(156, 163, 175, 0.1);
            color: #9ca3af;
        }
        
        @media (max-width: 768px) {
            .news-score {
                font-size: 12px;
            }
            
            .score-badge {
                font-size: 11px;
                padding: 3px 8px;
            }
        }
        
        @media (max-width: 480px) {
            .news-score {
                font-size: 11px;
            }
            
            .score-badge {
                font-size: 10px;
                padding: 2px 6px;
            }
        }
        
        .external-link-icon {
            font-size: 11px;
            opacity: 0.7;
        }
        .tagline {
            color: #6b7280;
            font-size: 13px;
            margin-top: 4px;
            font-style: italic;
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }

        @media (max-width: 640px) {
            body {
                font-size: 16px;
            }

            .container {
                padding: 0 16px;
            }

            .tagline {
                font-size: 12px;
            }

            .date {
                font-size: 13px;
                margin-top: 8px;
            }

            .news-header {
                flex-direction: column;
                gap: 10px;
                margin-bottom: 10px;
            }

            .caught-up-message {
                font-size: 20px;
            }

            .caught-up-subtext {
                font-size: 14px;
            }

            .caught-up-link {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }

            .caught-up-section {
                padding: 40px 12px;
            }

            .caught-up-message {
                font-size: 18px;
            }

            .caught-up-subtext {
                font-size: 13px;
            }
        }
  /* =========================
   About Page (Minimalist)
========================= */

.about-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 20px 100px;
}

.about-title {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 56px;
}

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.about-section p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-section ul {
    margin-left: 18px;
    margin-top: 12px;
}

.about-section ol {
    margin-left: 18px;
    margin-top: 12px;
}

.about-section li {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-section a {
    color: #818cf8;
    text-decoration: none;
}

.about-section a:hover {
    text-decoration: underline;
}

.about-footer {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid #2d3142;
    font-size: 15px;
    color: #9ca3af;
}

.about-footer .signoff {
    margin-top: 14px;
    color: #d1d5db;
}

/* Caught Up Section */
.caught-up-section {
    text-align: center;
    padding: 60px 20px; 
    margin-top: 40px;
}

.caught-up-message {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.caught-up-subtext {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 24px;
    line-height: 1.6;
}

.caught-up-link {
    display: inline-block;
    color: #818cf8;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 16px;
    border: 1px solid #818cf8;
    border-radius: 6px;
    transition: all 0.2s;
}

.caught-up-link:hover {
    background-color: #818cf8;
    color: #1a202c;
}

/* Mobile - responsive text and spacing */


.plus-jakarta-sans-font {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200 800;
  font-style: normal;
}