        /* Announce Modal Styles Start */
        :root {
            --primary-100: #eed443;
            --primary-200: #3a56d4;
            --primary-300: #2f4bbf;
            --secondary-100: #f79525;
            --secondary-200: #dc9a1f;
            --secondary-300: #c2871a;
            --dark-100: #0b0b1f;
            --dark-200: #080814;
            --dark-300: #050510;
        
        }
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            z-index: 10002;
            display: none;
        }

        .modal-overlay.active {
            display: block;
            animation: fadeIn 0.5s;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .popup-modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: var(--dark-200);
            border: 2px solid var(--primary-100);
            border-radius: 80px;
            padding: 60px;
            z-index: 10003;
            text-align: center;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-xl);
            max-width: 600px;
            width: 90%;
        }

        .popup-modal.active {
            transform: translate(-50%, -50%) scale(1);
        }

        .modal-image {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
        }

        .modal-image svg {
            width: 100%;
            height: 100%;
            fill: var(--primary-100);
            filter: drop-shadow(0 0 50px var(--primary-100));
            animation: modalIcon 2s ease-in-out infinite;
        }

        @keyframes modalIcon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .modal-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .modal-updates {
            font-size: 35px;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ff0000, #7a0000);
            background-clip: text;
        }

        .modal-text {
            color: #ccc;
            margin-bottom: 40px;
            font-size: 20px;
            line-height: 1.8;
        }

        .close-modal {
            position: absolute;
            top: 30px;
            right: 30px;
            cursor: pointer;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--glass-200);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .close-modal:hover {
            background: var(--danger);
            border-color: transparent;
            transform: rotate(90deg);
        }

        .close-modal svg {
            width: 25px;
            height: 25px;
            fill: white;
        }
          @media (max-width: 768px) {
             .discount-modal {
                padding: 40px;
            }

            .modal-title {
                font-size: 36px;
            }

            .desktop-only {
                display: none;
            }
        }
        /* Announce Modal Styles End */