/*
Theme Name: Prime News Desk
Theme URI: https://github.com/google/antigravity
Author: Jitendra Kumar & Antigravity
Author URI: https://github.com/google/antigravity
Description: A premium dynamic WordPress theme for Hindi TV serial news, updates, spoilers, and gossips, matching the original design of Prime News Desk.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prime-news-desk
Tags: blog, news, custom-menu, featured-images, two-columns, dark-mode, light-mode
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* CSS variables for layout and theme colors */
:root {
    --primary-color: #e70000;
    --primary-hover: #c50000;
    --background: #f7f8fa;
    --surface: #ffffff;
    --surface-hover: #fafafa;
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-muted: #888888;
    --border-color: #e5e8eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
    --transition-speed: 0.3s;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-blur: blur(12px);
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    --font-eng: 'Outfit', sans-serif;
    --font-footer: 'Poppins', 'Outfit', sans-serif;
}

/* Dark theme overrides */
[data-theme="dark"] {
    --background: #0d0f12;
    --surface: #171a1f;
    --surface-hover: #1e2229;
    --text-primary: #f3f4f6;
    --text-secondary: #aaadb5;
    --text-muted: #6b7280;
    --border-color: #2a2f3a;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.35);
    --glass-bg: rgba(23, 26, 31, 0.85);
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    font-family: var(--font-hindi);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

body.admin-bar {
    margin-top: 0 !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top bar widgets */
.top-bar {
    background-color: #1a1e24;
    color: #ffffff;
    font-size: 13px;
    font-family: var(--font-eng);
    padding: 8px 0;
    border-bottom: 2px solid var(--primary-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-widget {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b9bec6;
}

/* Ticker Marquee */
.ticker-container {
    display: flex;
    align-items: center;
    background: #232832;
    border-radius: 4px;
    overflow: hidden;
    height: 30px;
    max-width: 450px;
}

.ticker-label {
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-left: 10px;
}

.ticker-scroll {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation: marquee 25s linear infinite;
    font-family: var(--font-hindi);
}

.ticker-item {
    display: inline-block;
    padding: 0 15px;
    color: #e2e5e9;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mini Scoreboard Widget */
.scoreboard {
    display: flex;
    align-items: center;
    background: #111418;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #2a2f3a;
    font-size: 12px;
    gap: 8px;
}

.live-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.score-text {
    font-weight: 500;
    color: #e2e8f0;
}

/* Weather Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b9bec6;
}

/* Header Area */
.site-header {
    background-color: var(--surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color var(--transition-speed) ease;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

/* Brand Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(231, 0, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-subtitle {
    font-size: 10px;
    font-family: var(--font-eng);
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Desktop Navigation Menu */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.nav-link {
    font-weight: 600;
    font-size: 16px;
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--text-primary);
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    background-color: var(--primary-color);
}

/* Make WordPress navigation menu style match design */
.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}
.desktop-nav ul li a {
    font-weight: 600;
    font-size: 16px;
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--text-primary);
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-block;
}
.desktop-nav ul li a:hover,
.desktop-nav ul li.current-menu-item a {
    color: #ffffff;
    background-color: var(--primary-color);
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--surface);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.action-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Hamburger mobile button */
.menu-toggle-btn {
    display: none;
}

/* Scrolling Sub-Nav Badges (Touch Category Slider) */
.sub-nav-scroll {
    background-color: var(--surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    transition: background-color var(--transition-speed) ease;
}

.sub-nav-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.sub-nav-wrapper {
    display: flex;
    gap: 10px;
}

.badge-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    background-color: var(--background);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    cursor: pointer;
}

.badge-tag:hover, .badge-tag.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

/* Main Grid Layout */
.main-news-section {
    padding: 30px 0;
}

.news-grid-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
}

/* Featured Hero Card */
.hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 460px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    background-color: #1a1e24;
}

.hero-img-wrapper {
    width: 100%;
    height: 100%;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card:hover .hero-img-wrapper img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #ffffff;
}

.category-label {
    align-self: flex-start;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.35;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-card:hover .hero-title {
    text-decoration: underline;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-eng);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Secondary stories column */
.sidebar-stories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-heading {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    margin-bottom: 5px;
}

.sidebar-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.news-card-row {
    display: flex;
    gap: 15px;
    background-color: var(--surface);
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.news-card-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(231, 0, 0, 0.2);
}

.row-img-wrapper {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.row-img-wrapper img {
    width: 100%;
    height: 100%;
}

.row-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--text-primary);
}

.news-card-row:hover .row-title {
    color: var(--primary-color);
}

.row-meta {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-eng);
}

/* Category Sections on Homepage */
.category-block {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-left: 12px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: var(--primary-color);
}

.see-all-btn {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    font-family: var(--font-eng);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--surface);
    cursor: pointer;
    transition: all 0.2s ease;
}

