<style>
        body {
            margin: 0;
            
        }
        .cookie-popup {
            position: fixed;
            bottom: 40px;
            left: 50%;
  transform: translate(-50%) !important;
            max-width: 420px;
            background: linear-gradient(145deg, #1e293b, #334155);
            color: #f1f5f9;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: none;
            animation: slideUp 0.7s ease-out forwards;
            border: 2px solid #60a5fa;
        }
        .cookie-popup.show {
            display: block;
            margin: auto;
        }
        h2 {
            font-size: 1.9em;
            margin: 0 0 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            color: #60a5fa;
        }
        h2::before {
            content: '🛡️';
            font-size: 1.3em;
        }
        p {
            font-size: 0.95em;
            line-height: 1.8;
            color: #e2e8f0;
            margin: 0 0 25px;
        }
        .cookie-buttons {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
        }
        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 0.95em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn-accept {
            background: #60a5fa;
            color: #fff;
        }
        .btn-accept:hover {
            background: #3b82f6;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        .btn-decline {
            background: transparent;
            color: #60a5fa;
            border: 2px solid #60a5fa;
        }
        .btn-decline:hover {
            background: #60a5fa;
            color: #fff;
            transform: scale(1.05);
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
        }
        .btn:hover::before {
            width: 300px;
            height: 300px;
        }
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(80px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    
    </style>