:root {
    --primary-red: #e11d48;
    --primary-red-hover: #be123c;
    --primary-green: #059669;
    --accent-gold: #d97706;
    
    --bg-body: #f4f6f9;
    --bg-surface: rgba(255, 255, 255, 0.94);
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-subtle: rgba(241, 245, 249, 0.75);
    --bg-card: #ffffff;
    --bg-section-tint: rgba(243, 244, 246, 0.88);
    
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #f8fafc;
    
    --border-color: rgba(226, 232, 240, 0.9);
    
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 36px rgba(0,0,0,0.1);
    
    --liquid-glow: radial-gradient(circle at 15% 10%, rgba(225, 29, 72, 0.04) 0%, transparent 40%),
                   radial-gradient(circle at 85% 90%, rgba(5, 150, 105, 0.03) 0%, transparent 40%);
    
    --font-family: 'SolaimanLipi', 'Hind Siliguri', -apple-system, sans-serif;
    --max-width: 1150px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --blur-val: blur(16px);
}

.dark {
    --bg-body: #0a0f18;
    --bg-surface: rgba(15, 23, 42, 0.92);
    --bg-glass: rgba(15, 23, 42, 0.85);
    --bg-glass-subtle: rgba(30, 41, 59, 0.6);
    --bg-card: #111827;
    --bg-section-tint: rgba(17, 24, 39, 0.7);
    
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    
    --border-color: rgba(51, 65, 85, 0.75);
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-md: 0 10px 28px rgba(0,0,0,0.5);
    
    --liquid-glow: radial-gradient(circle at 15% 10%, rgba(225, 29, 72, 0.08) 0%, transparent 40%),
                   radial-gradient(circle at 85% 90%, rgba(30, 58, 138, 0.08) 0%, transparent 40%);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: var(--font-family) !important;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg-body);
    background-image: var(--liquid-glow);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.55;
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-bottom: 70px;
}
@media (min-width: 992px) { body { padding-bottom: 0; } }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
button, input, select, textarea { font-family: inherit !important; border: none; outline: none; }

/* Enforce consistent borders */
:where([style*="border-color"]) {
    border-color: unset !important;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 16px; }

.header-main {
    background: var(--bg-surface); backdrop-filter: var(--blur-val); -webkit-backdrop-filter: var(--blur-val);
    border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }

.logo-box { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-badge { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; font-family: 'Hind Siliguri', sans-serif !important; }
.logo-text-top { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.5px; color: var(--text-main); }
.logo-text-bottom {
    background: var(--primary-red); color: #fff; padding: 2px 6px; font-size: 0.8rem;
    font-weight: 700; border-radius: 4px; letter-spacing: 2px; margin-top: 3px;
}

.header-nav { display: none; align-items: center; gap: 2px; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .header-nav { display: flex; } }

.nav-link {
    padding: 6px 12px; font-weight: 700; font-size: 0.95rem; color: var(--text-main);
    border-radius: var(--radius-sm); white-space: nowrap; transition: all 0.2s ease; position: relative; cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--primary-red); }
