Return-Path: <support@theblogsocieties.com>
From: CBS Medical Unit <support@theblogsocieties.com>
To: bruce@untroubled.org
Subject: The instructional video is accessible for a limited time
Message-ID: <ed120a2d10e747599c7c59b66c8b1ca1@theblogsocieties.com>
Date: Tue, 04 Aug 2026 20:12:45 +0000
MIME-Version: 1.0
Content-Type: text/html; charset=utf-8
Content-Length: 10381

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CBS HealthWatch: Special Health Report</title>
    <style>
        :root {
            --cbs-blue: #001242;
            --cbs-accent: #0050ad;
            --cbs-red: #d0021b;
            --text-dark: #121212;
            --text-muted: #555555;
            --bg-gray: #f4f5f7;
            --border-color: #e2e8f0;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-gray);
            color: var(--text-dark);
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 640px;
            margin: 20px auto;
            background-color: #ffffff;
            border-top: 4px solid var(--cbs-accent);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-radius: 4px;
            overflow: hidden;
        }

        /* TOP NAVIGATION BAR */
        .top-bar {
            background-color: var(--cbs-blue);
            color: #ffffff;
            padding: 12px 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cbs-logo {
            height: 28px;
            width: auto;
            filter: brightness(0) invert(1); /* Ensures crisp white rendering */
        }

        .nav-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #d1d5db;
        }

        .content-padding {
            padding: 25px 30px;
        }

        /* KICKER & HEADLINE */
        .kicker {
            font-size: 12px;
            font-weight: 800;
            color: var(--cbs-accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .kicker-tag {
            background-color: #eef4ff;
            color: var(--cbs-accent);
            padding: 2px 6px;
            border-radius: 2px;
        }

        .headline {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-dark);
            margin: 0 0 16px 0;
            line-height: 1.25;
            letter-spacing: -0.3px;
        }

        /* BYLINE & METADATA */
        .byline-container {
            padding-bottom: 15px;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .byline {
            font-size: 13px;
            color: var(--text-muted);
        }

        .byline strong {
            color: var(--cbs-blue);
        }

        .timestamp {
            color: #718096;
            font-size: 12px;
            margin-top: 4px;
        }

        /* HERO VIDEO CONTAINER */
        .hero-wrapper {
            position: relative;
            margin-bottom: 25px;
            background-color: #000000;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .hero-image {
            width: 100%;
            height: auto;
            display: block;
            opacity: 0.9;
            transition: opacity 0.2s ease;
        }

        .hero-wrapper:hover .hero-image {
            opacity: 1;
        }

        /* PLAY BUTTON OVERLAY */
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background-color: rgba(0, 80, 173, 0.9);
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .hero-wrapper:hover .play-overlay {
            transform: translate(-50%, -50%) scale(1.05);
            background-color: rgba(0, 80, 173, 1);
        }

        .play-triangle {
            width: 0;
            height: 0;
            border-left: 20px solid #ffffff;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .video-label {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(0, 18, 66, 0.85);
            backdrop-filter: blur(4px);
            color: #ffffff;
            padding: 6px 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            border-radius: 2px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background-color: var(--cbs-red);
            border-radius: 50%;
            display: inline-block;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.3; }
            100% { opacity: 1; }
        }

        /* BODY TEXT */
        .body-text {
            font-size: 16px;
            color: #2d3748;
            line-height: 1.65;
            margin-bottom: 18px;
        }

        /* CALL TO ACTION BUTTON */
        .btn-container {
            margin: 30px 0 15px 0;
            text-align: center;
        }

        .btn {
            background-color: var(--cbs-accent);
            color: #ffffff;
            padding: 16px 28px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            border-radius: 4px;
            display: block;
            box-shadow: 0 4px 6px rgba(0, 80, 173, 0.2);
            transition: background-color 0.2s ease, transform 0.1s ease;
        }

        .btn:hover {
            background-color: var(--cbs-blue);
            transform: translateY(-1px);
        }

        /* FOOTER */
        .footer {
            background-color: #f8fafc;
            padding: 24px 30px;
            text-align: center;
            font-size: 12px;
            color: #718096;
            border-top: 1px solid var(--border-color);
            line-height: 1.6;
        }

        .footer a {
            color: var(--cbs-accent);
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }
    </style>
</head>

<body>

    <div class="container">

        <!-- BRAND TOP HEADER -->
        <div class="top-bar">
            <img src="https://upload.wikimedia.org/wikipedia/commons/2/2e/CBS_News_2020_%28Stacked_II%29.svg" alt="CBS News Logo" class="cbs-logo">
            <span class="nav-label">HealthWatch Special Report</span>
        </div>

        <div class="content-padding">

            <!-- KICKER & HEADLINE -->
            <div class="kicker">
                <span class="kicker-tag">Breaking News</span> Cognitive Health Investigation
            </div>
            
            <h1 class="headline">Cognitive decline reversal is already happening — and it isn't coming from pharmaceuticals.</h1>

            <!-- BYLINE -->
            <div class="byline-container">
                <div class="byline">
                    Reported by <strong>CBS HealthWatch Editorial Board</strong>
                    <div class="timestamp">Updated August 2026</div>
                </div>
            </div>

            <!-- HERO IMAGE & VIDEO PLAYER OVERLAY -->
            <div class="hero-wrapper">
                <a href="https://storage.googleapis.com/jmemry/m" style="text-decoration:none;">
                    <img src="https://i.8upload.com/image/fd08ba0a22e21313/scr-20260717-onyl.jpg" alt="Medical presentation on cognitive health discovery" class="hero-image">

                    <div class="play-overlay">
                        <div class="play-triangle"></div>
                    </div>

                    <div class="video-label">
                        <span class="live-dot"></span> Special Presentation: Tap To Play
                    </div>
                </a>
            </div>

            <!-- BODY CONTENT -->
            <p class="body-text">A groundbreaking clinical discovery is sweeping the medical community, demonstrating that cognitive decline may no longer be an inevitable part of aging. Leading specialists have highlighted a targeted natural protocol designed to support cellular regeneration within the brain—helping support memory retention without reliance on expensive prescriptions.</p>

            <p class="body-text">The protocol centers around a structured daily habit known as Harmo Brain. Designed to address cellular oxidative stress and support key synaptic pathways, the ritual aims to improve overall clarity, focus, and memory recall speed.</p>

            <p class="body-text">Initial test participant outcomes have prompted significant interest across neurological research groups. Participants report noticeable improvements in mental sharpness, daily focus, and overall cognitive vitality.</p>

            <p class="body-text">Due to surging interest and limited availability of the detailed briefing, the underlying research team has made the instructional video accessible online for a limited time. Watch the official presentation below to review the findings.</p>

            <!-- CALL TO ACTION -->
            <div class="btn-container">
                <a href="https://storage.googleapis.com/jmemry/m" class="btn">Watch The Full HealthWatch Report</a>
            </div>

        </div>

        <!-- FOOTER -->
        <div class="footer">
            &copy; 2026 CBS HealthWatch Special Coverage. All Rights Reserved.<br>
            <a href="https://storage.googleapis.com/jmeunsball/m">Unsubscribe</a> | <a href="https://storage.googleapis.com/jmemry/m">Privacy Policy</a>
        </div>

    </div>

</body>

</html>
