/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #f5f7fb;

    color: #111827;

    font-family:
        Arial,
        "Noto Sans Devanagari",
        sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1200px, 94%);
    margin: auto;
}


/* =====================================================
   TOP BAR
===================================================== */

.top-bar {
    background: #111827;

    color: #d1d5db;

    font-size: 12px;
}

.top-bar-inner {
    height: 36px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.top-left {
    display: flex;

    gap: 10px;

    align-items: center;
}

.top-separator {
    color: #4b5563;
}

.top-social {
    display: flex;

    gap: 8px;
}

.top-social a {
    width: 22px;
    height: 22px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #374151;

    color: #fff;

    font-size: 11px;
}


/* =====================================================
   PREMIUM HEADER
===================================================== */

.premium-header {
    background: #fff;

    position: sticky;

    top: 0;

    z-index: 1000;

    box-shadow:
        0 4px 20px rgba(0,0,0,.06);
}

.header-main {
    min-height: 78px;

    display: flex;

    align-items: center;

    gap: 25px;
}


/* LOGO */

.premium-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #111827;

    min-width: 210px;
}

.logo-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e11d2e;

    color: #fff;

    border-radius: 12px;

    font-size: 23px;
}

.logo-text {
    display: flex;

    flex-direction: column;
}

.logo-text strong {
    color: #e11d2e;

    font-size: 22px;

    font-weight: 900;

    line-height: 1;
}

.logo-text small {
    color: #6b7280;

    font-size: 10px;

    margin-top: 5px;
}


/* DESKTOP MENU */

.desktop-menu {
    display: flex;

    align-items: center;

    gap: 4px;

    flex: 1;
}

.desktop-menu a {
    color: #374151;

    padding: 10px 11px;

    font-size: 14px;

    font-weight: 700;

    border-radius: 7px;

    white-space: nowrap;

    transition: .25s;
}

.desktop-menu a:hover,
.desktop-menu a.active {
    color: #e11d2e;

    background: #fff1f2;
}


/* HEADER ACTION */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

.search-button {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f3f4f6;

    color: #111827;

    font-size: 17px;
}

.search-button:hover {
    background: #e11d2e;

    color: white;
}


/* MOBILE BUTTON */

.mobile-menu-button {
    display: none;

    border: 0;

    width: 42px;
    height: 42px;

    border-radius: 8px;

    background: #e11d2e;

    color: white;

    font-size: 21px;

    cursor: pointer;
}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;

    top: 0;

    right: -320px;

    width: 300px;

    height: 100vh;

    background: #fff;

    z-index: 2000;

    padding: 20px;

    box-shadow:
        -10px 0 30px rgba(0,0,0,.15);

    transition: .35s;

    overflow-y: auto;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 18px;

    margin-bottom: 10px;

    border-bottom: 1px solid #eee;
}

.mobile-menu-header strong {
    font-size: 20px;
}

.mobile-menu-header button {
    border: 0;

    background: #f3f4f6;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    cursor: pointer;
}

.mobile-menu > a {
    display: block;

    padding: 14px 8px;

    border-bottom: 1px solid #f1f1f1;

    color: #111827;

    font-weight: 700;
}

.mobile-menu > a:hover {
    color: #e11d2e;
}

.mobile-overlay {
    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.55);

    z-index: 1500;

    opacity: 0;

    visibility: hidden;

    transition: .3s;
}

.mobile-overlay.show {
    opacity: 1;

    visibility: visible;
}


/* =====================================================
   BREAKING NEWS
===================================================== */

.breaking-wrapper {
    background: #fff;

    border-bottom: 1px solid #e5e7eb;
}

.breaking-container {
    height: 46px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.breaking-label {
    height: 32px;

    min-width: 125px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    background: #e11d2e;

    color: white;

    font-size: 11px;

    font-weight: 900;

    border-radius: 5px;

    flex-shrink: 0;
}

.breaking-dot {
    width: 7px;
    height: 7px;

    background: #fff;

    border-radius: 50%;

    animation: blink 1s infinite;
}

@keyframes blink {

    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .2;
    }

}

.breaking-content {
    overflow: hidden;

    flex: 1;

    margin-left: 15px;

    white-space: nowrap;
}