.nav-link:not(:last-child)::after { content: '|'; position: absolute; right: -2px; color: var(--border-color); font-weight: 300; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
    width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--bg-glass-subtle); color: var(--text-main); transition: all 0.2s ease;
    border: 1px solid var(--border-color); cursor: pointer;
}
.icon-btn:hover { background: var(--primary-red); color: #fff; border-color: var(--primary-red); }
.icon-svg { width: 18px; height: 18px; fill: currentColor; }

.trending-full-width {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    margin-bottom: 24px;
    width: 100%;
}
.trending-flex { display: flex; align-items: center; gap: 12px; overflow-x: auto; scrollbar-width: none; }
.trending-label { display: flex; align-items: center; gap: 6px; color: var(--primary-red); font-weight: 800; font-size: 0.95rem; flex-shrink: 0; }
.trending-tag {
    background: var(--bg-card); border: 1px solid var(--border-color); padding: 4px 14px;
    border-radius: 20px; font-size: 0.9rem; font-weight: 600; white-space: nowrap;
    transition: all 0.2s; cursor: pointer; box-shadow: var(--shadow-sm);
}
.trending-tag:hover { border-color: var(--primary-red); color: var(--primary-red); }

.hero-layout { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
@media (min-width: 1024px) { 
    .hero-layout { display: grid; grid-template-columns: 2.7fr 1.3fr; align-items: stretch; } 
}

.hero-main-grid { display: flex; flex-direction: column; gap: 20px; height: 100%; }

.hero-slider-wrap {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); background: #000; height: 420px; cursor: pointer; flex-shrink: 0;
}
.hero-slider-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.4s; }
.hero-slider-wrap:hover img { opacity: 0.95; }
.hero-slider-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.9) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; pointer-events: none;
}
.badge-cat {
    align-self: flex-start; background: var(--primary-red); color: #fff; font-size: 0.75rem;
    font-weight: 700; padding: 3px 10px; border-radius: 6px; margin-bottom: 10px; display: inline-block; z-index: 2;
}
.hero-title-lg { font-size: 1.6rem; font-weight: 800; line-height: 1.35; margin-bottom: 8px; pointer-events: auto; }
@media (min-width: 768px) { .hero-title-lg { font-size: 1.85rem; } }
.hero-slider-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer;
    z-index: 10; transition: all 0.2s; pointer-events: auto;
}
.hero-slider-nav-btn:hover { background: var(--primary-red); border-color: var(--primary-red); }
.hero-slider-nav-btn.prev { left: 16px; }
.hero-slider-nav-btn.next { right: 16px; }
.hero-slider-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 10; pointer-events: auto;
}
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); cursor: pointer; transition: all 0.3s; }
.hero-dot.active { width: 24px; border-radius: 8px; background: #fff; }

.desktop-hero-static { display: none; flex-direction: column; gap: 20px; flex: 1; }
@media (min-width: 1024px) { .desktop-hero-static { display: flex; } }

.stacked-cards-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.overlay-card {
    position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
    box-shadow: var(--shadow-sm); background: #000; height: 190px;
}
.overlay-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.4s ease; }
.overlay-card:hover img { transform: scale(1.05); }
.overlay-gradient {
    position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.9) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff;
}
.hero-title-sm { font-size: 1.15rem; font-weight: 800; line-height: 1.35; }
.hero-bottom-3grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; flex: 1; }

