

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            background: #f4f1e8;
            color: #111;
            font-family: Georgia, "Times New Roman", serif;
        }

        .page {
            width: min(1400px, 94vw);
            margin: 0 auto;
        }

        header {
            border-bottom: 3px solid #111;
        }

        .topline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #111;
            font-family: Arial, sans-serif;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .masthead {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
        }

        .masthead h1 {
            margin: 0;
            font-size: clamp(60px, 9vw, 140px);
            line-height: 0.8;
            letter-spacing: -0.08em;
            font-weight: 900;
        }

        .date {
            text-align: center;
            padding: 8px 0 12px;
            font-family: Arial, sans-serif;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        nav {
            display: flex;
            justify-content: center;
            gap: 28px;
            border-top: 1px solid #111;
            padding: 10px 0;
            font-family: Arial, sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .lead {
            display: grid;
            grid-template-columns: 1fr 2.2fr 1fr;
            gap: 22px;
            padding: 22px 0;
            border-bottom: 1px solid #111;
        }

        .column {
            border-right: 1px solid #111;
            padding-right: 20px;
        }

        .column:last-child {
            border-right: none;
            padding-right: 0;
        }

        .kicker {
            font-family: Arial, sans-serif;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        h2 {
            font-size: clamp(25px, 3vw, 48px);
            line-height: 0.95;
            margin: 0 0 12px;
            letter-spacing: -0.035em;
        }

        h3 {
            font-size: 25px;
            line-height: 1;
            margin: 0 0 10px;
        }

        p {
            font-size: 15px;
            line-height: 1.35;
            margin: 0 0 14px;
        }

        .webcam-frame {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #111;
        }

        #webcam {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;

            /* Newspaper-ish treatment */
            filter: grayscale(100%) contrast(1.25);
        }

        .caption {
            margin-top: 6px;
            font-family: Arial, sans-serif;
            font-size: 10px;
            line-height: 1.3;
            text-transform: uppercase;
        }

        .live {
            position: absolute;
            top: 12px;
            left: 12px;

            padding: 5px 8px;

            background: #f4f1e8;
            color: #111;

            font-family: Arial, sans-serif;
            font-size: 10px;
            font-weight: bold;
            letter-spacing: 0.12em;
        }

        .live::before {
            content: "";
            display: inline-block;
            width: 7px;
            height: 7px;
            margin-right: 6px;
            border-radius: 50%;
            background: #111;
        }

        .below {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 22px;
            padding: 20px 0;
        }

        .article {
            border-right: 1px solid #111;
            padding-right: 20px;
        }

        .article:last-child {
            border-right: none;
        }

        .big-number {
            font-family: Arial, sans-serif;
            font-size: 70px;
            font-weight: bold;
            line-height: 0.8;
            float: left;
            margin: 8px 10px 0 0;
        }

        footer {
            border-top: 3px solid #111;
            padding: 12px 0 30px;
            font-family: Arial, sans-serif;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            display: flex;
            justify-content: space-between;
        }

        #start {
            margin-top: 10px;
            padding: 8px 14px;
            background: #111;
            color: #f4f1e8;
            border: none;
            cursor: pointer;
            font-family: Arial, sans-serif;
            font-size: 11px;
            text-transform: uppercase;
        }

        #start:hover {
            background: #333;
        }

        @media (max-width: 800px) {
            .lead,
            .below {
                grid-template-columns: 1fr;
            }

            .column,
            .article {
                border-right: none;
                border-bottom: 1px solid #111;
                padding: 0 0 20px;
            }

            nav {
                gap: 12px;
                flex-wrap: wrap;
            }
        }
    </style>