﻿:root {
    --gk-primary: #0f7fbb;
    --gk-primary-dark: #0b3e78;
    --gk-accent: #c3192f;
    --gk-accent-soft: #ffd9df;
    --gk-bg: #f4f8ff;
    --gk-surface: #ffffff;
    --gk-text: #132a4a;
    --gk-muted: #5b6f88;
    --gk-border: #d3e1f0;
    --gk-shadow: 0 14px 30px rgba(11, 48, 89, 0.1);
    --gk-radius: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans Devanagari", "Poppins", sans-serif;
    color: var(--gk-text);
    background: radial-gradient(circle at top right, #dff2ff 0%, #f4f8ff 45%, #f8f7fb 100%);
}

html,
body {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--gk-primary);
}

.site-header {
    backdrop-filter: blur(6px);
    z-index: 1040;
    margin-top: 0 !important;
    top: 0;
}

.topbar {
    background: linear-gradient(90deg, var(--gk-primary-dark), var(--gk-primary));
    color: #fff;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    margin: 0;
}

.topbar-date {
    font-weight: 600;
}

.np-date-line,
.np-time-line {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.date-divider {
    opacity: 0.65;
}

.topbar-social a,
.nav-right-tools a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    transition: transform 0.2s ease, background 0.2s ease;
}

.topbar-social a:hover,
.nav-right-tools a:hover {
    background: var(--gk-accent);
    transform: translateY(-2px);
    color: #fff;
}

.brandbar {
    background: #fff;
    border-bottom: 1px solid var(--gk-border);
}

.brand {
    min-height: 90px;
}

.brand img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.nav-main {
    background: #fff;
    border-bottom: 1px solid var(--gk-border);
}

.nav-main .navbar-nav {
    gap: 0.35rem;
    align-items: center;
}

.nav-main .nav-link {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    color: #243b53;
}

.nav-main .nav-link:hover,
.nav-main .nav-link.active {
    background: rgba(10, 77, 104, 0.1);
    color: var(--gk-primary);
}

.nav-right-tools {
    border-left: 1px solid var(--gk-border);
    padding-left: 0.75rem;
    margin-left: auto;
}

.breaking-strip {
    padding: 1rem 0;
}

.ad-box {
    background: #fff;
    border: 1px solid var(--gk-border);
    border-radius: 14px;
    box-shadow: var(--gk-shadow);
    overflow: hidden;
}

.ad-box img {
    width: 100%;
    height: auto;
    display: block;
}

.breaking-wrap {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gk-border);
    box-shadow: var(--gk-shadow);
    overflow: hidden;
}

.breaking-badge {
    white-space: nowrap;
    background: linear-gradient(90deg, var(--gk-accent), #de364b);
    color: #fff;
    font-weight: 700;
    padding: 0.8rem 1rem;
}

.breaking-marquee {
    overflow: hidden;
    width: 100%;
}

.breaking-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    min-width: 100%;
    padding-right: 2rem;
    animation: scrollNews 34s linear infinite;
}

.breaking-track a {
    position: relative;
    font-weight: 600;
    color: #1f3a57;
    white-space: nowrap;
    padding-left: 1rem;
}

.breaking-track a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gk-accent);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.breaking-track.no-news {
    animation: none;
    width: 100%;
    padding: 0.8rem 0.7rem;
}

