
        :root {
            --maxw: 820px;
            /* page max width */
            --brand-red: #d60000;
            --cta: #40d600;
            /* button green */
            --cta-hover: #2bbd00;
            --text: #0f0f0f;
            --border: #1a1a1a;
        }

        * {
            box-sizing: border-box
        }

        body {
            margin: 0;
            font-family: "Roboto", Arial, sans-serif;
            color: var(--text);
            background: #fff;
        }

        /* Top NEWS bar */
        .news-bar {
            background: var(--brand-red);
            color: #fff;
            font-weight: 900;
            text-align: center;
            letter-spacing: .5px;
            font-size: clamp(20px, 3.6vw, 28px);
            padding: 8px 12px;
            text-transform: uppercase;
        }

        .wrap {
            max-width: var(--maxw);
            margin-inline: auto;
            padding: 18px 16px 42px;
        }

        /* Video placeholder */
        .video-box {
            width: min(640px, 100%);
            margin: 0 auto 16px;
            border: 3px solid var(--border);
            aspect-ratio: 1 / 1;
            /* square like screenshot */
            background:
                repeating-linear-gradient(45deg, #ececec 0 12px, #f7f7f7 12px 24px);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* CTA button (link) */
        .cta {
            width: min(420px, 100%);
            margin: 20px auto 20px;
            text-align: center;
            padding: 20px;
            background: var(--cta);
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 20px;
            border-radius: 4px;
            box-shadow: 0 1px 0 rgba(0, 0, 0, .3) inset, 0 2px 6px rgba(0, 0, 0, .08);
        }

        .cta:hover {
            background: var(--cta-hover);
        }

        /* Logos image placeholder */
        .logos {
            width: min(420px, 100%);
            margin: 10px auto 0;
        }

        .logos img {
            width: 100%;
        }




        /* Video Wrapper Styles */
        #video-wrapper {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }

        #video {
            display: block;
            width: 100%;
            background-color: #000;
        }

        @media(min-width:775px) {

            #video,
            #video-wrapper {
                min-height: 500px
            }
        }

        /* Start Button Styles */
        .start-button {
            width: fit-content;
            cursor: pointer;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 10;
            transition: opacity 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
        }

        .start-button.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .start-button-image {
            width: 100%;
            max-width: 120px;
        }

        #video-wrapper {
            position: relative;
            background-color: #000;
        }

        #video {
            width: 100%;
            display: block;
            min-height: 410px;
        }

        #controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            padding: 0 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        #video-wrapper:hover #controls {
            opacity: 1;
        }

        .control-btn {
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }

        .control-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .control-icon {
            width: 24px;
            height: 24px;
        }

        .hidden {
            display: none;
        }
 