/* ==========================================
   PolicyBaazar — Frontend Premium CSS
   Mobile-First Design
   ========================================== */

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    color: #1a1a2e;
    line-height: 1.8;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   ARTICLE STYLES
   ========================================== */
.breadcrumbs {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #6366f1;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.article-meta {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.article-hero {
    margin: 0 -20px 25px;
    /* Full-bleed */
    border-radius: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.article-body {
    font-size: 17px;
    line-height: 1.9;
    color: #334155;
}

.article-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 35px 0 15px;
    padding-top: 10px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 25px 0 10px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 15px 0;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: #1d4ed8;
}

.article-body blockquote {
    border-left: 4px solid #6366f1;
    background: #f1f5f9;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-body th,
.article-body td {
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.article-body th {
    background: #f1f5f9;
    font-weight: 600;
}

.article-body pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 18px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 15px 0;
}

.article-body code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 15px;
}

/* ==========================================
   PAGINATION (Multi-page articles)
   ========================================== */
.article-pagination {
    margin: 30px 0;
    padding: 20px;
    background: #f1f5f9;
    border-radius: 12px;
    text-align: center;
}

.page-indicator {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.btn-continue {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
    color: #fff;
}

/* ==========================================
   NEXT ARTICLE BUTTON (Endless Loop)
   ========================================== */
.next-article-btn {
    display: block;
    padding: 20px 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-radius: 14px;
    text-align: center;
    margin: 30px 0;
    transition: transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
}

.next-article-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
    color: #fff;
}

.next-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.next-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

/* ==========================================
   VIDEO PLAYER — God-Level Premium Design
   ========================================== */
.video-section {
    margin: 30px auto;
    max-width: 700px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #0f0f1a, #1a1a2e);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(99, 102, 241, 0.08);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.2), rgba(99, 102, 241, 0.1));
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.video-placeholder {
    padding: 80px 20px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.play-icon {
    font-size: 56px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.4));
}

.custom-video-player {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.custom-video-player video {
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;
}

/* --- Control Bar --- */
.vp-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0), rgba(15, 15, 26, 0.95) 40%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 0.3s;
}

/* Play/Pause */
.vp-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
}

.vp-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.vp-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* Progress Bar */
.vp-progress-wrap {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    transition: height 0.2s;
}

.vp-progress-wrap:hover {
    height: 10px;
}

.vp-progress-buffer {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    transition: width 0.3s;
}

.vp-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.vp-progress-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
    transition: transform 0.15s;
}

.vp-progress-wrap:hover .vp-progress-thumb {
    transform: translate(-50%, -50%) scale(1);
}

/* Time Display */
.vp-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
}

/* Volume */
.vp-volume-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vp-volume-slider {
    width: 60px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    outline: none;
    transition: width 0.2s;
}

.vp-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

/* Speed Selector */
.vp-speed {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 3px 6px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.vp-speed option {
    background: #1a1a2e;
    color: #fff;
}

/* Big Play Overlay (before first play) */
.vp-big-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: background 0.3s;
    z-index: 5;
}

.vp-big-play:hover {
    background: rgba(0, 0, 0, 0.5);
}

.vp-big-play-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(99, 102, 241, 0.3);
    animation: playPulse 2s ease-in-out infinite;
    transition: transform 0.2s;
}

.vp-big-play:hover .vp-big-play-icon {
    transform: scale(1.08);
}

.vp-big-play-icon svg {
    width: 32px;
    height: 32px;
    fill: #1a1a2e;
    margin-left: 4px;
}

@keyframes playPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(99, 102, 241, 0.2);
    }

    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 16px rgba(99, 102, 241, 0);
    }
}

.vp-big-play-text {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* "Continue Reading" CTA below video (ad viewability boost) */
.vp-continue-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.06));
    color: #a5b4fc;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-top: 1px solid rgba(99, 102, 241, 0.12);
}

.vp-continue-cta:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.12));
    color: #c4b5fd;
}

.vp-continue-cta svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    animation: bounceDownCta 1.5s ease-in-out infinite;
}

@keyframes bounceDownCta {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-section {
        margin: 20px 0;
        border-radius: 14px;
        max-width: 100%;
    }

    .video-section::before {
        border-radius: 15px;
    }

    .custom-video-player video {
        border-radius: 14px 14px 0 0;
    }

    .vp-controls {
        padding: 8px 10px;
        gap: 6px;
    }

    .vp-time {
        font-size: 10px;
        min-width: 55px;
    }

    .vp-volume-slider {
        width: 40px;
    }

    .vp-speed {
        font-size: 10px;
        padding: 2px 4px;
    }

    .vp-big-play-icon {
        width: 64px;
        height: 64px;
    }

    .vp-big-play-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .video-section {
        border-radius: 10px;
    }

    .video-section::before {
        border-radius: 11px;
    }

    .custom-video-player video {
        border-radius: 10px 10px 0 0;
    }

    .vp-volume-wrap {
        display: none;
    }

    .vp-controls {
        padding: 6px 8px;
        gap: 4px;
    }
}