.card-standard {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md);
    overflow: hidden; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex; flex-direction: column; height: 100%;
}
.card-standard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(225, 29, 72, 0.3); }
.card-standard-thumb { position: relative; overflow: hidden; padding-top: 60%; }
.card-standard-thumb img { position: absolute; top:0; left:0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.card-standard:hover .card-standard-thumb img { transform: scale(1.05); }
.card-standard-body { padding: 16px; display: flex; flex-direction: column; flex: 1; justify-content: space-between;}
.card-standard-title { font-size: 1.05rem; font-weight: 800; line-height: 1.4; color: var(--text-main); }

.sidebar-box {
    background: var(--bg-surface); backdrop-filter: var(--blur-val); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); height: 100%; 
}
.sidebar-header {
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 2px solid var(--primary-red); padding-bottom: 10px; margin-bottom: 16px;
}
.sidebar-title { font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
.sidebar-title::before { content: ''; width: 8px; height: 8px; background: var(--primary-red); border-radius: 50%; }

.sidebar-items-wrapper { display: flex; flex-direction: column; gap: 12px; flex-grow: 1; justify-content: space-between; }
.sidebar-news-item {
    display: flex; align-items: center; gap: 14px; padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color); cursor: pointer;
}
.sidebar-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-news-thumb { width: 90px; height: 65px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.sidebar-news-thumb img { width: 100%; height: 100%; transition: transform 0.3s; }
.sidebar-news-item:hover .sidebar-news-thumb img { transform: scale(1.08); }
.sidebar-news-content { display: flex; flex-direction: column; gap: 4px; }
.sidebar-news-headline { font-size: 0.95rem; font-weight: 700; line-height: 1.35; color: var(--text-main); }
.sidebar-news-item:hover .sidebar-news-headline { color: var(--primary-red); }
.sidebar-news-cat { font-size: 0.75rem; color: var(--primary-red); font-weight: 700; }

.story-section { margin-bottom: 36px; padding: 20px; background: var(--bg-section-tint); border-radius: var(--radius-lg); border: 1px solid var(--border-color); }
.section-header-bar {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 2px solid var(--primary-red); padding-bottom: 8px; margin-bottom: 20px;
}
.section-header-title { font-size: 1.35rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.section-header-title::before { content: ''; width: 6px; height: 20px; background: var(--primary-red); border-radius: 4px; }

.story-container { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding: 4px 4px 16px 4px; scroll-snap-type: x mandatory; }
.story-card-wrapper {
    width: 140px; height: 220px; flex-shrink: 0; scroll-snap-align: start; cursor: pointer;
    border-radius: 20px; padding: 4px; background: linear-gradient(45deg, #e11d48, #d97706, #059669);
    transition: transform 0.25s ease; box-shadow: var(--shadow-sm);
}
.story-card-wrapper:hover { transform: scale(1.03); }
.story-card-inner {
    background: #000; width: 100%; height: 100%; border-radius: 16px;
    overflow: hidden; position: relative; border: 2px solid var(--bg-card);
}
.story-card-inner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.story-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.95) 100%);
    display: flex; flex-direction: column; justify-content: space-between; padding: 12px;
}
.story-badge { background: var(--primary-red); color: #fff; font-size: 0.65rem; padding: 3px 8px; border-radius: 10px; align-self: flex-start; font-weight: 700; box-shadow: 0 2px 5px rgba(0,0,0,0.4); }
.story-title { color: #fff; font-size: 0.95rem; font-weight: 800; line-height: 1.35; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }

.section-block { margin: 36px 0; }
.national-grid-3col { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 992px) { .national-grid-3col { grid-template-columns: 1.3fr 1fr 1fr; align-items: stretch;} }

.national-lead-img-box { position: relative; padding-top: 65%; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.national-lead-img-box img { position: absolute; top:0; left:0; width: 100%; height: 100%; object-fit: cover; }
.circle-avatar-overlay {
    position: absolute; bottom: -20px; right: 24px; width: 85px; height: 85px;
    border-radius: 50%; border: 4px solid var(--bg-card); overflow: hidden; box-shadow: var(--shadow-md); z-index: 2;
}
.national-lead-title { font-size: 1.45rem; font-weight: 800; line-height: 1.4; color: var(--text-main); margin-top: 24px;}
.horizontal-news-list { display: flex; flex-direction: column; justify-content: space-between; gap: 16px; height: 100%; }
.horizontal-news-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md);
    padding: 12px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
    cursor: pointer; transition: all 0.2s; height: 100%;
}
.horizontal-news-card:hover { border-color: var(--primary-red); box-shadow: var(--shadow-sm); }
.horizontal-news-title { font-size: 1rem; font-weight: 700; line-height: 1.4; flex: 1; }
.horizontal-news-thumb { width: 100px; height: 75px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.horizontal-news-thumb img { width: 100%; height: 100%; }

.category-3col-wrapper { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 992px) { .category-3col-wrapper { grid-template-columns: repeat(3, 1fr); } }

.cat-column-card {
    background: var(--bg-section-tint); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; gap: 16px;
}
.cat-featured-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.cat-featured-img { padding-top: 55%; position: relative; }
.cat-featured-img img { position:absolute; top:0; left:0; width:100%; height:100%; }
.cat-item-pill {
    background: var(--bg-card); border: 1px solid var(--border-color); padding: 14px;
    border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.2s; line-height: 1.4;
}
.cat-item-pill:hover { color: var(--primary-red); border-color: var(--primary-red); box-shadow: var(--shadow-sm); }

.economy-5grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 992px) { .economy-5grid { grid-template-columns: 1.6fr 1fr 1fr; } }

.video-slider-wrap { position: relative; }
.video-cards-grid { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.video-card-item { min-width: 280px; flex-shrink: 0; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; scroll-snap-align: start; }
@media (min-width: 768px) { .video-card-item { min-width: calc(25% - 15px); max-width: calc(25% - 15px); } }
.video-thumb-box { position: relative; padding-top: 56.25%; }
.video-thumb-box img { position:absolute; top:0; left:0; width:100%; height:100%; }
.video-play-icon {
    position: absolute; inset: 0; margin: auto; width: 50px; height: 50px; background: rgba(225, 29, 72, 0.9);
    color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: transform 0.2s; font-size: 1.2rem;
}
.video-card-item:hover .video-play-icon { transform: scale(1.15); }
.video-card-title { padding: 16px; font-size: 1.05rem; font-weight: 800; line-height: 1.4; }

.photo-gallery-card { background: var(--bg-section-tint); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; }
.gallery-grid-layout { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 20px;}
@media (min-width: 992px) { .gallery-grid-layout { grid-template-columns: 1.6fr 1fr; } }
.gallery-lead-hero { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery-lead-img-wrap { padding-top: 60%; position: relative; }
.gallery-lead-img-wrap img { position:absolute; top:0; left:0; width:100%; height:100%; }
.gallery-lead-controls {
    position: absolute; top: 16px; right: 16px; display: flex; align-items: center; gap: 8px;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); padding: 8px 16px; border-radius: 24px; color: #fff; font-weight: bold;
}
.gallery-lead-controls button { background: transparent; color: #fff; cursor: pointer; font-size: 1.2rem; transition: color 0.2s; }
.gallery-lead-controls button:hover { color: var(--primary-red); }
.gallery-2x2-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery-small-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; display: flex; flex-direction: column; }
.gallery-small-thumb { padding-top: 65%; position: relative; }
.gallery-small-thumb img { position:absolute; top:0; left:0; width:100%; height:100%; }
.gallery-camera-badge { position: absolute; top: 8px; right: 8px; background: var(--primary-red); color: #fff; width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; z-index: 2; }

#home-view { display: block; }
#article-single-page, #archive-view {
    display: none; background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius-lg); padding: 28px; margin: 24px auto; box-shadow: var(--shadow-md); max-width: 900px;
}
#article-single-page.active, #archive-view.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.reader-back-btn {
    display: inline-flex; align-items: center; gap: 8px; background: var(--primary-red); color: #fff;
    padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; cursor: pointer; margin-bottom: 20px;
}
.reader-headline { font-size: 2.2rem; font-weight: 800; line-height: 1.35; margin: 16px 0; }
.reader-toolbar {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    background: var(--bg-glass-subtle); padding: 14px 20px; border-radius: var(--radius-md); border: 1px solid var(--border-color);
}
.reader-content-body { font-size: 1.15rem; line-height: 1.85; margin: 32px 0; }
.reader-content-body p { margin-bottom: 24px; }