.see-all-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Category Grid Layouts */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.news-card-vertical {
    background-color: var(--surface);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card-vertical:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(231, 0, 0, 0.2);
}

.card-img-wrapper {
    height: 180px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.news-card-vertical:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-primary);
}

.news-card-vertical:hover .card-title {
    color: var(--primary-color);
}

.card-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-eng);
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.verified-icon {
    color: #3b82f6;
    display: flex;
}

/* Ad Simulator Banners */
.ad-banner {
    width: 100%;
    background: var(--surface);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 12px;
    font-family: var(--font-eng);
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.ad-label {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 9px;
    background: var(--border-color);
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
}

/* Site Footer */
.site-footer {
    background-color: #111418;
    color: #b9bec6;
    padding: 60px 0 30px 0;
    border-top: 4px solid var(--primary-color);
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.site-footer .logo-title {
    font-family: var(--font-footer);
    font-weight: 800;
}

.site-footer .logo-subtitle {
    font-family: var(--font-footer);
    font-weight: 700;
}

.footer-brand-desc {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #a0aec0;
    font-family: var(--font-hindi);
    font-weight: 600;
}

.footer-heading {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
    font-family: var(--font-footer);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Sub-grid for nested Category and Quick Links */
.footer-sub-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.footer-sub-col {
    display: flex;
    flex-direction: column;
}

.footer-links-styled {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-styled li {
    display: block;
}

.footer-links-styled a {
    font-size: 14px;
    color: #b9bec6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: var(--font-footer);
    font-weight: 700;
}

.footer-links-styled a svg {
    width: 6px;
    height: 10px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.footer-links-styled a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links-styled a:hover svg {
    transform: translateX(3px);
}

/* Column 3: Follow Us & Social Block */
.footer-rss-header-block {
    background-color: #1e232b;
    border: 1px solid #232832;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-rss-icon-circle {
    width: 42px;
    height: 42px;
    background-color: #f26522;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-rss-icon-circle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-rss-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rss-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    font-family: var(--font-footer);
}

.rss-desc {
    color: #a0aec0;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-footer);
}

.footer-whatsapp-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--font-footer);
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 25px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.15);
}

.footer-whatsapp-join-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.25);
    color: #ffffff;
}

.footer-whatsapp-join-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-round-icons-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.round-social-btn {
    width: 38px;
    height: 38px;
    background-color: #1e232b;
    border: 1px solid #232832;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b9bec6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.round-social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.round-social-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.round-social-btn.fb:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.round-social-btn.tw:hover {
    background-color: #000000;
    border-color: #333333;
}

.round-social-btn.ig:hover {
    background-color: #e1306c;
    border-color: #e1306c;
}

.round-social-btn.yt:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.round-social-btn.tg:hover {
    background-color: #0088cc;
    border-color: #0088cc;
}

.footer-bottom {
    border-top: 1px solid #232832;
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    font-family: var(--font-footer);
    font-weight: 700;
    color: #a0aec0;
}

