/* === BASIS === */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #111;
    color: #eee;
    margin: 0;
    line-height: 1.6;
    padding-top: 120px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* === HEADER === */
.main-header {
    text-align: center;
    margin-bottom: 30px;
}

.main-header h1 {
    color: #00ccff;
    margin: 0 0 10px;
    font-size: 2rem;
}

/* === NAVIGATION === */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-bottom: 2px solid #00ccff;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.action-btn {
    background: #00cc66;
    color: #111;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #00ee77;
}

.action-btn:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
}

.admin-btn {
    background: #222;
    color: #ffcc00;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 8px 12px;
    text-decoration: none;
    transition: 0.2s;
}

.admin-btn:hover {
    background: #333;
    color: #fff;
}

/* === REGIONEN === */
.region-section {
    margin-bottom: 50px;
}

.region-title {
    color: #00ccff;
    border-bottom: 2px solid #00ccff;
    padding-bottom: 10px;
    margin: 40px 0 20px;
    font-size: 1.5rem;
}

/* === QUELLEN-BLOCK === */
.source-block {
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.source-header {
    background: #252525;
    padding: 12px 15px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.source-header h3 {
    margin: 0;
    color: #00ccff;
    font-size: 1.1rem;
}

.article-count {
    color: #888;
    font-size: 0.9rem;
}

/* === ARTIKEL === */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-card {
    padding: 15px 20px;
    border-bottom: 1px solid #2a2a2a;
    transition: background 0.2s;
}

.news-card:hover {
    background: #222;
}

.news-card:last-child {
    border-bottom: none;
}

.news-card h4 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.news-card h4 a {
    color: #00ccff;
    text-decoration: none;
}

.news-card h4 a:hover {
    text-decoration: underline;
    color: #fff;
}

.news-card p {
    color: #bbb;
    font-size: 0.95rem;
    margin: 8px 0;
}

.card-meta {
    color: #666;
    font-size: 0.85rem;
}

/* === BIAS-INDICATOR === */
.bias-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

/* === INFO-BOX === */
.info-box {
    background: #2a2a1a;
    border: 1px solid #ffcc00;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #ffcc00;
}

.info-box code {
    background: #1a1a1a;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
}

/* === FOOTER === */
footer {
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
}

footer a {
    color: #00ccff;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }
    
    .top-nav {
        flex-wrap: wrap;
    }
    
    .main-header h1 {
        font-size: 1.5rem;
    }
}
