
        #cookie-modal {
            max-width: 460px;
            width: 100%;
            border-radius: 20px;
            border: 1px solid #FF510E;
            background: linear-gradient(0deg, rgba(23, 22, 24, 0.00) 0%, #FF510E 100%), #171618;
            box-shadow: 0 4px 35.4px -12px rgba(255, 255, 255, 0.34);
            padding: 20px;
            z-index: 10000000000;
            position: fixed;
            top: 50%;
            left: 50%;
            height: fit-content;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.6s ease, opacity 0.6s ease;
            opacity: 0;
        }

        #cookie-modal.show-cookie {
            animation: irisIn3D 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        #cookie-modal.hide-cookie {
            animation: irisOut3D 0.7s cubic-bezier(0.55, 0.05, 0.55, 0.95) forwards;
        }

        /* Keyframes include your existing translate(-50%,-50%) so centering stays exact */

        @keyframes irisIn3D {
            0% {
                transform: translate(-50%, -50%) perspective(1200px) rotateX(-18deg) scale(0.6);
                opacity: 0;
                filter: blur(10px);
                clip-path: circle(0% at 50% 50%);
            }
            60% {
                transform: translate(-50%, -50%) perspective(1200px) rotateX(-6deg) scale(1.04);
                opacity: 1;
                filter: blur(2px);
                clip-path: circle(85% at 50% 50%);
            }
            80% {
                transform: translate(-50%, -50%) perspective(1200px) rotateX(-2deg) scale(0.98);
                opacity: 1;
                filter: blur(0.5px);
                clip-path: circle(110% at 50% 50%);
            }
            100% {
                transform: translate(-50%, -50%) perspective(1200px) rotateX(0deg) scale(1);
                opacity: 1;
                filter: blur(0);
                clip-path: circle(150% at 50% 50%);
            }
        }

        @keyframes irisOut3D {
            0% {
                transform: translate(-50%, -50%) perspective(1200px) rotateX(0deg) scale(1);
                opacity: 1;
                filter: blur(0);
                clip-path: circle(150% at 50% 50%);
            }
            30% {
                transform: translate(-50%, -50%) perspective(1200px) rotateX(6deg) scale(0.98);
                opacity: .9;
                filter: blur(1px);
                clip-path: circle(90% at 50% 50%);
            }
            100% {
                transform: translate(-50%, -50%) perspective(1200px) rotateX(-18deg) scale(0.6);
                opacity: 0;
                filter: blur(10px);
                clip-path: circle(0% at 50% 50%);
            }
        }

        #cookie-modal .modal-close {
            display: flex;
            width: 34px;
            height: 34px;
            padding: 7px;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
            border: none;
            background: none;
            position: absolute;
            top: 12px;
            right: 12px;
            cursor: pointer;
            display: none;
        }

        #cookie-modal .modal-close svg path {
            stroke: white;
        }

        /* Content section */

        #cookie-modal .content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        #cookie-modal .icon-text-wrapper {
            width: 100%;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        #cookie-modal .content .icon {
            display: flex;
            width: 48px;
            height: 48px;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;
        }

        #cookie-modal .content .icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        #cookie-modal .content .cookie-title {
            font-size: 30px;
            font-weight: 600;
            line-height: 30px;
            color: #fff;
        }

        #cookie-modal .content .cookie-desc {
            width: 100%;
            color: #fff;
            font-size: 14px;
            font-weight: 400;
            line-height: 150%;
        }

        #cookie-modal .content .cookie-desc a {
            color: #fff;
            text-decoration: underline;
            font-weight: 700;
        }

        .terms-text-wrapper {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 6px;
            display: none;
        }

        .terms-text-wrapper .check-icon {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .terms-text-wrapper .terms-text {
            color: #414141;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: 115%;
        }

        #cookie-modal .action-wrapper {
            padding-top: 12px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        #cookie-modal .action-wrapper .cookie-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            padding: 16px !important;
            gap: 20px;
            text-align: center;
            font-size: 14px;
            font-weight: 700;
            transition: all 0.3s ease;
            cursor: pointer;
            width: fit-content;
            box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
        }

        #cookie-modal .action-wrapper .cookie-btn:active {
            transform: scale(0.97);
        }

        #cookie-modal .action-wrapper .cookie-btn:hover {
            transform: scale(0.97);
        }

        #cookie-modal .action-wrapper .cookie-btn img {
            flex-shrink: 0;
        }

        #decline-cookie {
            border: none;
            background: #fff;
            color: #000;
        }

        #cookie-button {
            background: #FF510E !important;
            color: #fff;
            border: none;
        }

        #cookie-button:hover img {
            transform: rotate(50deg);
        }

        @media screen and (max-width: 1024px) {
            #cookie-modal {
                width: 95%;
            }
            #cookie-modal .content {
                text-align: left;
            }
        }

        @media screen and (max-width: 540px) {
            #cookie-modal {
                max-width: 100%;
            }
            #cookie-modal .action-wrapper {
                flex-wrap: wrap;
            }
            #cookie-modal .action-wrapper .cookie-btn {
                width: 100%;
            }
            .icon-text-wrapper {
                flex-direction: column;
                align-items: center !important;
                text-align: center;
            }
            .cookie-desc {
                text-align: center;
            }
        }
  