@media (max-width: 480px) {
    .footer-sub-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Bottom Mobile Nav Bar */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 90;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 700;
    gap: 4px;
    flex: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bottom-nav-item.active {
    color: var(--primary-color);
}

.bottom-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav-icon svg {
    width: 22px;
    height: 22px;
}

/* Search Modal / Overlay */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.search-modal-container {
    width: 90%;
    max-width: 600px;
    background-color: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.search-modal.open .search-modal-container {
    transform: scale(1);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-title {
    font-size: 18px;
    font-weight: 700;
}

.search-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.search-input-wrapper {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--background);
}

.search-input-wrapper input {
    flex-grow: 1;
    border: none;
    background: none;
    padding: 14px;
    font-size: 16px;
    font-family: var(--font-hindi);
    color: var(--text-primary);
}

.search-submit-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

/* Dynamic Content Section & Article Viewer */
.view-panel {
    display: none;
}

.view-panel.active {
    display: block;
}

/* Article Detail Page Layout */
.article-detail-container {
    background-color: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    margin-bottom: 30px;
}

.article-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background-color: var(--background);
}

.article-back-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.article-category {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.article-headline {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.article-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 15px;
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;
    padding: 2px;
    background: linear-gradient(45deg, #1d9bf0, #e70000, #25d366, #1d9bf0);
    background-size: 300% 300%;
    animation: borderRotate 4s linear infinite, avatarPulse 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--surface);
    background-color: var(--surface);
}

.author-name {
    font-size: 14px;
    font-weight: 700;
}

.article-date {
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--font-eng);
}

.article-actions {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border: none;
}

.share-whatsapp { background-color: #25d366; }
.share-facebook { background-color: #1877f2; }
.share-copy { background-color: #64748b; }

.article-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    max-height: 500px;
    width: 100%;
}

.article-featured-img img {
    width: 100%;
    height: auto;
}

.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 18px;
}

/* Comments Section inside detail view */
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.comments-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.comment-textarea {
    width: 100%;
    height: 100px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-hindi);
    font-size: 14px;
    resize: none;
    background-color: var(--background);
    color: var(--text-primary);
}

.comment-submit-btn {
    align-self: flex-start;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment-submit-btn:hover {
    background-color: var(--primary-hover);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    background-color: var(--background);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--border-color);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
}

.commenter-name {
    font-weight: 700;
}

.comment-time {
    color: var(--text-muted);
}

.comment-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Animations */
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .news-grid-container {
        grid-template-columns: 1fr;
    }
    .hero-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Space for fixed bottom navbar */
    }

    .top-bar {
        display: none; /* Hide topbar marquee on small viewports */
    }

    .header-main {
        height: 65px;
    }

    .logo-title {
        font-size: 22px;
    }

    .desktop-nav {
        display: none; /* Hide top horizontal nav menu */
    }

    .menu-toggle-btn {
        display: flex; /* Show menu toggle */
        background: transparent !important;
        border: none !important;
        color: var(--text-primary) !important;
        width: 36px;
        height: 36px;
        padding: 0;
        align-items: center;
        justify-content: center;
        box-shadow: none !important;
        transform: none !important;
    }
    
    .menu-toggle-btn svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }
    
    .menu-toggle-btn:hover,
    .menu-toggle-btn:focus,
    .menu-toggle-btn:active {
        background: transparent !important;
        color: var(--primary-color) !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .bottom-nav {
        display: block; /* Show bottom navigation bar */
    }

    .hero-card {
        height: 320px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-overlay {
        padding: 20px;
    }

    .news-card-row {
        flex-direction: row;
    }

    .row-img-wrapper {
        width: 80px;
        height: 65px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-headline {
        font-size: 22px;
    }

    .article-detail-container {
        padding: 15px;
    }

    .article-body {
        font-size: 15px;
    }
}

/* --- Single Post Detail Page Design Alignment --- */

/* Breadcrumb Styling */
.rank-math-breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-family: var(--font-hindi);
    font-weight: 500;
}

.rank-math-breadcrumb a {
    color: var(--text-secondary);
}

.rank-math-breadcrumb a:hover {
    color: var(--primary-color);
}

.rank-math-breadcrumb .separator {
    margin: 0 6px;
    color: var(--text-muted);
}

.rank-math-breadcrumb .last {
    color: var(--text-muted);
    font-weight: 400;
}

/* Category badges above title */
.wplt-cat-badges {
    margin-bottom: 12px;
}

.wplt-cat-badge {
    background-color: var(--primary-color);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
}

/* Follow buttons & Meta Actions */
.detail-meta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
}