@keyframes scrollNews {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hero-card,
.side-news-card,
.news-card,
.category-lead-card,
.category-list-card,
.sidebar-block {
    background: var(--gk-surface);
    border-radius: var(--gk-radius);
    border: 1px solid var(--gk-border);
    box-shadow: var(--gk-shadow);
}

.hero-image-link,
.news-thumb,
.side-thumb,
.category-lead-thumb {
    display: block;
    overflow: hidden;
    border-radius: calc(var(--gk-radius) - 1px);
}

.hero-image-link img,
.news-thumb img,
.side-thumb img,
.category-lead-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hero-image-link,
.news-thumb,
.side-thumb,
.category-lead-thumb,
.single-post-image {
    position: relative;
}

.hero-image-link::after,
.news-thumb::after,
.side-thumb::after,
.category-lead-thumb::after,
.single-post-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.24) 48%, rgba(255, 255, 255, 0) 72%);
    transform: translateX(-110%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.hero-card:hover .hero-image-link::after,
.news-card:hover .news-thumb::after,
.side-news-card:hover .side-thumb::after,
.category-lead-card:hover .category-lead-thumb::after,
.single-post-card:hover .single-post-image::after {
    transform: translateX(110%);
}

.hero-image-link img {
    height: 430px;
}

.side-thumb {
    height: 150px;
    border-radius: 12px;
}

.news-thumb {
    height: 190px;
}

.category-lead-thumb {
    height: 250px;
}

.hero-card:hover img,
.news-card:hover img,
.side-news-card:hover img,
.category-lead-card:hover img {
    transform: scale(1.05);
}

.hero-image-link img {
    animation: heroPulse 6s ease-in-out infinite;
}

.hero-content,
.news-body,
.side-content,
.category-lead-body {
    padding: 1rem 1.1rem 1.2rem;
}

.hero-content h1 {
    font-size: clamp(1.38rem, 2.3vw, 2rem);
    line-height: 1.4;
    margin: 0.8rem 0 0.8rem;
}

.news-body h3,
.category-lead-body h3 {
    font-size: 1.18rem;
    line-height: 1.45;
    margin: 0.65rem 0 0.55rem;
}

.side-content h3 {
    font-size: 1.02rem;
    line-height: 1.45;
    margin: 0.55rem 0;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(10, 77, 104, 0.11);
    color: var(--gk-primary);
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tag-pill.small {
    font-size: 0.74rem;
}

.meta-line,
small,
p {
    color: var(--gk-muted);
}

.meta-line {
    font-size: 0.87rem;
}

.section-head {
    margin-bottom: 1.05rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid #e2ebf4;
}

.section-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    font-size: 1.48rem;
    color: var(--gk-primary-dark);
}

.page-hero .hero-shell {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #fff;
    border: 1px solid var(--gk-border);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    font-weight: 600;
    color: #37536f;
    box-shadow: var(--gk-shadow);
}

.page-hero .hero-shell a {
    color: var(--gk-primary);
}

.section-head.compact h2 {
    font-size: 1.22rem;
}

.see-all {
    color: var(--gk-primary);
    font-size: 0.92rem;
    font-weight: 700;
}

.category-list-card {
    padding: 0.8rem;
}

.mini-news-item {
    display: block;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.mini-news-item:hover {
    background: #f3f8ff;
}

.mini-news-item + .mini-news-item {
    border-top: 1px solid var(--gk-border);
}

.mini-news-item h4 {
    font-size: 1rem;
    margin: 0 0 0.35rem;
    line-height: 1.4;
}

.sidebar-wrap {
    position: sticky;
    top: 118px;
}

.sidebar-block {
    padding: 1rem;
}

.trending-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.trending-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0.6rem;
    align-items: start;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--gk-border);
}

.trending-list li:last-child {
    border-bottom: 0;
}

.rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f7ff;
    color: var(--gk-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.86rem;
}

.trending-list h4,
.video-item h4 {
    margin: 0 0 0.3rem;
    font-size: 0.98rem;
    line-height: 1.4;
}

.video-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 0.6rem;
    align-items: start;
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--gk-border);
}

.video-item:last-child {
    border-bottom: 0;
}

.play {
    color: var(--gk-accent);
    font-size: 1.35rem;
    line-height: 1;
    padding-top: 0.1rem;
}

.empty-note {
    color: var(--gk-muted);
    font-size: 0.95rem;
}

.single-post-card {
    background: #fff;
    border: 1px solid var(--gk-border);
    border-radius: var(--gk-radius);
    box-shadow: var(--gk-shadow);
    overflow: hidden;
}

.single-post-head {
    padding: 1.25rem 1.25rem 1rem;
}

.single-post-head h1 {
    margin: 0.75rem 0 0.65rem;
    font-size: clamp(1.4rem, 2.6vw, 2.1rem);
    line-height: 1.45;
}

.meta-row {
    color: var(--gk-muted);
    font-size: 0.9rem;
}

