* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}
body { background-color: #f8f9fa; color: #333; }
.container { width: 85%; margin: 0 auto; max-width: 1200px; }
a { text-decoration: none; color: inherit; }

/* Header & Navbar */
.main-header { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; padding: 20px 0; }
.header-top { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { font-weight: 900; font-size: 28px; }
.logo span { color: #dc2626; margin: 0 5px; }

.main-navbar { background-color: #dc2626; }
.main-navbar ul { display: flex; list-style: none; }
.main-navbar ul li a { display: block; padding: 15px 20px; color: #fff; font-weight: bold; transition: 0.3s; }
.main-navbar ul li a:hover { background-color: #b91c1c; }

/* Breaking News */
.breaking-news { background-color: #111; color: #fff; padding: 10px 0; display: flex; align-items: center; }
.breaking-news .badge { background-color: #dc2626; padding: 5px 15px; font-weight: bold; margin-left: 15px; }

/* Main Grid Layout */
.main-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin: 30px 0; }
.hero-section { display: grid; grid-template-columns: 1.5fr 1fr; gap: 15px; margin-bottom: 30px; }
.main-story { position: relative; background: #000; color: #fff; height: 400px; }
.side-stories { display: flex; flex-direction: column; gap: 15px; }
.side-story { position: relative; background: #000; color: #fff; height: 192px; }
.story-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.story-title { position: absolute; bottom: 0; right: 0; left: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); font-size: 18px; }

/* Cards & Content */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.news-card { background: #fff; border-bottom: 4px solid #dc2626; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-card .card-body { padding: 15px; }
.news-card h3 { font-size: 16px; line-height: 1.6; }

/* Sidebar */
.sidebar-box { background: #fff; padding: 20px; margin-bottom: 20px; border-top: 4px solid #0f172a; }
.sidebar-box h2 { font-size: 18px; margin-bottom: 15px; border-bottom: 2px solid #eee; padding-bottom: 5px; }

/* Footer */
.main-footer { background-color: #0f172a; color: #94a3b8; text-align: center; padding: 20px 0; margin-top: 40px; }