      /* GLOBAL */
body {
    background: #f5f7fa;
    font-family: 'Inter', sans-serif;
    color: #111;
}

/* NAVBAR */
.navbar {
    background: #0d0d0d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
}

/* CONTAINER */
.container {
    max-width: 1200px;
}

/* CARDS */
.card {
    border: none;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* HEADINGS */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.4;
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #0d6efd !important;
}

/* BADGE */
.badge {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
}

/* HERO */
.hero-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.hero-img {
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.hero-overlay h2 {
    font-size: 28px;
}

/* NEWS LIST */
.news-list {
    border-radius: 14px;
    overflow: hidden;
}

.news-img {
    object-fit: cover;
    height: 100%;
}

/* SIDEBAR */
.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    border-left: 4px solid #0d6efd;
    padding-left: 10px;
    margin-bottom: 15px;
}

/* TRENDING */
.trending-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.trending-item a {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.trending-item a:hover {
    color: #0d6efd;
}

/* ARTICLE PAGE */
.article-content {
    font-size: 17px;
    text-align: justify;
    line-height: 1.9;
    color: #333;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 24px;
}

.article-content h3 {
    margin-top: 25px;
    font-size: 20px;
}

.article-content img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 10px;
}

.article-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}
.article-content a{
    color: blue;
}

/* CATEGORY LIST */
.list-group-item {
    border: none;
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.list-group-item:hover {
    background: #f1f5f9;
}
/* NAVBAR */
.navbar {
    background: #0d0d0d;
    padding: 12px 0;
    z-index: 999;
}

.navbar-brand {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 1px;
}

.nav-link {
    color: #ccc !important;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 14px;
}

.nav-link:hover {
    color: #fff !important;
}

/* SEARCH */
.navbar input {
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 13px;
}
.breaking-bar {
    background: #111;
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
}
/* Category cards */
.news-card {
    border: none;
    border-radius: 12px;
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.news-card h5 a:hover {
    color: #0d6efd;
}

/* Pagination */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
}

footer a:hover {
    color: #0d6efd !important;
}