        .cookie-consent-banner {
            position: fixed;
            bottom: 40px;
            left: 40px;
            right: 40px;
            background: #f6fbff;
            color: #333333;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            transform: translateY(150%);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            border-radius: 12px;
            border: 1px solid #f0f0f0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cookie-consent-banner.active {
            transform: translateY(0);
        }

        .cookie-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 25px;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
            font-size: 15px;
            line-height: 1.6;
            color: #555;
        }

        .cookie-text a {
            color: #ff6c37;
            text-decoration: underline;
            font-weight: 500;
        }

        .cookie-text a:hover {
            color: #e55a2b;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 12px 28px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 14px;
            min-width: 140px;
        }

        .cookie-btn.accept {
            background: linear-gradient(135deg, #ff6c37, #ff8c37);
            color: white;
            border: 1px solid #ff6c37;
            box-shadow: 0 4px 12px rgba(255, 108, 55, 0.3);
        }

        .cookie-btn.accept:hover {
            background: linear-gradient(135deg, #e55a2b, #e57a2b);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 108, 55, 0.4);
        }

        .cookie-btn.settings {
            background: transparent;
            color: #555;
            border: 1px solid #d0d0d0;
        }

        .cookie-btn.settings:hover {
            background: #f8f8f8;
            border-color: #b0b0b0;
            transform: translateY(-1px);
        }

        .cookie-btn.reject {
            background: transparent;
            color: #777;
            border: 1px solid transparent;
            text-decoration: underline;
        }

        .cookie-btn.reject:hover {
            color: #555;
            background: #f8f8f8;
        }

        /* VIP Cookie Settings Modal */
        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 40px;
        }

        .cookie-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .cookie-modal-content {
            background: white;
            color: #333;
            width: 90%;
            max-width: 800px;
            border-radius: 16px;
            padding: 40px;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 1px solid #f0f0f0;
        }

        .cookie-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
            padding-bottom: 25px;
        }

        .cookie-modal-title {
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin: 0;
        }

        .cookie-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #777;
            transition: all 0.2s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

        .cookie-close:hover {
            color: #333;
            background: #f5f5f5;
            transform: rotate(90deg);
        }

        .cookie-option {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 25px 0;
            border-bottom: 1px solid #f8f8f8;
        }

        .cookie-option:last-child {
            border-bottom: none;
        }

        .cookie-option-info {
            flex: 1;
            padding-right: 40px;
        }

        .cookie-option-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookie-option-title .icon {
            font-size: 20px;
        }

        .cookie-option-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        .cookie-toggle {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #e0e0e0;
            transition: .3s;
            border-radius: 30px;
        }

        .cookie-toggle-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .3s;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        input:checked + .cookie-toggle-slider {
            background: linear-gradient(135deg, #ff6c37, #ff8c37);
        }

        input:checked + .cookie-toggle-slider:before {
            transform: translateX(30px);
        }

        input:disabled + .cookie-toggle-slider {
            background-color: #f0f0f0;
            cursor: not-allowed;
        }

        .cookie-modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 35px;
            padding-top: 25px;
            border-top: 1px solid #eee;
        }

        .modal-btn {
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 15px;
            min-width: 140px;
        }

        .modal-btn.save {
            background: linear-gradient(135deg, #ff6c37, #ff8c37);
            color: white;
            border: 1px solid #ff6c37;
            box-shadow: 0 4px 12px rgba(255, 108, 55, 0.3);
        }

        .modal-btn.save:hover {
            background: linear-gradient(135deg, #e55a2b, #e57a2b);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 108, 55, 0.4);
        }

        .modal-btn.reject {
            background: transparent;
            color: #777;
            border: 1px solid #d0d0d0;
        }

        .modal-btn.reject:hover {
            background: #f8f8f8;
            border-color: #b0b0b0;
            transform: translateY(-1px);
        }

        .cookie-required {
            color: #777;
            font-size: 13px;
            margin-top: 5px;
            font-style: italic;
        }

        /* Animation for modal entrance */
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .cookie-modal.active .cookie-modal-content {
            animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .cookie-consent-banner {
                left: 20px;
                right: 20px;
                bottom: 20px;
            }
            
            .cookie-modal {
                padding: 20px;
            }
        }

        @media (max-width: 768px) {
            .cookie-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: space-between;
            }
            
            .cookie-btn {
                flex: 1;
                text-align: center;
            }
            
            .cookie-modal-content {
                padding: 25px;
            }
            
            .cookie-option {
                flex-direction: column;
                gap: 20px;
            }
            
            .cookie-option-info {
                padding-right: 0;
            }
            
            .cookie-modal-actions {
                flex-direction: column;
            }
            
            .modal-btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .cookie-consent-banner {
                left: 15px;
                right: 15px;
                bottom: 15px;
                padding: 20px;
            }
            
            .cookie-buttons {
                flex-direction: column;
            }
            
            .cookie-modal-content {
                padding: 20px;
            }
            
            .cookie-btn {
                min-width: auto;
            }
        }

        /* Demo content styles */
        .demo-content {
            padding: 40px;
            max-width: 1000px;
            margin: 0 auto;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        .demo-content h1 {
            color: #333;
            margin-bottom: 20px;
        }
        
        .demo-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            border-left: 4px solid #ff6c37;
        }
        
        .feature-card h3 {
            color: #333;
            margin-bottom: 10px;
        }
        
        .feature-card p {
            color: #666;
            margin: 0;
        }