 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .mainPopupContainer {
            font-family: 'Arial', sans-serif;
            display: none;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            line-height: 1.6;
            color: #333;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(128, 0, 128, 0.5);
            z-index: 9998;
        }

        .promo-container-unique {
            background-color: #F8F0FF; /* Light purple-tinted white */
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(128, 0, 128, 0.2);
            padding: 40px;
            max-width: 600px;
            text-align: center;
            border: 3px solid #800080;
            position: relative;
            z-index: 9999;
        }

        .promo-title-unique {
            color: #800080;
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .discount-badge-unique {
            background-color: #9932CC;
            color: white;
            display: inline-block;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .promo-details-unique {
            background-color: #EDE7F6; /* Soft purple background */
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
        }

        .countdown-unique {
            color: #8A2BE2;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .cta-button-unique {
            display: inline-block;
            background-color: #800080;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }

        .cta-button-unique:hover {
            background-color:#e009e0 ;
            color: white;
        }

        .terms-unique {
            font-size: 2px;
            color: #663399;
            margin-top: 20px;
            font-style: italic;
        }

        .close-button-unique {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            background-color: #8A2BE2;
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
            z-index: 10000;
        }

        .close-button-unique:hover {
            background-color: #4B0082;
        }