/* Style for the overlay background */
        .age-gate-overlay {
            display: flex;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
        }


/* Style for the age gate popup */
        .age-gate-popup {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            width: 300px;
        }

        .age-gate-popup h2 {
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: bold;
            color: #000;
        }
        
        .age-gate-popup h1 {
            margin-bottom: 20px;
            font-weight: bold;
            color: #000;
        }

        .age-gate-popup button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            margin: 10px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .age-gate-popup button:hover {
            background-color: #45a049;
        }

        .age-gate-popup button.no {
            background-color: #f44336;
        }

        .age-gate-popup button.no:hover {
            background-color: #e53935;
        }