.breaking-track {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    animation:
        breakingMove 45s linear infinite;
}

.breaking-track:hover {
    animation-play-state: paused;
}

.breaking-track a,
.breaking-track span {
    color: #374151;

    font-size: 13px;

    font-weight: 600;
}

.ticker-separator {
    color: #e11d2e !important;

    font-size: 20px !important;
}

@keyframes breakingMove {

    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }

}


/* =====================================================
   FEATURED SLIDER
===================================================== */

.featured-section {
    margin-top: 25px;

    margin-bottom: 30px;
}

.featured-slider {
    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 18px;

    background: #111827;

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);
}

.featured-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .6s ease,
        visibility .6s;
}

.featured-slide.active {
    opacity: 1;

    visibility: visible;
}

.featured-slide > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.featured-gradient {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.08) 100%
        );
}

.featured-content {
    position: absolute;

    left: 55px;

    bottom: 55px;

    max-width: 720px;

    color: white;
}

.featured-category {
    display: inline-block;

    padding: 6px 12px;

    background: #e11d2e;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;
}

.featured-content h1 {
    font-size: 42px;

    line-height: 1.22;

    margin: 15px 0;
}

.featured-content h1 a {
    color: white;
}

.featured-content p {
    color: #e5e7eb;

    line-height: 1.6;

    font-size: 15px;

    max-width: 650px;
}

.featured-meta {
    color: #d1d5db;

    font-size: 12px;

    display: flex;

    gap: 8px;

    align-items: center;

    margin: 15px 0;
}

.featured-button {
    display: inline-block;

    background: #e11d2e;

    color: white;

    padding: 11px 18px;

    border-radius: 7px;

    font-size: 13px;

    font-weight: 800;
}

.featured-button:hover {
    background: #b91c1c;
}


/* SLIDER BUTTONS */

.slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.18);

    backdrop-filter: blur(8px);

    color: white;

    cursor: pointer;

    font-size: 18px;

    z-index: 10;
}

.slider-btn:hover {
    background: #e11d2e;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}


/* DOTS */

.slider-dots {
    position: absolute;

    bottom: 20px;

    right: 30px;

    display: flex;

    gap: 7px;

    z-index: 10;
}

.slider-dots button {
    width: 9px;
    height: 9px;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.5);

    cursor: pointer;

    padding: 0;
}

.slider-dots button.active {
    width: 25px;

    border-radius: 10px;

    background: #e11d2e;
}


/* =====================================================
   LATEST SECTION
===================================================== */

.latest-section {
    margin-bottom: 50px;
}

.section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 20px;
}

.section-heading span {
    color: #e11d2e;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;
}

.section-heading h2 {
    margin: 5px 0 0;

    font-size: 30px;
}

.view-all {
    color: #e11d2e;

    font-size: 14px;

    font-weight: 800;
}


/* NEWS GRID */

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.modern-news-card {
    background: white;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    overflow: hidden;

    transition: .3s;
}

.modern-news-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

.modern-news-image {
    position: relative;
}

.modern-news-image img {
    width: 100%;

    height: 205px;

    object-fit: cover;
}

.news-category {
    position: absolute;

    bottom: 12px;

    left: 12px;

    padding: 5px 9px;

    border-radius: 5px;

    background: #e11d2e;

    color: white;

    font-size: 10px;

    font-weight: 800;
}

.modern-news-content {
    padding: 17px;
}

.modern-news-content h3 {
    margin: 0 0 8px;

    font-size: 18px;

    line-height: 1.4;
}

.modern-news-content h3 a {
    color: #111827;
}

.modern-news-content p {
    color: #6b7280;

    font-size: 13px;

    line-height: 1.6;
}

.news-card-bottom {
    border-top: 1px solid #eee;

    padding-top: 12px;

    margin-top: 12px;

    display: flex;

    justify-content: space-between;
}

.news-card-bottom small {
    color: #9ca3af;

    font-size: 11px;
}

