        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            color: white;
            text-align: center;
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        /* @font-face to load the custom font */
        @font-face {
            font-family: 'Pricedown';
            src: url('../font/Pricedown-Bl.woff2') format('woff2'),
				url('../font/Pricedown-Bl.woff') format('woff'),
				url('../font/Pricedown-Bl.ttf') format('truetype');

            font-weight: normal;
            font-style: normal;
        }

        h1 {
            font-family: 'Pricedown', sans-serif;
            font-size: 45px;
        }

        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            z-index: -1;
        }

        .content {
            position: relative;
            z-index: 1;
            background: rgba(0, 0, 0, 0.5); /* Adds slight transparency for readability */
            padding: 20px;
            border-radius: 10px;
        }

        .countdown {
            font-size: 2rem;
            margin-top: 20px;
        }

        .logo-top {
            position: absolute;
            top: 20px; /* Positioned at the top */
            left: 50%; /* Center horizontally */
            transform: translateX(-50%); /* Offset to perfectly center */
            width: 200px; /* Set the width */
            z-index: 2;
        }

        .logo-bottom {
            position: absolute;
            bottom: 50px; /* Positioned at the bottom */
            left: 50%; /* Center horizontally */
            transform: translateX(-50%); /* Offset to perfectly center */
            width: 75px; /* Adjust size */
            z-index: 1;
        }

        .disclaimer {
            position: absolute;
            bottom: 0;
            width: 100%;
            font-size: 0.8rem;
            color: white;
            padding: 10px 0;
            background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background for readability */
        }