.single-post-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.single-post-content {
    padding: 1.25rem;
    color: #23354a;
    font-size: 1.03rem;
    line-height: 1.9;
}

.single-post-content img,
.single-post-content iframe,
.single-post-content video,
.single-post-content table {
    max-width: 100%;
    height: auto;
}

.single-post-content p {
    color: #344b63;
}

.share-strip {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border-top: 1px solid var(--gk-border);
    padding: 1rem 1.25rem 1.2rem;
}

.share-strip span {
    color: var(--gk-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.share-strip a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef5fc;
    color: var(--gk-primary);
    transition: all 0.2s ease;
}

.share-strip a:hover {
    background: var(--gk-primary);
    color: #fff;
}

.pagination-wrap .pagination {
    gap: 0.35rem;
    flex-wrap: wrap;
}

.pagination-wrap .page-link {
    border-radius: 10px;
    border: 1px solid var(--gk-border);
    color: var(--gk-primary);
    font-weight: 600;
    min-width: 42px;
    text-align: center;
}

.pagination-wrap .page-item.active .page-link {
    background: var(--gk-primary);
    border-color: var(--gk-primary);
    color: #fff;
}

.pagination-wrap .page-item.disabled .page-link {
    color: #9aaec2;
}

.category-menu-list {
    display: flex;
    flex-direction: column;
}

.category-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.72rem 0.2rem;
    border-bottom: 1px solid var(--gk-border);
    color: #294661;
    font-weight: 600;
}

.category-menu-item:last-child {
    border-bottom: 0;
}

.category-menu-item.active,
.category-menu-item:hover {
    color: var(--gk-primary);
}

.site-footer {
    background: linear-gradient(160deg, #0b2f66 0%, #0f7fbb 68%, #1f4d9a 100%);
    color: #e8f5ff;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(195, 25, 47, 0.35), rgba(195, 25, 47, 0));
    right: -120px;
    top: -150px;
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 2;
}

.footer-top-intro {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    padding: 1rem 1.2rem;
}

.footer-top-intro h4 {
    margin: 0 0 0.4rem;
    color: #fff;
    font-size: 1.35rem;
}

.footer-top-intro p {
    color: #f3f9ff;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 1.2rem;
}

.footer-card h5 {
    color: #fff;
    margin-bottom: 0.95rem;
    font-size: 1.15rem;
}

.footer-content,
.footer-content * {
    color: #d7ebf9 !important;
}

.footer-content a {
    color: #fff4cc !important;
}

.footer-bottom {
    background: rgba(2, 20, 49, 0.58);
    font-size: 0.92rem;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    color: #fff;
    font-weight: 700;
}

.developer-badge:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.developer-badge img {
    width: 108px;
    height: 28px;
    max-width: 108px;
    max-height: 28px;
    object-fit: contain;
    display: block;
}

.gk-reveal {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gk-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes heroPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.035);
    }
    100% {
        transform: scale(1);
    }
}
}

@media (max-width: 991.98px) {
    .brand {
        min-height: 70px;
    }

    .brand img {
        max-height: 58px;
    }

    .hero-image-link img {
        height: 300px;
    }

    .news-thumb,
    .side-thumb,
    .category-lead-thumb {
        height: 200px;
    }

    .sidebar-wrap {
        position: static;
    }

    .breaking-track {
        animation-duration: 44s;
    }

    .single-post-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .nav-right-tools {
        border-left: 0;
        border-top: 1px solid var(--gk-border);
        padding-left: 0;
        padding-top: 0.8rem;
        margin-top: 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .topbar {
        font-size: 0.82rem;
    }

    .topbar-date {
        width: 100%;
        justify-content: center;
    }

    .date-divider {
        display: none;
    }

    .breaking-wrap {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0;
    }

    .breaking-badge {
        border-radius: 0;
    }

    .hero-image-link img,
    .news-thumb,
    .side-thumb,
    .category-lead-thumb {
        height: 220px;
    }

    .hero-content,
    .news-body,
    .side-content,
    .category-lead-body {
        padding: 0.9rem;
    }
}