.news-card-bottom a {
    color: #e11d2e;

    font-size: 12px;

    font-weight: 800;
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width: 1000px) {

    .desktop-menu {
        gap: 0;
    }

    .desktop-menu a:nth-child(n+6) {
        display: none;
    }

    .news-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width: 750px) {

    .top-left span:nth-child(n+3) {
        display: none;
    }

    .top-social {
        display: none;
    }

    .header-main {
        min-height: 65px;

        justify-content: space-between;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-button {
        display: flex;

        align-items: center;
        justify-content: center;
    }

    .premium-logo {
        min-width: auto;
    }

    .logo-text strong {
        font-size: 19px;
    }

    .logo-text small {
        font-size: 9px;
    }

    .logo-icon {
        width: 39px;
        height: 39px;

        font-size: 19px;
    }

    .breaking-container {
        height: 43px;
    }

    .breaking-label {
        min-width: 105px;

        font-size: 9px;
    }

    .featured-slider {
        height: 440px;

        border-radius: 13px;
    }

    .featured-content {
        left: 25px;
        right: 25px;
        bottom: 35px;
    }

    .featured-content h1 {
        font-size: 28px;
    }

    .featured-content p {
        font-size: 13px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;

        font-size: 14px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

}


@media(max-width: 450px) {

    .container {
        width: 92%;
    }

    .search-button {
        width: 36px;
        height: 36px;
    }

    .mobile-menu-button {
        width: 36px;
        height: 36px;
    }

    .featured-slider {
        height: 410px;
    }

    .featured-content h1 {
        font-size: 24px;
    }

    .featured-content p {
        display: none;
    }

    .featured-meta {
        font-size: 10px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

}
/* =====================================================
   PREMIUM FOOTER
===================================================== */

.site-footer {
    margin-top: 60px;

    background: #111827;

    color: #d1d5db;
}

.footer-grid {
    padding: 50px 0;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 40px;
}

.footer-logo {
    color: #fff;

    font-size: 24px;

    font-weight: 900;

    margin-bottom: 15px;
}

.footer-brand p {
    max-width: 400px;

    color: #9ca3af;

    line-height: 1.7;

    font-size: 14px;
}

.footer-links h3,
.footer-social h3 {
    color: #fff;

    margin: 0 0 18px;

    font-size: 16px;
}

.footer-links a {
    display: block;

    color: #9ca3af;

    font-size: 13px;

    margin-bottom: 12px;

    transition: .2s;
}

.footer-links a:hover {
    color: #e11d2e;

    padding-left: 4px;
}

.social-buttons {
    display: flex;

    gap: 8px;
}

.social-buttons a {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #1f2937;

    color: #fff;

    border-radius: 8px;

    font-weight: 800;

    transition: .25s;
}

.social-buttons a:hover {
    background: #e11d2e;

    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #1f2937;

    padding: 18px 0;

    text-align: center;

    color: #6b7280;

    font-size: 12px;
}


/* =====================================================
   MOBILE FOOTER
===================================================== */

@media(max-width: 750px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

}


@media(max-width: 500px) {

    .footer-grid {
        grid-template-columns: 1fr;

        padding: 35px 0;
    }

    .footer-brand p {
        max-width: 100%;
    }

}
/* =====================================================
   HOMEPAGE COMPLETE DESIGN
===================================================== */

.home-featured {
    margin: 25px 0 30px;
}

.home-featured-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 18px;
    background: #111827;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.home-featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
}

.home-featured-slide.active {
    opacity: 1;
    visibility: visible;
}

.home-featured-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-featured-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90),
            rgba(0,0,0,.48),
            rgba(0,0,0,.08)
        );
}

.home-featured-content {
    position: absolute;
    left: 55px;
    bottom: 55px;
    max-width: 700px;
    color: #fff;
}

.home-featured-category {
    display: inline-block;
    background: #e11d2e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 900;
}

.home-featured-content h1 {
    margin: 15px 0 10px;
    font-size: 40px;
    line-height: 1.25;
}

.home-featured-content h1 a {
    color: #fff;
}

.home-featured-content p {
    color: #e5e7eb;
    line-height: 1.6;
}

.home-featured-meta {
    color: #d1d5db;
    font-size: 12px;
    margin: 15px 0;
}

.home-read-button {
    display: inline-block;
    padding: 11px 18px;
    background: #e11d2e;
    color: #fff;
    border-radius: 7px;
    font-weight: 800;
    font-size: 13px;
}

.home-slider-prev,
.home-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    color: #fff;
    cursor: pointer;
    z-index: 5;
    font-size: 18px;
}