/* ==========================================
   GIVEAWAY BANNER
   ========================================== */
.giveaway-banner {
    position: relative;
    border-radius: 16px;
    padding: 24px;
    margin: 30px 0;
    overflow: hidden;
    color: #fff;
}

.giveaway-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 150%;
    }
}

.giveaway-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.giveaway-text {
    flex: 1;
}

.giveaway-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.giveaway-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.giveaway-timer {
    font-size: 28px;
    font-weight: 700;
    margin-top: 8px;
    font-variant-numeric: tabular-nums;
}

.giveaway-img img {
    max-width: 100px;
    border-radius: 10px;
}

.giveaway-cta {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
    transition: background 0.3s;
}

.giveaway-cta:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* ==========================================
   SHARE BUTTONS
   ========================================== */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.share-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

.share-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    transition: opacity 0.2s;
    border: none;
    cursor: pointer;
}

.share-fb {
    background: #1877f2;
}

.share-tw {
    background: #1da1f2;
}

.share-wa {
    background: #25d366;
}

.share-copy {
    background: #64748b;
}

.share-btn:hover {
    opacity: 0.85;
    color: #fff;
}

/* ==========================================
   RELATED ARTICLES
   ========================================== */
.related-articles {
    margin: 40px 0 0;
}

.related-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.related-card {
    display: block;
    padding: 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.related-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0f172a;
}

.related-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
}

.related-date {
    font-size: 12px;
    color: #94a3b8;
}

/* ==========================================
   ADS
   ========================================== */
.ad-unit {
    margin: 25px 0;
    text-align: center;
    min-height: 90px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sticky footer ad (mobile) */
.sticky-footer-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* ==========================================
   COOKIE CONSENT
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #e2e8f0;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 200;
    font-size: 14px;
}

.cookie-banner a {
    color: #93c5fd;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept {
    padding: 8px 20px;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-reject {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #475569;
    color: #94a3b8;
    border-radius: 6px;
    cursor: pointer;
}

/* ==========================================
   QUIZ STYLES
   ========================================== */
.quiz-progress {
    height: 6px;
    background: #e2e8f0;
    border-radius: 6px;
    margin: 20px 0 8px;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 6px;
    transition: width 0.3s;
}

.quiz-step {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 25px;
}

.quiz-question h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.quiz-options {
    display: grid;
    gap: 12px;
}

.quiz-option {
    display: block;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #334155;
    transition: all 0.2s;
}

.quiz-option:hover {
    border-color: #6366f1;
    background: #f0f0ff;
    color: #4338ca;
    transform: translateX(4px);
}

.quiz-result {
    text-align: center;
    padding: 30px 0;
}

.quiz-result h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.quiz-result-text {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Contact form */
.contact-form-section {
    margin-top: 30px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #6366f1;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-ccpa {
    margin-bottom: 15px;
}

.footer-ccpa a {
    color: #94a3b8;
    font-size: 13px;
}

.footer-ccpa a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-social a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-social a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 12px;
    color: #64748b;
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ==========================================
   RESPONSIVE (Mobile-First)
   ========================================== */
@media (max-width: 768px) {
    .article-title {
        font-size: 24px;
    }

    .article-meta {
        flex-wrap: wrap;
        font-size: 13px;
    }

    .article-body {
        font-size: 16px;
    }

    .giveaway-content {
        flex-direction: column;
        text-align: center;
    }

    .giveaway-img img {
        max-width: 80px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 10px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .article-title {
        font-size: 22px;
    }

    .next-article-btn {
        padding: 16px 20px;
    }

    .next-title {
        font-size: 16px;
    }
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    padding: 18px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    animation: cookieSlideUp 0.5s ease;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    flex: 1;
}

.cookie-banner p a {
    color: #818cf8;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 12px;
}

.cookie-accept {
    padding: 10px 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.cookie-reject {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {

    .site-header,
    .site-footer,
    .share-buttons,
    .next-article-btn,
    .ad-unit,
    .giveaway-banner,
    .video-section,
    .cookie-banner,
    .sticky-footer-ad {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}