.wp-comment-area { background: var(--bg-section-tint); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 28px; margin-top: 40px; }
.wp-input-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) { .wp-input-grid { grid-template-columns: 1fr 1fr; } }
.wp-input-field { width: 100%; padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid var(--border-color); background: var(--bg-card); color: var(--text-main); font-size: 1rem; }
.wp-comment-btn { background: var(--primary-red); color: #fff; padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 800; font-size: 1.05rem; cursor: pointer; transition: background 0.2s; border:none;}

/* Comment Reply Indentation Fix */
.wp-comment-area .children {
    margin-left: 40px;
    padding-left: 20px;
    border-left: 2px solid var(--border-color);
}
@media (max-width: 768px) {
    .wp-comment-area .children { margin-left: 15px; padding-left: 10px; }
}

.mobile-bottom-nav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; height: 70px;
    background: var(--bg-surface); backdrop-filter: var(--blur-val); -webkit-backdrop-filter: var(--blur-val);
    border-top: 1px solid var(--border-color); z-index: 1000; justify-content: space-around; align-items: center;
}
@media (min-width: 992px) { .mobile-bottom-nav { display: none; } }
.mobile-nav-item { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); cursor: pointer; }
.mobile-nav-item.active, .mobile-nav-item:hover { color: var(--primary-red); }

.drawer-overlay, .modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
    z-index: 2000; display: flex; opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.drawer-overlay { align-items: flex-end; }
.modal-overlay { align-items: center; justify-content: center; padding: 20px; }
.drawer-overlay.active, .modal-overlay.active { opacity: 1; pointer-events: auto; }

.drawer-sheet {
    background: var(--bg-surface); width: 100%; max-height: 85vh; border-radius: 24px 24px 0 0;
    padding: 32px 24px; overflow-y: auto; position: relative; transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); border-top: 1px solid var(--border-color);
}
.drawer-overlay.active .drawer-sheet { transform: translateY(0); }
.modal-box { background: var(--bg-surface); width: 100%; max-width: 500px; border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border-color); position: relative; }

.drawer-close-btn {
    position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-glass-subtle); display: flex; align-items: center; justify-content: center;
    font-weight: bold; cursor: pointer; color: var(--text-main); font-size: 1.2rem; border: 1px solid var(--border-color);
}

#toast-container {
    position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 9999;
    display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
@media (min-width: 992px) { #toast-container { bottom: 30px; } }
.toast-msg {
    background: var(--text-main); color: var(--bg-body); padding: 12px 24px;
    border-radius: 30px; font-weight: 700; font-size: 0.95rem; box-shadow: var(--shadow-md);
    opacity: 0; transform: translateY(20px); transition: all 0.3s ease;
}

.footer-site { background: #0b0f19; color: #94a3b8; padding: 56px 0 24px; margin-top: 60px; border-top: 4px solid var(--primary-red); }
.footer-title { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; }
.footer-ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 0.95rem; }
.footer-ul a:hover { color: #fff; }

@media print {
    .header-main, .mobile-bottom-nav, .trending-full-width, .footer-site, .reader-back-btn, .reader-toolbar button:not(:first-child), .wp-comment-area, #toast-container { display: none !important; }
    body { background: #fff; color: #000; padding: 0; }
    .container { max-width: 100%; }
    #article-single-page { box-shadow: none; border: none; }
}