.home-slider-prev {
    left: 18px;
}

.home-slider-next {
    right: 18px;
}

.home-slider-prev:hover,
.home-slider-next:hover {
    background: #e11d2e;
}

.home-slider-dots {
    position: absolute;
    right: 30px;
    bottom: 25px;
    display: flex;
    gap: 7px;
    z-index: 5;
}

.home-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
}

.home-slider-dots button.active {
    width: 25px;
    border-radius: 10px;
    background: #e11d2e;
}


/* AD */

.home-ad {
    height: 90px;
    margin: 25px 0;
    background: #fff;
    border: 1px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 10px;
    letter-spacing: 1px;
}

.home-ad.large {
    height: 150px;
}


/* SECTION */

.home-section {
    margin: 35px 0;
}

.home-section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 20px;
}

.home-section-title span {
    color: #e11d2e;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.home-section-title h2 {
    margin: 5px 0 0;
    font-size: 28px;
}

.home-section-title > a {
    color: #e11d2e;
    font-weight: 800;
    font-size: 13px;
}


/* LATEST NEWS */

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.home-news-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: .3s;
}

.home-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

.home-news-image {
    position: relative;
}

.home-news-image img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.home-news-image span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 5px 9px;
    background: #e11d2e;
    color: #fff;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 800;
}

.home-news-body {
    padding: 17px;
}

.home-news-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

.home-news-body h3 a {
    color: #111827;
}

.home-news-body p {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

.home-news-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 12px;
    font-size: 11px;
    color: #9ca3af;
}

.home-news-meta a {
    color: #e11d2e;
    font-weight: 800;
}


/* TRENDING */

.home-two-column {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.home-trending {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.trending-item {
    display: grid;
    grid-template-columns: 35px 85px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid #eee;
}

.trending-item:last-child {
    border-bottom: 0;
}

.trending-number {
    color: #e11d2e;
    font-size: 18px;
    font-weight: 900;
}

.trending-image img {
    width: 85px;
    height: 65px;
    object-fit: cover;
    border-radius: 7px;
}

.trending-content h3 {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.4;
}

.trending-content h3 a {
    color: #111827;
}

.trending-content small {
    color: #9ca3af;
    font-size: 10px;
}

.home-sidebar-ad {
    min-height: 350px;
    border: 1px dashed #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #9ca3af;
    gap: 15px;
}

.home-sidebar-ad span {
    font-size: 10px;
}


/* CATEGORY */

.category-news-block {
    background: #fff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.category-news-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e11d2e;
    margin-bottom: 18px;
}

.category-news-heading h2 {
    font-size: 21px;
    margin: 0 0 10px;
}

.category-news-heading a {
    color: #e11d2e;
    font-size: 12px;
    font-weight: 800;
}

.category-news-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.category-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.category-card h3 {
    font-size: 14px;
    line-height: 1.4;
    margin: 9px 0 5px;
}

.category-card h3 a {
    color: #111827;
}

.category-card small {
    color: #9ca3af;
    font-size: 10px;
}


/* PHOTO / VIDEO */

.visual-news-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.visual-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    background: #111827;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.visual-card:hover img {
    transform: scale(1.06);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
}

.visual-overlay span {
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.visual-overlay h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 7px 0 0;
}

.visual-overlay h3 a {
    color: #fff;
}


/* EMPTY */

.home-empty,
.home-no-news {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    color: #6b7280;
}


/* MOBILE */

@media(max-width: 900px) {

    .home-news-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .category-news-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .visual-news-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .home-two-column {
        grid-template-columns: 1fr;
    }

}


@media(max-width: 600px) {

    .home-featured-slider {
        height: 420px;
        border-radius: 12px;
    }

    .home-featured-content {
        left: 25px;
        right: 25px;
        bottom: 35px;
    }

    .home-featured-content h1 {
        font-size: 26px;
    }

    .home-featured-content p {
        display: none;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .category-news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .visual-news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .visual-card {
        height: 200px;
    }

    .home-section-title h2 {
        font-size: 23px;
    }

    .trending-item {
        grid-template-columns: 30px 75px 1fr;
    }

    .trending-image img {
        width: 75px;
        height: 60px;
    }

}