:root {
    --bg: #1b1a1a;
    --head-bg: #232121;
    --fg: #ffffff;
    --card-bg: #272221;
    --border: #e2e8f0;
    --primary: #e57046;
    --gray: #ffffff;
    --accent: #f1f5f9;
    --nav-bg: rgba(255, 255, 255, 0.8);
}

body { max-width: 1100px; margin: auto; padding: 20px 20px 120px 20px; font-family: -apple-system, sans-serif; }

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

p{
    color: var(--fg);
}

.status-bar {
    background-color: var(--head-bg);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    justify-content: center;
    padding: 16px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.nav-btn{
    color: var(--bg);
    background-color: var(--fg);
}

@media (max-width: 1140px) {
    .status-bar {
        padding: 10px 20px;
    }
}

.status-bar {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #10b981;
    display: inline-block;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.head-title{
    color: var(--primary);
    margin-top: 25px;
    font-weight: bold;
}

.bottom-nav {
    position: fixed; 
    bottom: 0; left: 0; right: 0;
    display: flex; 
    justify-content: center; 
    padding: 20px; 
    z-index: 2000;
    pointer-events: none;;
}
.bottom-nav button { 
    pointer-events: auto;
    margin: 0 5px; 
    border-radius: 4px; 
    font-weight: bold;
    border: 1px solid var(--border);;
    color: var(--bg);
    transition: all 0.2s;
    border-color: var(--bg);
}

.bottom-nav button.active { 
    background: var(--primary); 
    color: var(--bg);
    border-color: var(--primary);
}

.button.outline:hover {
    background-color: var(--primary);
    color: var(--bg);
    border-color: var(--primary);
    cursor: pointer;
    transform: translateY(-1px); 
}

a.outline.button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.card a { text-decoration: none; color: inherit; display: block; height: 100%; }
.card { 
    border: 1px solid var(--border); padding: 20px; border-radius: 10px; 
    background: var(--card-bg); transition: all 0.2s ease-in-out, border-color 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);}

.meta { font-size: 0.75rem; font-weight: bold; margin-bottom: 12px; display: flex; justify-content: space-between; }
.source { color: var(--primary); text-transform: uppercase; }
.date { color: var(--gray); }

.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; color: var(--fg); }

.tweet-card p { font-size: 1rem; color: var(--fg); line-height: 1.5; margin: 0; white-space: pre-wrap; }
.news-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--fg); font-weight: bold; }
.news-card p { font-size: 0.95rem; color: var(--fg); line-height: 1.6; }
.youtube-card img { width: 100%; border-radius: 6px; margin-bottom: 6px; aspect-ratio: 16/9; object-fit: cover; }
.youtube-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--fg); font-weight: bold;}

#filter-menu { display: none; background: var(--card-bg); padding: 20px; border: 1px solid var(--border); border-radius: 8px; margin: 20px 0; color: var(--fg); }
.checklist { display: flex; gap: 12px; flex-wrap: wrap; color: var(--fg); }
.check-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; cursor: pointer; border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; }

.special-btn{ color: var(--fg)}
.special-list{ color: var(--fg)}

.hidden { display: none; }

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--fg);
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.feature-item span {
    color: var(--primary);
    font-weight: 1000;
}