body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans Malayalam', Arial, sans-serif;
    background: #f4f6f8;
    color: #222;
}

a {
    text-decoration: none;
    color: inherit;
}

/* TOP BAR */
.top-strip {
    background: #111827;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-tagline {
    opacity: 0.85;
}

/* MAIN HEADER */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 22px 0;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.site-logo {
    font-size: 48px;
    font-weight: 900;
    color: #b30000;
    line-height: 1.1;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.site-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-top: 4px;
}

/* SEARCH */
.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search-form input {
    min-width: 280px;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
}

.search-form button {
    background: #b30000;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
    cursor: pointer;
}

/* NAVBAR */
.main-navbar {
    background: #b30000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.nav-menu li a {
    display: block;
    color: #fff;
    font-weight: 700;
    padding: 15px 18px;
    transition: 0.2s;
}

.nav-menu li a:hover {
    background: rgba(255,255,255,0.12);
}

/* BREAKING BAR */
.breaking-bar {
    background: #fff3f3;
    border-left: 6px solid #dc3545;
    padding: 14px 18px;
    margin: 20px 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 17px;
}

.breaking-bar a {
    color: #111;
}

/* SECTION TITLE */
.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    border-left: 6px solid #b30000;
    padding-left: 14px;
}

/* NEWS CARD */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0,0,0,0.07);
    transition: 0.25s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.news-card .card-body {
    padding: 18px;
}

.news-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 10px;
}

.news-small .news-title {
    font-size: 20px;
}

.news-meta {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
}

.news-card p {
    font-size: 17px;
    line-height: 1.8;
}

/* CATEGORY CHIP */
.category-chip {
    display: inline-block;
    background: #fef2f2;
    color: #b30000;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* SIDEBAR */
.sidebar-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.06);
    margin-bottom: 22px;
}

.sidebar-box h4 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 800;
}

.latest-list a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    line-height: 1.8;
}

.latest-list a:last-child {
    border-bottom: none;
}

/* ADS */
.ad-box img {
    width: 100%;
    border-radius: 14px;
}

/* NEWS CONTENT PAGE */
.news-content img {
    width: 100%;
    border-radius: 16px;
    margin: 18px 0;
}

.news-content p {
    font-size: 19px;
    line-height: 2;
}

/* PAGINATION */
.pagination .page-link {
    color: #b30000;
    border-radius: 10px !important;
    margin-right: 6px;
}

.pagination .page-item.active .page-link {
    background: #b30000;
    border-color: #b30000;
    color: #fff;
}

/* FOOTER */
.footer {
    background: #111827;
    color: #fff;
    padding: 40px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-brand {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.footer-social a {
    color: #fff;
    margin: 0 10px;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .site-logo {
        font-size: 36px;
    }

    .site-subtitle {
        font-size: 13px;
    }

    .search-form {
        width: 100%;
    }

    .search-form input {
        min-width: unset;
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu li a {
        padding: 12px 14px;
    }

    .news-card img {
        height: 200px;
    }

    .news-title {
        font-size: 21px;
    }

    .sidebar-box h4 {
        font-size: 24px;
    }
}

/* PREMIUM HERO SECTION */
.hero-news-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.hero-news-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.2), transparent);
    color: #fff;
}

.hero-title {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.35;
    margin: 12px 0;
}

.hero-title a {
    color: #fff;
}

.hero-meta {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.hero-overlay p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

/* MINI TOP STACK */
.top-side-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-top-card {
    display: flex;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0,0,0,0.06);
    min-height: 116px;
}

.mini-top-card img {
    width: 120px;
    height: 116px;
    object-fit: cover;
}

.mini-top-content {
    padding: 12px 14px;
    flex: 1;
}

.mini-top-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.55;
    margin-bottom: 8px;
}

.mini-top-meta {
    font-size: 13px;
    color: #6b7280;
}

/* HOMEPAGE EXTRA POLISH */
.news-small .news-card img,
.news-small img {
    height: 220px;
}

.section-title {
    margin-top: 10px;
}

/* MOBILE HERO */
@media (max-width: 768px) {
    .hero-news-card {
        min-height: 360px;
    }

    .hero-news-card img {
        height: 360px;
    }

    .hero-overlay {
        padding: 18px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .mini-top-card {
        min-height: 100px;
    }

    .mini-top-card img {
        width: 100px;
        height: 100px;
    }

    .mini-top-title {
        font-size: 16px;
    }
}

/* PREMIUM ARTICLE PAGE */
.article-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.article-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.45;
    margin-bottom: 18px;
    color: #111;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 22px;
    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
}

.article-summary {
    font-size: 22px;
    line-height: 1.9;
    color: #333;
    font-weight: 600;
    margin-bottom: 24px;
    background: #f9fafb;
    padding: 18px 20px;
    border-left: 5px solid #b30000;
    border-radius: 12px;
}

.article-image-wrap {
    margin-bottom: 28px;
}

.article-main-image {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    max-height: 540px;
}

.article-content {
    font-size: 22px;
    line-height: 2.1;
    color: #1f2937;
}

.article-content p {
    margin-bottom: 24px;
}

.article-video-box {
    margin-top: 35px;
    background: #fff;
    border-radius: 16px;
}

.video-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.related-section .section-title {
    margin-bottom: 20px;
}

.sidebar-sticky-wrap {
    position: sticky;
    top: 20px;
}

/* MOBILE ARTICLE */
@media (max-width: 768px) {
    .article-card {
        padding: 18px;
    }

    .article-title {
        font-size: 30px;
        line-height: 1.45;
    }

    .article-summary {
        font-size: 18px;
        line-height: 1.8;
    }

    .article-content {
        font-size: 19px;
        line-height: 1.95;
    }

    .article-meta-row {
        font-size: 14px;
        gap: 10px;
    }

    .article-main-image {
        max-height: 300px;
    }

    .video-title {
        font-size: 24px;
    }

    .sidebar-sticky-wrap {
        position: static;
    }
}

/* SHARE BUTTONS */
.share-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    margin-top: 8px;
}

.share-label {
    font-weight: 800;
    font-size: 16px;
    color: #111;
    margin-right: 4px;
}

.share-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #111827; }
.share-btn.telegram { background: #229ED9; }
.share-btn.email { background: #6b7280; }
.share-btn.copy { background: #b30000; }
.share-btn.instagram { background: #E1306C; }

/* MOBILE SHARE */
@media (max-width: 768px) {
    .share-box {
        gap: 8px;
    }

    .share-btn {
        padding: 9px 14px;
        font-size: 13px;
    }
}