        /* Premium Çerez Bildirimi */
        .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            max-width: 900px;
            width: 90%;
            background: white;
            color: #333;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: none;
            z-index: 9999;
            font-family: 'Segoe UI', system-ui, sans-serif;
            border: 1px solid rgba(0, 0, 0, 0.08);
            animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
            opacity: 0;
        }
        
        @keyframes slideUp {
            from { transform: translate(-50%, 20px); opacity: 0; }
            to { transform: translate(-50%, 0); opacity: 1; }
        }
        
        .cookie-content {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        
        .cookie-icon {
            font-size: 32px;
            color: #4361ee;
            flex-shrink: 0;
        }
        
        .cookie-text {
            flex: 1;
        }
        
        .cookie-text h3 {
            margin: 0 0 8px 0;
            font-size: 18px;
            font-weight: 600;
            color: #111;
        }
        
        .cookie-text p {
            margin: 0;
            font-size: 15px;
            line-height: 1.5;
            color: #555;
        }
        
        .cookie-text a {
            color: #4361ee;
            text-decoration: none;
            font-weight: 500;
        }
        
        .cookie-text a:hover {
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .cookie-btn {
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .cookie-btn-accept {
            background: #4361ee;
            color: white;
        }
        
        .cookie-btn-accept:hover {
            background: #3a56d4;
            transform: translateY(-2px);
        }
        
        .cookie-btn-settings {
            background: white;
            color: #4361ee;
            border: 1px solid #ddd;
        }
        
        .cookie-btn-settings:hover {
            background: #f8f9fa;
            border-color: #ccc;
        }
        
        .cookie-btn-reject {
            background: transparent;
            color: #666;
        }
        
        .cookie-btn-reject:hover {
            color: #333;
            text-decoration: underline;
        }
        
        /* Kapanış Animasyonu */
        .cookie-consent.hide {
            animation: slideDown 0.5s cubic-bezier(0.77, 0, 0.18, 1) forwards;
        }
        
        @keyframes slideDown {
            from { transform: translate(-50%, 0); opacity: 1; }
            to { transform: translate(-50%, 20px); opacity: 0; }
        }
        
        /* Mobile Uyumlu */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .cookie-buttons {
                flex-wrap: wrap;
            }
            
            .cookie-btn {
                flex: 1;
                min-width: 120px;
            }
        }