.follow-wa {
    background-color: #e8f8ec;
    color: #075e54;
    border: 1px solid #cceadb;
}

.follow-wa:hover {
    background-color: #075e54;
    color: #ffffff;
}

.follow-gnews {
    background-color: var(--background);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.follow-gnews:hover {
    background-color: #1a0dab;
    color: #ffffff;
    border-color: #1a0dab;
}

.follow-gnews img {
    width: 16px;
    height: 16px;
}

/* Featured image caption */
.wplt-featured-caption {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

/* Highlights Box */
.wplt-highlights {
    background-color: rgba(231, 0, 0, 0.03);
    border-left: 5px solid var(--primary-color);
    border-radius: 6px;
    padding: 20px;
    margin: 25px 0;
}

[data-theme="dark"] .wplt-highlights {
    background-color: rgba(231, 0, 0, 0.08);
}

.wplt-highlights__label {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: var(--font-eng);
}

.wplt-highlights__inner ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wplt-highlights__inner li {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Inline "Also Read" Box */
.wplt-also-read-box {
    position: relative;
    margin: 1.8em 0;
    padding: 14px;
    background: var(--surface);
    border: 2px dashed var(--text-primary);
    border-radius: 10px;
}

.wplt-ar-label {
    position: absolute;
    top: -12px;
    left: 18px;
    padding: 0 8px;
    background: var(--surface);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    font-size: 14px;
}

.wplt-ar-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none !important;
}

.wplt-ar-thumb {
    width: 120px;
    height: 80px;
    min-width: 120px;
    border-radius: 6px;
    display: block;
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center;
}

.wplt-ar-title {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.35;
    font-size: 16px;
}

.wplt-ar-card:hover .wplt-ar-title {
    color: var(--primary-color);
    text-decoration: underline;
}

@media(max-width: 600px) {
    .wplt-ar-thumb {
        width: 90px;
        height: 60px;
        min-width: 90px;
    }
    .wplt-ar-title {
        font-size: 13px;
    }
}

/* Tag Badges at the bottom */
.wplt-tag-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.wplt-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    background-color: var(--background);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.wplt-tag-badge:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.wplt-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.wplt-tag-badge:hover .wplt-tag-icon {
    color: #ffffff;
}

.wplt-tag-icon svg {
    width: 14px;
    height: 14px;
}

/* Author Bio Card */
.author-bio-card {
    background-color: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-bio-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    position: relative;
    padding: 3px;
    background: linear-gradient(45deg, #1d9bf0, #e70000, #25d366, #1d9bf0);
    background-size: 300% 300%;
    animation: borderRotate 4s linear infinite, avatarPulse 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.author-bio-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--surface);
    background-color: var(--surface);
}

.author-bio-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-bio-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media(max-width: 600px) {
    .author-bio-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* WhatsApp/Telegram Highlight CTAs */
.social-join-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.join-cta-card {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 140px;
}

.join-cta-card.whatsapp {
    background-color: rgba(37, 211, 102, 0.05);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.join-cta-card.telegram {
    background-color: rgba(0, 136, 204, 0.05);
    border: 1px solid rgba(0, 136, 204, 0.2);
}

.join-cta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}

.join-cta-header.whatsapp { color: #25d366; }
.join-cta-header.telegram { color: #0088cc; }

.join-cta-header svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.join-cta-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 10px 0 15px 0;
}

.join-cta-btn {
    align-self: stretch;
    text-align: center;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.join-cta-btn.whatsapp { background-color: #25d366; }
.join-cta-btn.telegram { background-color: #0088cc; }
.join-cta-btn:hover { opacity: 0.9; }

@media(max-width: 600px) {
    .social-join-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Related Posts Section ("और पढ़ें") */
.related-posts-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.related-posts-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-left: 12px;
}

.related-posts-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: var(--primary-color);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.related-post-card {
    background-color: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.related-post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(231, 0, 0, 0.2);
}

.related-post-thumb {
    height: 130px;
    overflow: hidden;
}

.related-post-thumb img {
    width: 100%;
    height: 100%;
}

.related-post-info {
    padding: 12px;
}

.related-post-headline {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
}

.related-post-card:hover .related-post-headline {
    color: var(--primary-color);
}

/* Layered Animated Verified Blue Tick Badge */
.verified-badge-wrap {
    display: inline-flex;
    position: relative;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 4px;
}

.verified-badge-wrap.bio-badge {
    width: 18px;
    height: 18px;
}

.verified-starburst {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: verifiedSpin 8s linear infinite;
    display: block;
    filter: drop-shadow(0 0 1px rgba(29, 155, 240, 0.4));
}

.verified-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
}

@keyframes verifiedSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Rotating Gradient Border Keyframes */
@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 0 4px rgba(29, 155, 240, 0.4), 0 0 8px rgba(231, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 10px rgba(29, 155, 240, 0.7), 0 0 15px rgba(231, 0, 0, 0.4);
        transform: scale(1.05);
    }
}

/* Mobile Sidebar Drawer styling */
.mobile-sidebar-overlay {
    display: none;
}

.mobile-sidebar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-sidebar-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .mobile-sidebar {
        display: flex;
        position: fixed;
        top: 0;
        left: -290px;
        width: 280px;
        height: 100%;
        background: var(--surface);
        border-right: 1px solid var(--border-color);
        z-index: 2000;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
    }

    .mobile-sidebar.open {
        left: 0;
    }
}

.mobile-sidebar-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    justify-content: space-between;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.sidebar-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-primary);
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: color 0.2s;
}

.sidebar-close-btn:hover {
    color: var(--primary-color);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.sidebar-nav-link {
    display: block;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.25s, color 0.25s;
    font-family: var(--font-hindi);
    border-left: 3px solid transparent;
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    background: var(--surface-hover);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.sidebar-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    margin-top: 25px;
}

.sidebar-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    justify-content: center;
}

.sidebar-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--background);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.sidebar-social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.sidebar-copyright {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

/* Google Translate widget customization */
.custom-translate-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}
.translate-icon {
    position: absolute;
    left: 10px;
    width: 15px;
    height: 15px;
    fill: var(--text-primary);
    pointer-events: none;
    z-index: 10;
    transition: fill var(--transition-speed) ease;
}
#google_translate_element {
    display: inline-block;
    vertical-align: middle;
}
.goog-te-gadget {
    font-family: var(--font-eng) !important;
    font-size: 13px !important;
    color: transparent !important;
}
.goog-te-combo {
    padding: 6px 12px 6px 30px !important; /* Shift text to make room for icon */
    border: 1px solid var(--border-color) !important;
    background: var(--surface) !important;
    color: var(--text-primary) !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    outline: none !important;
    font-family: var(--font-eng) !important;
    transition: all 0.2s ease !important;
}
.goog-te-combo:hover {
    border-color: var(--primary-color) !important;
}
.goog-logo-link {
    display: none !important;
}
.goog-te-gadget span {
    display: none !important;
}
/* Hide Google Translate top bar, floating circular badge, and balloon tooltips */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe[class*="goog-te-banner-frame"],
iframe[id*="goog-te-banner-frame"],
.goog-te-banner,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-gadget-icon,
.goog-te-gadget-simple,
.goog-te-gadget-simple img,
.goog-te-gadget-simple span,
.goog-te-spinner-pos,
.goog-te-spinner,
.goog-te-balloon-frame,
iframe.goog-te-balloon-frame,
.skiptranslate:not(#google_translate_element):not(#google_translate_element *):not(.custom-translate-wrapper):not(.custom-translate-wrapper *) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
}
html {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body {
    top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: static !important;
}
