
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

.navbar {
    background: #000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #ff0000;
}

.logo h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #ff0000;
}

.tagline {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 1px;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 1.2rem;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff0000;
}

.theme-toggle {
    cursor: pointer;
    font-size: 1.3rem;
    color: white;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://picsum.photos/id/1015/1600/900') center/cover;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breaking {
    background: #ff0000;
    padding: 8px 20px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #ccc;
}

.read-more {
    background: #ff0000;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1rem;
}

.category {
    color: #ff0000;
    font-weight: bold;
    font-size: 0.8rem;
}

.news-card h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.news-card a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
}

.sidebar {
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
}

.facebook-badge {
    background: #1877f2;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

.facebook-badge i {
    font-size: 2rem;
}

.facebook-badge button {
    background: white;
    color: #1877f2;
    border: none;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.sidebar ul {
    list-style: none;
    margin-top: 1rem;
}

.sidebar li {
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    border-top: 1px solid #ff0000;
    color: #666;
}

footer a {
    color: #1877f2;
    text-decoration: none;
}

/* Light mode */
body.light-mode {
    background: #f0f0f0;
    color: #111;
}

body.light-mode .news-card,
body.light-mode .sidebar {
    background: white;
}

body.light-mode .navbar {
    background: white;
}

body.light-mode .tagline {
    color: #555;
}

body.light-mode .theme-toggle {
    color: #111;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .container { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
}
